@import url('fonts.css');

:root {
  --cream: #F6EFE6;
  --peach: #F2CCB3;
  --pink: #F7E0CE;
  --sage: #849288;
  --rosewood: #CD9172;
  --darkgreen: #104720;
  --black: #000;
}

* {
  margin: 0;
  padding: 0;
  box-sizing: border-box;
}

body {
  font-family: 'Raleway', sans-serif;
  background-color: var(--cream);
  color: var(--black);
  line-height: 1.6;
  min-height: 100vh;
}

header {
  background: var(--rosewood);
  padding: 20px 20px 40px 20px;
  color: white;
  position: relative;
  text-align: center;
}

img.logo {
  height: 50px;
  position: absolute;
  top: 15px;
  left: 20px;
}

img.logo-home {
  display: block;
  margin: 0 auto 10px auto;
  height: 120px;
  position: static;
}

h1, h2, h3 {
  font-family: 'Playfair Display', serif;
}

.mission {
  text-align: center;
  margin-top: 10px;
}

nav {
  background: var(--sage);
  display: flex;
  justify-content: flex-end;
  gap: 20px;
  padding: 10px 20px;
}

nav.centered {
  justify-content: center;
}

nav a {
  color: white;
  text-decoration: none;
  font-weight: bold;
}

.container {
  padding: 30px;
  max-width: 1000px;
  margin: auto;
}

.pillars {
  display: flex;
  justify-content: space-between;
  margin-top: 40px;
  gap: 20px;
  flex-wrap: wrap;
}

.pillar {
  flex: 1;
  background: var(--pink);
  padding: 20px;
  border-radius: 10px;
  min-width: 250px;
}

footer {
  background: var(--darkgreen);
  color: white;
  text-align: center;
  padding: 20px;
  margin-top: 40px;
}

footer a {
  color: white;
  margin: 0 10px;
  text-decoration: none;
}

.profile-img {
  width: 200px;
  border-radius: 10px;
  margin-bottom: 10px;
}
/* ===== MOBILE RESPONSIVENESS ===== */
@media (max-width: 768px) {
    body {
      padding: 10px;
    }
  
    nav {
      flex-direction: column;
      align-items: center;
      text-align: center;
      gap: 10px;
    }
  
    .pillars {
      flex-direction: column;
      gap: 30px;
    }
  
    .logo-home {
      max-width: 120px;
      height: auto;
    }
  
    header h1, header h2, .mission {
      font-size: 1.2rem;
      text-align: center;
    }
  
    form {
      padding: 0 10px;
    }
  
    input, textarea {
      width: 100%;
      box-sizing: border-box;
    }
  
    .container {
      padding: 0 10px;
    }
  
    footer {
      font-size: 0.9rem;
      text-align: center;
    }
  }
  