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

html {
    scroll-behavior: smooth;
}

body {
    font-family: 'Montserrat', sans-serif;
    background: #faf8f3;
    color: #222;
}

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

img {
    width: 100%;
    display: block;
}


/* ================= HEADER ================= */

.header {
    position: fixed;

    top: 0;
    left: 0;

    width: 100%;
    height: 80px;

    padding: 0 7%;

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

    background: rgba(15, 15, 15, .96);

    color: white;

    z-index: 1000;
}

.logo {
    font-family: 'Playfair Display', serif;

    font-size: 28px;

    font-weight: 700;
}

.logo span,
.footer-logo span {
    color: #c9a45c;
}

.nav {
    display: flex;

    gap: 28px;
}

.nav a {
    font-size: 13px;

    transition: .3s;
}

.nav a:hover {
    color: #c9a45c;
}

.btn-header {
    padding: 12px 24px;

    background: #c9a45c;

    color: #111;

    font-size: 13px;

    font-weight: 700;

    transition: .3s;
}

.btn-header:hover {
    background: white;
}

.menu-btn {
    display: none;

    border: none;

    background: transparent;

    color: white;

    font-size: 28px;

    cursor: pointer;
}


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

.hero {
    min-height: 100vh;

    position: relative;

    display: flex;

    align-items: center;

    padding: 120px 8% 170px;

    background-image:
        url("https://images.unsplash.com/photo-1519167758481-83f550bb49b3?auto=format&fit=crop&w=2000&q=80");

    background-size: cover;

    background-position: center;

    color: white;
}

.hero-overlay {
    position: absolute;

    inset: 0;

    background:
        linear-gradient(
            90deg,
            rgba(0,0,0,.72),
            rgba(0,0,0,.3)
        );
}

.hero-content {
    position: relative;

    max-width: 760px;
}

.subtitle,
.section-label {
    color: #c9a45c;

    font-size: 12px;

    letter-spacing: 3px;

    font-weight: 700;

    margin-bottom: 20px;
}

.hero h1 {
    font-family: 'Playfair Display', serif;

    font-size: clamp(50px, 7vw, 90px);

    line-height: 1.05;

    margin-bottom: 25px;
}

.hero h1 span,
.about h2 span,
.section-header h2 span,
.package .price,
.quote-form-section h2 span,
.location h2 span {
    color: #c9a45c;
}

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

    color: #ddd;

    line-height: 1.8;

    margin-bottom: 35px;
}

.hero-buttons {
    display: flex;

    gap: 15px;

    flex-wrap: wrap;
}

.btn-primary,
.btn-secondary {
    display: inline-block;

    padding: 15px 28px;

    font-weight: 700;

    transition: .3s;
}

.btn-primary {
    background: #c9a45c;

    color: #111;
}

.btn-primary:hover {
    transform: translateY(-3px);
}

.btn-secondary {
    border: 1px solid white;

    color: white;
}

.btn-secondary:hover {
    background: white;

    color: #111;
}


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

.hero-info {
    position: absolute;

    bottom: 0;

    left: 8%;

    right: 8%;

    display: grid;

    grid-template-columns: repeat(3, 1fr);

    background: rgba(15,15,15,.9);

    backdrop-filter: blur(8px);
}

.hero-info div {
    padding: 25px;

    text-align: center;

    border-right: 1px solid #444;
}

.hero-info div:last-child {
    border: none;
}

.hero-info strong {
    display: block;

    font-family: 'Playfair Display', serif;

    color: #c9a45c;

    font-size: 30px;
}

.hero-info span {
    display: block;

    margin-top: 5px;

    color: #bbb;

    font-size: 11px;

    text-transform: uppercase;

    letter-spacing: 1px;
}


/* ================= ABOUT ================= */

.about {
    display: grid;

    grid-template-columns: 1fr 1fr;

    gap: 80px;

    padding: 130px 8%;
}

.about-image img {
    height: 580px;

    object-fit: cover;
}

.about-content {
    align-self: center;
}

.about h2,
.section-header h2,
.quote-form-section h2,
.location h2 {
    font-family: 'Playfair Display', serif;

    font-size: clamp(40px, 5vw, 60px);

    line-height: 1.1;

    margin-bottom: 25px;
}

.about-content > p:not(.section-label) {
    color: #666;

    line-height: 1.8;

    margin-bottom: 18px;
}

.about-list {
    display: grid;

    grid-template-columns: 1fr 1fr;

    gap: 15px;

    margin-top: 30px;

    color: #8f702f;

    font-weight: 600;

    font-size: 13px;
}


