/* COLOR PALETTE */

:root {
  --ocean: #9ec5c9;
  --deep-ocean: #7fb4b9;
  --sage: #6f836b;
  --charcoal: #2f3437;
  --cream: #f6f7f5;
}

* {
  box-sizing: border-box;
}

html {
  -webkit-text-size-adjust: 100%;
  text-size-adjust: 100%;
}

/* GLOBAL */

body {
  margin: 0;
  font-family: 'Inter', sans-serif;
  color: var(--charcoal);
  background: var(--cream);
  line-height: 1.6;
  overflow-x: hidden;
}

h1, h2, h3 {
  font-family: 'Playfair Display', serif;
  font-weight: 400;
}


/* HEADER */

.site-header {
  background: white;
  padding: 2px 20px 2px 20px;
}  
.header-container {
  max-width: 1200px;
  margin: 0 auto;
  padding: 0 40px;
  display: flex;
  align-items: center;
  justify-content: flex-start;
}

.logo {
max-width: 520px;
width: 100%;
height: auto;
}
.logo-wrap {
  flex-shrink: 0;
}

/* NAVIGATION */

.main-nav {
  display: flex;
  gap: 10px;
}

.main-nav a {
  display: inline-block;
  margin: 6px;
  padding: 10px 20px;
  background: #eaf4f4;
  border-radius: 25px;
  border: 1px solid #d8e7e6;
  text-decoration: none;
  color: var(--charcoal);
  font-weight: 500;
  transition: all .25s ease;
}

.main-nav a:hover {
  background: var(--ocean);
}


/* HERO */

.hero {
  background: linear-gradient(rgba(88,164,153,0.25), rgba(88,164,153,0.25)), url('sunset.jpg') center/cover no-repeat;
  padding: 80px 20px;
  text-align: center;
  color: white;
  box-sizing: border-box;
  overflow: hidden;
}

.hero-content {
  max-width: 800px;
  margin: auto;
}

.hero h1 {
  font-size: 2.3rem;
  margin-bottom: 20px;
}

.hero p {
  max-width: 640px;
  margin: 15px auto;
}

/* AVAILABILITY TEXT */

.availability {
  margin-top: 120px;
  font-weight: 500;
}


/* HERO BUTTON */

.cta-button {
  display: inline-block;
  margin-top: 20px;
  background: white;
  color: var(--charcoal);
  padding: 14px 34px;
  border-radius: 30px;
  text-decoration: none;
  font-weight: 500;
  transition: all .25s ease;
}

.cta-button:hover {
  background: var(--cream);
}


/* CONTENT SECTIONS */

section {
  padding: 45px 20px;
}

/* INQUIRIES */

.contact {
  background: var(--ocean);
  color: white;
  padding: 60px 20px;
  text-align: center;
}

.contact a {
  color: #0c4c6a;
  font-weight: 700;
  font-size: 1.2rem;
  display: inline-block;
  margin-top: 10px;
  text-decoration: underline;
}

.contact p {
  opacity: .95;
  max-width: 650px;
  margin: 14px auto;
  line-height: 1.6;
}

/* FOOTER */

footer {
  text-align: center;
  padding: 25px;
  font-size: 14px;
  color: #555;
}
main {
max-width: 1000px;
margin: 0 auto;
padding: 40px 20px;
}
section:not(.hero) {
max-width: 1000px;
margin: 0 auto;
padding: 40px 20px;
}
section h2 {
text-align: center;
margin-bottom: 20px;
}

footer {
text-align: center;
padding: 30px 20px;
margin-top: 40px;
}
footer a {
color: #2c6e6f;
text-decoration: underline;
}
section:last-of-type {
background: #7FAFA6;
color: white;
padding: 60px 20px;
max-width: none;
margin: 0;
}
section:last-of-type a {
color: #1F5F5B;
display: block;
text-align: center;
}
.support-list {
  list-style: none;
  padding: 0;
  max-width: 420px;
  margin: 30px auto;
  text-align: center;
  line-height: 1.8;
}
.support-list li {
  font-size: 1.05rem;
}
.approach-list {
  list-style: none;
  padding: 0;
  max-width: 420px;
  margin: 30px auto;
  text-align: center;
  line-height: 1.8;
}

.approach-list li {
  margin-bottom: 8px;
}

.support-section {
  background-color: #dfeeee;
  padding: 80px 20px;
  text-align: center;
  margin: 0;
}
.about-photo img {
    width: 300px;
    height: auto;
    border-radius: 10px;
    margin-top: 20px;
    border: 3px solid #7fb7b2;
    box-shadow: 0 6px 16px rgba(0,0,0,0.15);
}
.about-container {
    display: flex;
    align-items: flex-start;
    gap: 30px;
}

.about-photo {
    flex-shrink: 0;
}

.about-text {
    flex: 1;
}
.about-text p {
    margin-bottom: 18px;
    line-height: 1.6;
}
.page-text h2 {
    text-align: center;
    margin-top: 40px;
    margin-bottom: 10px;
}
main h1 {
    text-align: center;
}
main h2 {
text-align: center;
}

@media (max-width: 900px) {

  .header-container {
    padding: 0 12px;
    gap: 2px;
    flex-wrap: wrap;
    justify-content: center;
  }

  .logo {
    max-width: 260px;
  }

.main-nav {
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
  gap: 4px;
  margin-top: -8px;
  max-width: 100%;
}

  .main-nav a {
    margin: 0;
    padding: 6px 10px;
    font-size: 0.8rem;
  }
 .about-container {
    flex-direction: column;
    align-items: center;
  }

  .about-photo img {
    width: 100%;
    max-width: 240px;
  }

  .about-text {
    width: 100%;
  }

  .about-text h1,
main h1 {
  font-size: 2.2rem;
  line-height: 1.2;
}


}



























