@charset "utf-8";

@import url('https://fonts.googleapis.com/css2?family=Cormorant+Garamond:wght@400;500;600;700&family=Inter:wght@300;400;500;600&display=swap');

:root {
    --cream: #f7f0e3;
    --paper: #fff8ec;
    --sage: #8ea58a;
    --deep-sage: #5f735c;
    --terracotta: #c98665;
    --sky: #bfd9e6;
    --ink: #3f3a33;
    --soft-ink: #665f56;
    --beige: #e8d7bd;
    --line: #e4d2b8;
    --shadow: rgba(88, 66, 41, 0.08);
}

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

html {
    scroll-behavior: smooth;
}

body {
    font-family: "Inter", sans-serif;
    color: var(--ink);
    line-height: 1.6;
    background-color: var(--cream);
    background-image: radial-gradient(#e4d2b8 0.7px, transparent 0.7px);
    background-size: 22px 22px;
}

img,
svg {
    display: block;
    max-width: 100%;
}

a {
    color: inherit;
    text-decoration: none;
}

.container {
    width: min(1120px, calc(100% - 40px));
    margin: 0 auto;
}

.serif {
    font-family: "Cormorant Garamond", serif;
}

.section-label {
    margin-bottom: 12px;
    font-family: "Cormorant Garamond", serif;
    font-size: 16px;
    font-style: italic;
    letter-spacing: 0.25em;
    text-transform: uppercase;
    color: var(--terracotta);
}

.section-title {
    font-family: "Cormorant Garamond", serif;
    font-size: clamp(42px, 5vw, 62px);
    font-weight: 600;
    line-height: 1.05;
    color: var(--ink);
}

.button {
    display: inline-block;
    border: 0;
    border-radius: 999px;
    background: var(--terracotta);
    color: white;
    padding: 14px 30px;
    font-size: 14px;
    font-weight: 500;
    letter-spacing: 0.04em;
    cursor: pointer;
    box-shadow: 0 8px 18px rgba(85, 62, 41, 0.12);
    transition: transform 0.25s ease, background 0.25s ease, box-shadow 0.25s ease;
}

.button:hover {
    background: #b87555;
    transform: translateY(-2px);
    box-shadow: 0 12px 24px rgba(85, 62, 41, 0.16);
}

header {
    background: #f8ecde;
    padding: 28px 0;
}

.nav {
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 24px;
}

.brand {
    text-align: left;
}

.brand img {
    width: 300px;
}

.brand h1 {
    font-family: "Cormorant Garamond", serif;
    font-size: 34px;
    line-height: 1;
    color: var(--deep-sage);
    letter-spacing: 0.04em;
    font-weight: 600;
}

.brand p {
    margin-top: 6px;
    font-size: 11px;
    text-transform: uppercase;
    letter-spacing: 0.28em;
    color: #9d8068;
}

nav {
    display: flex;
    gap: 28px;
    color: #6f665c;
    font-size: 14px;
}

nav a {
    transition: color 0.25s ease;
}

nav a:hover {
    color: var(--terracotta);
}

.hero {
    text-align: center;
    padding: 38px 0 90px;
}

.tagline {
    margin-bottom: 18px;
    font-family: "Cormorant Garamond", serif;
    font-size: 23px;
    font-style: italic;
    color: var(--terracotta);
}

.hero h2 {
    max-width: 920px;
    margin: 0 auto;
    font-family: "Cormorant Garamond", serif;
    font-size: clamp(52px, 8vw, 88px);
    font-weight: 600;
    line-height: 0.98;
}

.hero-copy {
    max-width: 700px;
    margin: 30px auto 0;
    font-size: 18px;
    color: var(--soft-ink);
}

.hero .button {
    margin-top: 36px;
}

.hero-art {
    background-image: url("../img/97F362AF-6854-443E-9F8A-9C3C54600B7E.webp");
    background-position: center;
    background-size: cover;
    position: relative;
    max-width: 900px;
    height: 340px;
    margin: 50px auto 0;
    overflow: hidden;
    border: 1px solid var(--line);
    border-radius: 36px;
    /* background: var(--paper); */
    box-shadow: 0 16px 40px var(--shadow);
}

/*
.hero-art::before {
content: "";
position: absolute;
inset: 0;
opacity: 0.75;
background:
radial-gradient(circle at 20% 25%, var(--sky) 0, transparent 24%),
radial-gradient(circle at 76% 16%, #efd4bd 0, transparent 22%),
radial-gradient(circle at 50% 82%, #dfe8d7 0, transparent 30%);
}
*/

.hero-art-note,
.portrait-caption {
    position: absolute;
    left: 50%;
    bottom: 12px;
    transform: translateX(-50%);
    width: max-content;
    max-width: calc(100% - 36px);
    border-radius: 999px;
    background: rgba(255, 248, 236, 0.84);
    border: 1px solid #e5d2b7;
    padding: 3px 12px;
    font-family: "Cormorant Garamond", serif;
    font-size: 14px;
    font-style: italic;
    color: var(--deep-sage);
    backdrop-filter: blur(6px);
    white-space: nowrap;
}

.about {
    padding: 180px 0;
}

.about-card {
    display: grid;
    grid-template-columns: 0.9fr 1.1fr;
    gap: 44px;
    align-items: start;
    border: 1px solid var(--line);
    border-radius: 42px;
    background: rgba(255, 248, 236, 0.88);
    padding: 48px;
    box-shadow: 0 14px 38px rgba(80, 60, 40, 0.06);
}

.family-illustration {
    /* background-image: url("../img/trikandeb.webp");
    background-position: center;
    background-size: cover; */
    position: sticky;
    top: 24px;
    /* min-height: 560px; */
    overflow: hidden;
    
}
.family-illustration img {
    border: 1px solid #e5d2b7;
    border-radius: 34px;
    /* background: #fff7ea; */
    box-shadow: inset 0 0 60px rgba(196, 160, 120, 0.12);
}

/* 
.family-illustration::before {
    content: "";
    position: absolute;
    inset: 0;
    background:
        radial-gradient(circle at 24% 20%, rgba(191, 217, 230, 0.7), transparent 28%),
        radial-gradient(circle at 80% 15%, rgba(239, 212, 189, 0.72), transparent 24%),
        radial-gradient(circle at 55% 92%, rgba(223, 232, 215, 0.9), transparent 36%);
} 
*/
/* .family-illustration svg {
    position: absolute;
    inset: 0;
    width: 100%;
    height: 100%;
} */

.about-copy h2 {
    margin-bottom: 24px;
}

.about-copy p {
    margin-bottom: 20px;
    font-size: 17px;
    line-height: 1.85;
    color: var(--soft-ink);
}

.about-copy .lead {
    font-size: 20px;
    line-height: 1.7;
    color: var(--deep-sage);
}

.about-copy .closing-line {
    margin-top: 28px;
    font-family: "Cormorant Garamond", serif;
    font-size: 31px;
    line-height: 1.18;
    color: var(--terracotta);
    font-style: italic;
}

.two-column {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 28px;
    padding-bottom: 90px;
}

.card {
    border: 1px solid var(--line);
    border-radius: 32px;
    background: rgba(255, 248, 236, 0.82);
    padding: 40px;
    box-shadow: 0 14px 36px rgba(88, 66, 41, 0.06);
}

.card h2 {
    margin-bottom: 20px;
    font-family: "Cormorant Garamond", serif;
    font-size: 42px;
    font-weight: 600;
    line-height: 1.05;
    color: var(--deep-sage);
}

.card p {
    font-size: 18px;
    color: var(--soft-ink);
}

.how-it-works {
    padding-bottom: 90px;
    text-align: center;
}

.how-it-works .section-title {
    margin-bottom: 38px;
}

.image-meaningful-experiences {
    background-image: url("../img/castle-book.webp");
    background-position: center;
    background-size: cover;
    border-radius: 50%;
    height: 120px;
    margin: auto;
    width: 120px;
}

.image-nature-outdoors {
    background-image: url("../img/yoga-mat.webp");
    background-position: center;
    background-size: cover;
    border-radius: 50%;
    height: 120px;
    margin: auto;
    width: 120px;
}

.image-curated-comfort {
    background-image: url("../img/pram.webp");
    background-position: center;
    background-size: cover;
    border-radius: 50%;
    height: 120px;
    margin: auto;
    width: 120px;
}

.image-memories {
    background-image: url("../img/suitcase.webp");
    background-position: center;
    background-size: cover;
    border-radius: 50%;
    height: 120px;
    margin: auto;
    width: 120px;
}

.image-time-together {
    background-image: url("../img/C229D5CA-04B6-452C-AD16-C642F9FF0604.webp");
    background-position: center;
    background-size: cover;
    border-radius: 50%;
    height: 120px;
    margin: auto;
    width: 120px;
}

.icon-grid {
    display: grid;
    grid-template-columns: repeat(5, 1fr);
    gap: 18px;
}

.icon-card {
    border: 1px solid var(--line);
    border-radius: 28px;
    background: rgba(255, 248, 236, 0.76);
    padding: 28px 20px;
    box-shadow: 0 12px 30px rgba(88, 66, 41, 0.05);
    transition: transform 0.25s ease, box-shadow 0.25s ease;
}

.icon-card:hover {
    transform: translateY(-4px);
    box-shadow: 0 16px 34px rgba(88, 66, 41, 0.09);
}

.icon {
    width: 52px;
    height: 52px;
    margin: 0 auto 16px;
    border-radius: 50%;
    display: grid;
    place-items: center;
    background: #e6eedf;
    color: var(--deep-sage);
    font-size: 23px;
}

.icon-card h3 {
    font-family: "Cormorant Garamond", serif;
    font-size: 22px;
    font-weight: 600;
    line-height: 1.15;
}

.icon-card p {
    margin-top: 10px;
    font-size: 14px;
    line-height: 1.55;
    color: var(--soft-ink);
}

.journey {
    padding-bottom: 90px;
}

.journey-box {
    display: grid;
    grid-template-columns: 0.9fr 1.1fr;
    overflow: hidden;
    border: 1px solid var(--line);
    border-radius: 40px;
    background: var(--paper);
    box-shadow: 0 18px 44px rgba(88, 66, 41, 0.08);
}

.journey-art {
    background-image: url("../img/9CEA34C1-C5E3-4479-8F35-A3EC7FDFB4BC.webp");
    background-size: cover;
    position: relative;
    min-height: 410px;
    overflow: hidden;
    /* background: #dfe8d7; */
}

/* 
.journey-art::before {
content: "";
position: absolute;
inset: 0;
opacity: 0.85;
background:
radial-gradient(circle at 30% 25%, var(--sky), transparent 25%),
radial-gradient(circle at 75% 70%, #efd4bd, transparent 28%);
} */

.journey-content {
    padding: 50px;
}

.journey h2 {
    font-family: "Cormorant Garamond", serif;
    font-size: clamp(42px, 5vw, 58px);
    font-weight: 600;
    line-height: 1.05;
    color: var(--deep-sage);
}

.journey-subtitle {
    margin-top: 18px;
    font-family: "Cormorant Garamond", serif;
    font-size: 26px;
    font-style: italic;
    color: var(--terracotta);
}

.itinerary {
    display: grid;
    gap: 12px;
    margin-top: 30px;
}

.itinerary-row {
    display: flex;
    gap: 12px;
    align-items: flex-start;
    border-radius: 18px;
    background: var(--cream);
    padding: 14px 16px;
    color: var(--soft-ink);
    font-size: 15px;
}

.pin {
    color: var(--sage);
    flex: 0 0 auto;
}

.love {
    max-width: 850px;
    text-align: center;
    padding-bottom: 90px;
}

.love-icon {
    width: 66px;
    height: 66px;
    margin: 0 auto 26px;
    display: grid;
    place-items: center;
    border-radius: 50%;
    background: rgba(191, 217, 230, 0.55);
    color: var(--deep-sage);
    font-size: 30px;
}

.love-image {
    background-image: url("../img/64A1765C-3F1B-49A9-8CE1-5D8B0597767E.webp");
    background-size: cover;
    margin: 0 auto 26px;
    width: 240px;
    height: 240px;
    border-radius: 50%;
}

.love h2 {
    margin-top: 10px;
    font-family: "Cormorant Garamond", serif;
    font-size: clamp(42px, 5vw, 58px);
    font-weight: 600;
    line-height: 1.05;
}

.love p {
    max-width: 640px;
    margin: 22px auto 0;
    font-size: 18px;
    color: var(--soft-ink);
}

.cta-wrap {
    padding-bottom: 180px;
}

.cta {
    border: 1px solid #d9c3a5;
    border-bottom-left-radius: 40px;
    border-bottom-right-radius: 40px;
    background: var(--deep-sage);
    color: var(--paper);
    text-align: center;
    padding: 72px 28px;
    box-shadow: 0 18px 44px rgba(88, 66, 41, 0.08);
}

.cta-image {
    background-image: url("../img/FBB59420-555D-4B21-B8BF-EAEAA617B201.webp");
    background-position: center;
    background-size: cover;
    border-top-left-radius: 40px;
    border-top-right-radius: 40px;
    height: 50vh;
}

.cta-sun {
    width: 58px;
    height: 58px;
    margin: 0 auto 24px;
    border-radius: 50%;
    display: grid;
    place-items: center;
    background: rgba(255, 248, 236, 0.15);
    font-size: 28px;
}

.cta h2 {
    font-family: "Cormorant Garamond", serif;
    font-size: clamp(44px, 5vw, 64px);
    font-weight: 600;
    line-height: 1.05;
}

.cta p {
    max-width: 600px;
    margin: 22px auto 0;
    color: rgba(255, 248, 236, 0.86);
    font-size: 18px;
}

.cta-actions {
    display: flex;
    justify-content: center;
    flex-wrap: wrap;
    gap: 14px;
    margin-top: 34px;
}

.cta .button {
    background: var(--paper);
    color: var(--deep-sage);
    text-shadow: none;
}

.cta .button:hover {
    background: #f1e4cf;
}

.whatsapp-button {
    background: rgba(255, 248, 236, 0.14);
    border: 1px solid rgba(255, 248, 236, 0.36);
    color: var(--paper);
}

.whatsapp-button:hover {
    background: rgba(255, 248, 236, 0.22);
}

footer::before {
    background-image: url("../img/bear-train.webp");
    background-position: center;
    background-repeat: no-repeat;
    background-size: contain;
    content: '';
    height: 150px;
    width: 220px;
    margin: 0 auto 0 -110px;
    position: absolute;
    top: -100px;
}

footer {
    border-top: 1px solid var(--line);
    background: #f9ebde;
    text-align: center;
    padding: 90px 20px 45px 20px;
    position: relative;
}

footer img {
    height: 180px;
    margin: auto;
}

footer h2 {
    font-family: "Cormorant Garamond", serif;
    font-size: 36px;
    font-weight: 600;
    color: var(--deep-sage);
}

footer p {
    margin-top: 8px;
    font-size: 12px;
    text-transform: uppercase;
    letter-spacing: 0.22em;
    color: #9d8068;
}

.floating-whatsapp {
    position: fixed;
    right: 20px;
    bottom: 20px;
    z-index: 20;
    display: grid;
    place-items: center;
    width: 54px;
    height: 54px;
    border-radius: 50%;
    background: var(--deep-sage);
    color: white;
    box-shadow: 0 12px 28px rgba(63, 58, 51, 0.22);
    font-size: 23px;
}

.fade-in {
    animation: fadeIn 0.9s ease both;
}

@keyframes fadeIn {
    from {
        opacity: 0;
        transform: translateY(18px);
    }

    to {
        opacity: 1;
        transform: translateY(0);
    }
}

@media (max-width: 960px) {
    nav {
        display: none;
    }

    .about {
        padding: 0;
    }

    .about-card,
    .two-column,
    .journey-box {
        grid-template-columns: 1fr;
    }

    .family-illustration {
        position: relative;
        top: auto;
        /* min-height: 460px; */
    }

    .icon-grid {
        grid-template-columns: repeat(2, 1fr);
    }

    .icon-card:last-child {
        grid-column: span 2;
    }
}

@media (max-width: 600px) {
    .brand {
        width: 100%;
    }
    .brand img {
        margin: auto;
    }
    .container {
        width: min(100% - 28px, 1120px);
    }

    .hero {
        padding-top: 18px;
    }

    .tagline {
        font-size: 20px;
    }

    .hero-art {
        height: 285px;
        border-radius: 28px;
    }

    .about-card,
    .card,
    .journey-content {
        padding: 28px;
    }

    .family-illustration {
        /* min-height: 390px; */
    }

    .icon-grid {
        grid-template-columns: 1fr;
    }

    .icon-card:last-child {
        grid-column: span 1;
    }

    .cta {
        padding: 54px 22px;
    }
}

/* Base Desktop Navigation Styles */
.navbar {
    color: #6f665c;
    font-size: 14px;
  display: flex;
  justify-content: space-between;
  align-items: center;
  padding: 0 1rem 0 0;
  position: relative;
}

.nav-links {
  border-radius: 40px;
  display: flex;
  list-style: none;
  gap: 1.5rem;
}

.nav-links a {
  text-decoration: none;
}

.nav-logo img {
    width: 300px;
}

.menu-toggle {
  display: none; /* Hidden on desktop screens */
  flex-direction: column;
  background: none;
  border: none;
  cursor: pointer;
  gap: 6px;
}

.menu-toggle .bar {
  width: 25px;
  height: 3px;
  background-color: #6f665c;
  transition: all 0.3s ease;
}

/* Mobile Screens Breakdown */
@media screen and (max-width: 768px) {
  .menu-toggle {
    display: flex; /* Make burger visible on mobile */
  }

  .nav-links {
    background-color: var(--beige);
    position: absolute;
    top: 100%;
    left: 0;
    right: 0;
    flex-direction: column;
    width: 100%;
    text-align: center;
    gap: 0;
    z-index: 99;
    
    /* Initially hide the menu off-screen or collapsed */
    max-height: 0;
    overflow: hidden;
    transition: max-height 0.4s ease-in-out;
  }

  .nav-links li {
    padding: 1rem 0;
    border-top: 1px solid var(--paper);
  }

  /* JavaScript Active Toggle Classes */
  .nav-links.is-active {
    max-height: 300px; /* Expands container when active */
  }

  /* Optional: Turns hamburger bars into an 'X' shape */
  .menu-toggle.is-active .bar:nth-child(1) {
    transform: translateY(9px) rotate(45deg);
  }
  .menu-toggle.is-active .bar:nth-child(2) {
    opacity: 0;
  }
  .menu-toggle.is-active .bar:nth-child(3) {
    transform: translateY(-9px) rotate(-45deg);
  }
}

/* Slider Container */
.slideshow-container {
    position: relative;
    width: 100%;
    height: 100%;
    margin: auto;
    overflow: hidden;
}

/* Individual Slide Styles */
.slide {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    object-fit: cover;
    opacity: 0;
    transition: opacity 2s ease-in-out;
    z-index: 1;
}

/* Active Slide State */
.slide.active {
    opacity: 1;
    z-index: 2;
}