/* ================= EVENTS ================= */

.events {
    padding: 120px 8%;

    background: #efede7;
}

.section-header {
    max-width: 700px;

    margin: 0 auto 60px;

    text-align: center;
}

.section-header > p:last-child {
    color: #666;

    line-height: 1.7;
}

.events-grid {
    display: grid;

    grid-template-columns:
        repeat(4, 1fr);

    gap: 20px;
}

.event-card {
    background: white;

    overflow: hidden;

    transition: .3s;
}

.event-card:hover {
    transform: translateY(-8px);

    box-shadow:
        0 15px 40px rgba(0,0,0,.12);
}

.event-image {
    height: 250px;

    overflow: hidden;
}

.event-image img {
    height: 100%;

    object-fit: cover;

    transition: .5s;
}

.event-card:hover .event-image img {
    transform: scale(1.08);
}

.event-content {
    padding: 25px;
}

.event-number {
    color: #c9a45c;

    font-size: 12px;

    font-weight: 700;
}

.event-content h3 {
    font-family: 'Playfair Display', serif;

    font-size: 24px;

    margin: 10px 0;
}

.event-content p {
    color: #777;

    font-size: 13px;

    line-height: 1.7;

    margin-bottom: 20px;
}

.event-content a {
    color: #9d7b32;

    font-size: 12px;

    font-weight: 700;
}


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

.packages {
    padding: 120px 8%;
}

.package-grid {
    display: grid;

    grid-template-columns:
        repeat(3, 1fr);

    gap: 25px;

    max-width: 1100px;

    margin: auto;
}

.package {
    position: relative;

    background: white;

    padding: 40px 30px;

    border: 1px solid #e3e0d9;

    transition: .3s;
}

.package:hover {
    transform: translateY(-8px);
}

.package.featured {
    border: 2px solid #c9a45c;

    box-shadow:
        0 15px 40px rgba(0,0,0,.1);
}

.popular {
    position: absolute;

    top: 0;
    left: 0;
    right: 0;

    padding: 9px;

    background: #c9a45c;

    text-align: center;

    font-size: 10px;

    font-weight: 700;

    letter-spacing: 2px;
}

.package.featured .package-top {
    margin-top: 25px;
}

.package-top {
    margin-bottom: 25px;
}

.package-top h3 {
    font-family: 'Playfair Display', serif;

    font-size: 28px;

    margin-bottom: 8px;
}

.package-top p {
    color: #777;

    font-size: 12px;
}

.price {
    font-family: 'Playfair Display', serif;

    font-size: 42px;

    font-weight: 700;

    margin-bottom: 30px;
}

.price small {
    display: block;

    color: #888;

    font-family: 'Montserrat', sans-serif;

    font-size: 11px;

    font-weight: 400;
}

.package ul {
    list-style: none;

    margin-bottom: 30px;
}

.package li {
    padding: 10px 0;

    border-bottom: 1px solid #eee;

    color: #666;

    font-size: 13px;
}

.package > a {
    display: block;

    padding: 14px;

    border: 1px solid #c9a45c;

    color: #96752e;

    text-align: center;

    font-weight: 700;

    font-size: 12px;

    transition: .3s;
}

.package > a:hover {
    background: #c9a45c;

    color: #111;
}


/* ================= QUOTE ================= */

.quote {
    min-height: 450px;

    display: flex;

    align-items: center;

    justify-content: center;

    text-align: center;

    padding: 80px 8%;

    background:
        linear-gradient(
            rgba(0,0,0,.65),
            rgba(0,0,0,.65)
        ),
        url("https://images.unsplash.com/photo-1519671482749-fd09be7ccebf?auto=format&fit=crop&w=2000&q=80");

    background-size: cover;

    background-position: center;

    color: white;
}

.quote p {
    max-width: 850px;

    font-family: 'Playfair Display', serif;

    font-size: clamp(35px, 5vw, 60px);

    line-height: 1.2;

    margin-bottom: 25px;
}

.quote span {
    color: #c9a45c;

    font-size: 13px;
}


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

.gallery {
    padding: 120px 8%;
}

.gallery-grid {
    display: grid;

    grid-template-columns:
        repeat(3, 1fr);

    gap: 15px;
}

.gallery-grid img {
    height: 300px;

    object-fit: cover;

    transition: .4s;
}

.gallery-grid img:hover {
    transform: scale(1.03);
}


