:root {
  --burnt-orange: #c65a1e;
  --terracotta: #8a3a12;
  --cream: #f4efe9;
  --charcoal: #2b2b2b;
}

* {
  box-sizing: border-box;
}

body {
  margin: 0;
  font-family: 'Lora', serif;
  color: var(--charcoal);
  background-color: var(--cream);
  overflow-x: hidden;
}



/* ================= HEADER ================= */


.site-header {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  z-index: 1000;

  background: transparent;
  box-shadow: 0 4px 12px rgba(0,0,0,0.15);
}

.header-inner {
  display: flex;
  justify-content: space-between;
  align-items: center;
  padding: 15px 20px;
}

.logo{
  font-family: "Beau Rivage", cursive;
  color: #fff7ef;
  margin: 0;
}

.cta-button {
  text-decoration: none;
  background: white;
  color: #2b2b2b;
  padding: 10px 16px;
  border-radius: 20px;
  font-size: 0.9rem;
  font-weight: 500;

  transition: all 0.3s ease;
}

.cta-button:hover {
  background: #f4efe9;
}


/* ================= HERO ================= */

#mission {
  position: relative;
  height: 100vh;

  width: 100%;
  padding: 0;
  margin: 0;
  max-width: none;
}

#mission img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  filter: brightness(70%);
  border-radius: 0;
}

#mission::after {
  content: "";
  position: absolute;
  bottom: 0;
  left: 0;
  width: 100%;
  height: 80px;
}

.mission-overlay {
  position: absolute;
  top: 50%;
  left: 10%;
  right: 10%;
  transform: translateY(-50%);
  text-align: center;
  color: white;
}

.mission-overlay h2 {
  font-family: "Cormorant Garamond", serif;
  font-size: 2rem;
  line-height: 1.4;
}

/* ================= SERVICES HERO ================= */

.services-page #mission {
  height: 60vh;
}

/* ================= RESOURCES HERO ================= */

.resources-page #mission {
  height: 60vh;
}

/* ================= CONTACT HERO ================= */

.contact-hero {
  position: relative;
  height: 30vh;

  width: 100%;
  max-width: none;   /* 🔥 breaks out of 900px prison */
  padding: 0;        /* 🔥 removes that annoying space */
  margin: 0;         /* 🔥 removes centering gap */
}

.contact-hero img {

  width: 100%;
  height: 100%;
  object-fit: cover;
  filter:brightness(70%);
}


/* ================= MAIN ================= */

main {
  padding: 0; /* 👈 important */
}

section {
  padding: 30px 20px;
  max-width: 900px;
  margin: 0 auto;
}

/* ================= SERVICES ================= */

.package-section {
  background: white;
  padding: 30px;
  border-radius: 12px;
  margin-bottom: 40px;
  box-shadow: 0 10px 30px rgba(0,0,0,0.05);
}

.package-section h2 {
  font-family: 'Cormorant Garamond', serif;
  font-size: 1.8rem;
  color: var(--terracotta);
  margin-bottom: 10px;
}

.package-section h3 {
  font-family: 'Cormorant Garamond', serif;
  margin-top: 20px;
}

.package-section h4 {
  font-family: 'Cormorant Garamond', serif;
  margin-top: 15px;
  color: var(--burnt-orange);
}

.package-section p {
  font-family: 'Lora', serif;
  line-height: 1.7;
}

/* individual service cards */

.service-card {
  background: white;
  padding: 20px;
  margin-top: 20px;
  border-radius: 12px;
  border-left: 4px solid var(--burnt-orange);
  box-shadow: 0 8px 20px rgba(0,0,0,0.05);
  transition: transform 0.2s ease;
}

.service-card:hover {
  transform: translateY(-3px);
}

.service-card h4 {
  font-family: 'Cormorant Garamond', serif;
  font-size: 1.3rem;
  margin-bottom: 5px;
}

.service-card p {
  font-family: 'Lora', serif;
}

.service-card ul {
  margin-top: 10px;
  padding-left: 18px;
}

.service-card li {
  margin-bottom: 6px;
}

/* ================= ABOUT ================= */

#about {
  padding: 0;
  position: relative;
}


.about-image-wrapper {
  position: relative;
}

.about-image-wrapper h2 {
  position: absolute;
  bottom: 10px;
  left: 20px;
  color: white;
  font-size: 2.2rem; /* bigger, yes */
  font-weight: 500;
  font-family: 'Cormorant Garamond', serif;
  text-shadow: 0 2px 8px rgba(0,0,0,0.6);
  z-index: 2; /* 👈 THIS IS WHY IT'S GONE */

}

#about img {
  width: 100%;
  display: block;
  filter: brightness(90%);
}

.about-content {
  max-width: 600px;
  margin: 0 auto;
  margin-top: 10px;
  padding: 10px 20px 30px;
}

.about-content p {
  font-family: 'lora', serif;
  font-size: 1.1rem;
  line-height: 1.8;
  color: #444;
}

.about-cta {
  margin-top: 15px;
  margin-bottom: 20px;
  text-align: center;
}

.about-button {
  display: inline-block;
  text-decoration: none;
  background: var(--terracotta);
  color: white;
  padding: 12px 24px;
  border-radius: 30px;
  font-size: 0.95rem;
  transition: all 0.3s ease;
}

.about-button:hover {
  background: var(--burnt-orange);
}

/* ================= RESOURCES ================= */

.resource-group {
  margin-bottom: 40px;
}

.resource-group h3 {
  font-family: 'Cormorant Garamond', serif;
  font-size: 1.6rem;
  margin-bottom: 15px;
  color: var(--terracotta);
  border-bottom: 1px solid rgba(0,0,0,0.1);
  padding-bottom: 5px;
}

.resource-card {
  background: white;
  padding: 15px 20px;
  margin-bottom: 15px;
  border-radius: 10px;
  box-shadow: 0 6px 15px rgba(0,0,0,0.04);
  transition: all 0.2s ease;
}

.resource-card:hover {
  transform: translateY(-2px);
}

.resource-card h4 {
  font-family: 'Cormorant Garamond', serif;
  margin-bottom: 5px;
}

.resource-card p {
  font-family: 'Lora', serif;
  margin-bottom: 8px;
  color: #555;
}

.resource-card a {
  font-family: 'Lora', serif;
  text-decoration: none;
  color: var(--burnt-orange);
  font-weight: 500;
}

.resource-card a:hover {
  text-decoration: underline;
}


/* ================= FOOTER ================= */

.site-footer {
  background-color: var(--terracotta);
  color: white;
  padding: 40px 20px;
  text-align: center;
}

.footer-container {
  max-width: 800px;
  margin: 0 auto;
}

.footer-nav,
.footer-contact {
  display: flex;
  justify-content: center;
  flex-wrap: wrap;
  gap: 20px;
  margin-bottom: 15px;
}

.site-footer a {
  color: white;
  text-decoration: none;
  font-family: 'Cormorant Garamond', serif;
  font-size: 1rem;
  transition: opacity 0.2s ease;
}

.site-footer a:hover {
  opacity: 0.7;
}

.footer-copy {
  font-size: 0.8rem;
  opacity: 0.7;
  margin-top: 10px;
}

/* ===== FOOTER ICON POLISH ===== */

.footer-contact a {
  font-size: 1.4rem;
}

.footer-contact a:visited {
  color: white;
}

.footer-contact i {
  transition: transform 0.2s ease, opacity 0.2s ease;
}

.footer-contact a:hover i {
  transform: translateY(-3px);
  opacity: 0.7;
}
