/* ================================
   RESET
================================ */

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

html {
    scroll-behavior: smooth;
}

body {
    font-family: "Montserrat", sans-serif;
    color: #333333;
    background-color: #fffdf9;
    line-height: 1.6;
}

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


/* ================================
   COLORS
================================ */

:root {
    --sage: #7c8d75;
    --sage-dark: #5f7059;
    --pink: #e8c9c3;
    --cream: #fffdf9;
    --white: #ffffff;
    --text: #333333;
    --light-gray: #f5f3ef;
}


/* ================================
   NAVIGATION
================================ */

header {
    background-color: var(--white);
    border-bottom: 1px solid #eeeeee;
}

nav {
    max-width: 1200px;
    margin: 0 auto;
    padding: 20px 30px;

    display: flex;
    align-items: center;
    justify-content: space-between;
}

.logo {
    font-size: 1.5rem;
    font-weight: bold;
    color: var(--sage-dark);
}

.nav-links {
    display: flex;
    gap: 30px;
}

.nav-links a {
    color: var(--text);
    font-size: 0.95rem;
}

.nav-links a:hover {
    color: var(--sage-dark);
}

.nav-button {
    background-color: var(--sage);
    color: white;
    padding: 10px 20px;
    border-radius: 6px;
}


/* ================================
   HERO
================================ */

.hero {
    background-color: var(--cream);
    overflow: hidden;
}

.hero-container {
    max-width: 1250px;
    min-height: 720px;
    margin: 0 auto;
    padding: 70px 40px;

    display: grid;
    grid-template-columns: 1fr 0.9fr;
    gap: 70px;

    align-items: center;
}

.hero-content {
    max-width: 600px;
}

.hero .eyebrow {
    margin-bottom: 20px;
}

.hero h1 {
    font-family: "Playfair Display", serif;
    font-size: clamp(3.5rem, 6vw, 5.5rem);
    font-weight: 600;
    line-height: 0.98;
    letter-spacing: -2px;

    color: var(--text);

    margin-bottom: 30px;
}

.hero h1 span {
    display: block;
    color: var(--sage-dark);
}

.hero-text {
    max-width: 520px;

    font-size: 1.1rem;
    line-height: 1.8;

    color: #666666;

    margin-bottom: 35px;
}

.hero-buttons {
    display: flex;
    align-items: center;
    gap: 15px;

    margin-bottom: 45px;
}

.hero .button {
    padding: 15px 27px;
    border-radius: 4px;

    font-size: 0.85rem;
    letter-spacing: 0.3px;

    transition: all 0.2s ease;
}

.primary-button {
    background-color: var(--sage-dark);
    color: white;
}

.primary-button:hover {
    background-color: var(--sage);
    transform: translateY(-2px);
}

.secondary-button {
    border: 1px solid #c7c7c7;
    color: var(--text);
    background-color: transparent;
}

.secondary-button:hover {
    border-color: var(--sage-dark);
    color: var(--sage-dark);
}

.hero-details {
    display: flex;
    align-items: center;
    gap: 25px;
}

.hero-detail {
    display: flex;
    flex-direction: column;

    font-size: 0.75rem;
    letter-spacing: 0.5px;
}

.hero-detail strong {
    font-size: 0.75rem;
    color: var(--text);
}

.hero-detail span {
    color: #888888;
}

.hero-divider {
    width: 1px;
    height: 35px;

    background-color: #dddddd;
}


/* ================================
   HERO IMAGE
================================ */

.hero-image {
    position: relative;

    height: 580px;
}

.hero-image-placeholder {
    width: 100%;
    height: 100%;

    background-color: var(--pink);

    border-radius: 180px 180px 15px 15px;

    display: flex;
    align-items: center;
    justify-content: center;

    position: relative;
    overflow: hidden;
}

.placeholder-content {
    text-align: center;
}

.placeholder-content span {
    display: block;

    font-family: "Playfair Display", serif;
    font-size: 2rem;

    color: var(--sage-dark);

    margin-bottom: 8px;
}

.placeholder-content p {
    font-size: 0.8rem;
    color: #777777;
}


/* ================================
   IMAGE FLOATING CARD
================================ */

.hero-image-card {
    position: absolute;

    left: -35px;
    bottom: 45px;

    padding: 20px 25px;

    background-color: white;

    box-shadow: 0 15px 40px rgba(0, 0, 0, 0.08);

    border-radius: 6px;

    display: flex;
    flex-direction: column;
}

.hero-image-card span {
    font-size: 0.7rem;

    text-transform: uppercase;
    letter-spacing: 1.5px;

    color: var(--sage-dark);

    margin-bottom: 5px;
}

.hero-image-card strong {
    font-family: "Playfair Display", serif;

    font-size: 1.25rem;
    font-weight: 600;
}

/* ================================
   SECTIONS
================================ */

.section {
    padding: 100px 30px;
    max-width: 1200px;
    margin: 0 auto;
}

.alternate-section {
    max-width: none;
    background-color: var(--light-gray);
}

.section-heading {
    font-family: "Playfair Display", serif;
    max-width: 700px;
    margin: 0 auto 50px;
    text-align: center;
}

.section-heading h2 {
    font-family: "Playfair Display", serif;
    font-size: 2.5rem;
    line-height: 1.2;
    margin-bottom: 20px;
}

.section-heading p {
    color: #666666;
}


/* ================================
   PACKAGES
================================ */

.package-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 25px;
}

.package-card {
    background-color: var(--white);
    padding: 35px;
    border: 1px solid #eeeeee;
    border-radius: 10px;
}

.package-card h3 {
    font-size: 1.4rem;
    margin-bottom: 15px;
}

.package-card p {
    color: #666666;
    margin-bottom: 20px;
}

.package-card a {
    color: var(--sage-dark);
    font-weight: bold;
}


/* ================================
   GALLERY
================================ */

.gallery-placeholder {
    min-height: 300px;

    display: flex;
    align-items: center;
    justify-content: center;

    background-color: var(--light-gray);
    border-radius: 10px;

    color: #777777;
}


/* ================================
   CONTACT
================================ */

.contact-section {
    text-align: center;
}

.contact-section .section-heading {
    margin-bottom: 0;
}


/* ================================
   FOOTER
================================ */

footer {
    padding: 30px;
    text-align: center;
    background-color: var(--sage-dark);
    color: white;
    font-size: 0.9rem;
}


/* ================================
   MOBILE
================================ */
@media (max-width: 768px) {

    .nav-links {
        display: none;
    }

    nav {
        padding: 15px 20px;
    }


    /* HERO */

    .hero-container {
        min-height: auto;

        padding: 70px 20px 80px;

        grid-template-columns: 1fr;

        gap: 50px;
    }

    .hero h1 {
        font-size: 3.5rem;
        letter-spacing: -1px;
    }

    .hero-text {
        font-size: 1rem;
    }

    .hero-buttons {
        flex-direction: column;
        align-items: stretch;
    }

    .hero .button {
        text-align: center;
    }

    .hero-details {
        margin-top: 10px;
    }

    .hero-image {
        height: 450px;
    }

    .hero-image-card {
        left: 15px;
        bottom: 25px;
    }


    /* PACKAGES */

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


    /* SECTIONS */

    .section {
        padding: 70px 20px;
    }

    .section-heading h2 {
        font-size: 2rem;
    }

}