/* ================= QUOTE FORM ================= */

.quote-form-section {
    display: grid;

    grid-template-columns: .8fr 1.2fr;

    gap: 80px;

    padding: 110px 8%;

    background: #151515;

    color: white;
}

.quote-content {
    align-self: center;
}

.quote-content > p:not(.section-label) {
    color: #aaa;

    line-height: 1.8;

    margin-bottom: 30px;
}

.contact-direct {
    border-left: 2px solid #c9a45c;

    padding-left: 20px;
}

.contact-direct strong {
    display: block;

    margin-bottom: 8px;
}

.contact-direct p {
    color: #999;

    font-size: 13px;

    line-height: 1.6;

    margin-bottom: 15px;
}

.contact-direct a {
    color: #25d366;

    font-weight: 700;
}

.quote-form {
    display: grid;

    grid-template-columns: 1fr 1fr;

    gap: 18px;
}

.form-group {
    display: flex;

    flex-direction: column;

    gap: 8px;
}

.form-group.full {
    grid-column: span 2;
}

.form-group label {
    color: #aaa;

    font-size: 12px;
}

.form-group input,
.form-group select,
.form-group textarea {
    width: 100%;

    padding: 15px;

    border: 1px solid #444;

    background: #222;

    color: white;

    outline: none;

    font-family: inherit;

    resize: vertical;
}

.quote-form button {
    border: none;

    cursor: pointer;

    grid-column: span 2;
}


/* ================= LOCATION ================= */

.location {
    display: grid;

    grid-template-columns: 1fr 1fr;

    gap: 60px;

    padding: 120px 8%;
}

.location-info > p:not(.section-label) {
    color: #666;

    line-height: 1.8;

    margin-bottom: 30px;
}

.location-item {
    margin-bottom: 25px;
}

.location-item strong {
    display: block;

    color: #9c7931;

    margin-bottom: 6px;
}

.location-item p {
    color: #777;

    font-size: 14px;

    line-height: 1.6;
}

.map iframe {
    width: 100%;

    height: 450px;

    border: none;
}


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

footer {
    padding: 50px 8%;

    background: #101010;

    color: white;

    display: flex;

    align-items: center;

    justify-content: space-between;

    flex-wrap: wrap;

    gap: 25px;
}

.footer-logo {
    font-family: 'Playfair Display', serif;

    font-size: 28px;
}

footer p {
    color: #777;

    font-size: 12px;
}

.social {
    display: flex;

    gap: 20px;

    color: #aaa;

    font-size: 13px;
}

.social a:hover {
    color: #c9a45c;
}


/* ================= WHATSAPP ================= */

.whatsapp {
    position: fixed;

    right: 25px;
    bottom: 25px;

    width: 60px;
    height: 60px;

    display: flex;

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

    background: #25d366;

    color: white;

    border-radius: 50%;

    font-size: 27px;

    z-index: 1000;

    transition: .3s;
}

.whatsapp:hover {
    transform: scale(1.1);
}


/* ================= RESPONSIVE ================= */

@media (max-width: 1050px) {

    .nav {
        position: absolute;

        top: 80px;
        left: 0;

        width: 100%;

        display: none;

        flex-direction: column;

        padding: 25px;

        background: #151515;
    }

    .nav.active {
        display: flex;
    }

    .menu-btn {
        display: block;
    }

    .btn-header {
        display: none;
    }

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

    .about,
    .quote-form-section,
    .location {
        grid-template-columns: 1fr;
    }
}


@media (max-width: 750px) {

    .hero {
        padding: 120px 6% 240px;
    }

    .hero-info {
        left: 6%;
        right: 6%;
    }

    .hero-info strong {
        font-size: 22px;
    }

    .hero-info span {
        font-size: 9px;
    }

    .about,
    .events,
    .packages,
    .gallery,
    .quote-form-section,
    .location {
        padding: 80px 6%;
    }

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

    .gallery-grid img {
        height: 350px;
    }

    .quote-form {
        grid-template-columns: 1fr;
    }

    .form-group.full,
    .quote-form button {
        grid-column: span 1;
    }

    .about-list {
        grid-template-columns: 1fr;
    }

    footer {
        flex-direction: column;

        align-items: flex-start;
    }
}


@media (max-width: 500px) {

    .hero-info {
        grid-template-columns: 1fr;
    }

    .hero-info div {
        padding: 12px;

        border-right: none;

        border-bottom: 1px solid #444;
    }

    .hero {
        padding-bottom: 330px;
    }
}