:root {
    --gold: #c89a47;
    --gold-light: #ddb36a;
    --dark: #080808;
    --dark-2: #111111;
    --dark-3: #171717;
    --white: #ffffff;
    --gray: #cfcfcf;
    --transition: 0.3s ease;
}

* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

html {
    scroll-behavior: smooth;
}

body {
    font-family: 'Inter',sans-serif;
    background: var(--dark);
    color: var(--white);
    overflow-x: hidden;
}

img {
    max-width: 100%;
    display: block;
}

a {
    text-decoration: none;
    color: inherit;
}

ul {
    list-style: none;
}

.container {
    width: min(1200px,92%);
    margin: auto;
}

/* ======================
HEADER
====================== */

.header {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    z-index: 1000;
    background: rgba(0,0,0,.55);
    backdrop-filter: blur(10px);
}

.nav-container {
    display: flex;
    align-items: center;
    justify-content: space-between;
    min-height: 80px;
}

.logo {
    display: flex;
    flex-direction: column;
}

.logo-top {
    font-family: 'Cormorant Garamond',serif;
    font-size: 42px;
    color: var(--gold);
    font-weight: 700;
    line-height: 1;
}

.logo-bottom {
    letter-spacing: 4px;
    font-size: 11px;
    color: var(--gold);
}

.nav-menu {
    display: flex;
    gap: 35px;
}

    .nav-menu a {
        transition: var(--transition);
    }

        .nav-menu a:hover {
            color: var(--gold);
        }

.desktop-whatsapp {
    background: var(--gold);
    color: #000;
    padding: 12px 18px;
    border-radius: 8px;
    font-weight: 600;
}

.menu-toggle {
    display: none;
    background: none;
    border: none;
    color: white;
    font-size: 28px;
    cursor: pointer;
}

/* ======================
HERO
====================== */

.hero {
    min-height: 100vh;
    background: url('../images/hero.jpg') center center/cover;
    position: relative;
    display: flex;
    align-items: center;
}

.hero-overlay {
    position: absolute;
    inset: 0;
    background: linear-gradient( to right, rgba(0,0,0,.80), rgba(0,0,0,.45) );
}

.hero-content {
    position: relative;
    z-index: 2;
    max-width: 700px;
}

.hero-subtitle {
    color: var(--gold);
    letter-spacing: 4px;
    font-size: 14px;
}

.hero h1 {
    font-family: 'Cormorant Garamond',serif;
    font-size: 130px;
    line-height: .9;
}

.hero h2 {
    font-family: 'Cormorant Garamond',serif;
    color: var(--gold);
    font-size: 60px;
    margin-bottom: 20px;
}

.hero-line {
    width: 180px;
    height: 2px;
    background: var(--gold);
    margin: 25px 0;
}

.hero p {
    font-size: 26px;
    line-height: 1.6;
    color: #e8e8e8;
    margin-bottom: 40px;
}

.hero-buttons {
    display: flex;
    gap: 15px;
    flex-wrap: wrap;
}

.btn {
    padding: 14px 24px;
    border-radius: 8px;
    font-weight: 600;
    transition: var(--transition);
}

.btn-gold {
    background: var(--gold);
    color: #000;
}

    .btn-gold:hover {
        background: var(--gold-light);
    }

.btn-outline {
    border: 1px solid var(--gold);
}

    .btn-outline:hover {
        background: var(--gold);
        color: #000;
    }
/* ======================
QUICK CARDS
====================== */

.quick-cards {
    margin-top: -40px;
}

@media (max-width:768px) {
    .quick-cards {
        margin-top: 20px;
    }
}

.cards-grid {
    display: grid;
    grid-template-columns: repeat(3,1fr);
    gap: 25px;
}

.quick-card {
    background: var(--dark-2);
    border: 1px solid rgba(255,255,255,.06);
    border-radius: 20px;
    padding: 35px;
    text-align: center;
    transition: var(--transition);
}

    .quick-card:hover {
        transform: translateY(-8px);
        border-color: var(--gold);
    }

.card-icon {
    width: 70px;
    height: 70px;
    margin: auto auto 20px;
    border-radius: 50%;
    background: rgba(200,154,71,.12);
    display: flex;
    align-items: center;
    justify-content: center;
}

    .card-icon i {
        color: var(--gold);
        font-size: 28px;
    }

.quick-card h3 {
    margin-bottom: 10px;
}

.quick-card p {
    color: #b8b8b8;
}

/* ======================
INFO SECTION
====================== */

.info-section {
    padding: 100px 0;
}

.info-grid {
    display: grid;
    grid-template-columns: 350px 1fr;
    gap: 30px;
}

.hours-card,
.events-card {
    background: var(--dark-2);
    border-radius: 20px;
    padding: 35px;
}

    .hours-card h2,
    .events-card h2 {
        margin-bottom: 25px;
        color: var(--gold);
    }

    .hours-card li {
        display: flex;
        justify-content: space-between;
        padding: 14px 0;
        border-bottom: 1px solid rgba(255,255,255,.06);
    }

        .hours-card li:last-child {
            border: none;
        }

.section-header {
    display: flex;
    justify-content: space-between;
    align-items: center;
    margin-bottom: 25px;
}

    .section-header a {
        color: var(--gold);
    }

.events-grid {
    display: grid;
    grid-template-columns: repeat(3,1fr);
    gap: 20px;
}

.event-item {
    overflow: hidden;
}

    .event-item img {
        height: 220px;
        width: 100%;
        object-fit: cover;
        border-radius: 14px;
    }

    .event-item h3 {
        margin-top: 15px;
        margin-bottom: 8px;
    }

    .event-item p {
        color: #bdbdbd;
    }

/* ======================
CONTACT CARDS
====================== */

.contact-info {
    padding-bottom: 60px;
}

.contact-grid {
    display: grid;
    grid-template-columns: repeat(3,1fr);
    gap: 25px;
}

.contact-card {
    background: var(--dark-2);
    padding: 35px;
    border-radius: 20px;
    text-align: center;
}

    .contact-card i {
        font-size: 32px;
        color: var(--gold);
        margin-bottom: 15px;
    }

    .contact-card h3 {
        margin-bottom: 10px;
    }

/* ======================
MAP
====================== */

.map-section {
    padding-bottom: 80px;
}

.map-wrapper {
    overflow: hidden;
    border-radius: 25px;
}

    .map-wrapper img {
        width: 100%;
        height: 450px;
        object-fit: cover;
    }

/* ======================
CONTACT FORM
====================== */

.contact-form-section {
    padding-bottom: 100px;
}

.form-grid {
    display: grid;
    grid-template-columns: 420px 1fr;
    gap: 30px;
}

.form-info,
.form-card {
    background: var(--dark-2);
    border-radius: 20px;
    padding: 40px;
}

.small-title {
    color: var(--gold);
    letter-spacing: 3px;
    font-size: 12px;
}

.form-info h2 {
    margin: 20px 0;
    font-size: 42px;
}

.form-info p {
    color: #c7c7c7;
    line-height: 1.7;
    margin-bottom: 30px;
}

.info-item {
    display: flex;
    gap: 12px;
    margin-bottom: 18px;
    align-items: flex-start;
}

    .info-item i {
        color: var(--gold);
        margin-top: 3px;
    }

.form-card form {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 18px;
}

.input-group {
    width: 100%;
}

.full-width {
    grid-column: 1/-1;
}

input,
textarea {
    width: 100%;
    background: #0c0c0c;
    border: 1px solid rgba(255,255,255,.08);
    padding: 16px;
    border-radius: 10px;
    color: white;
    font-size: 15px;
}

    input:focus,
    textarea:focus {
        outline: none;
        border-color: var(--gold);
    }

.submit-btn {
    border: none;
    cursor: pointer;
}

/* ======================
FOOTER
====================== */

.footer {
    background: #050505;
    padding: 70px 0 30px;
    text-align: center;
}

.footer-logo h2 {
    font-family: 'Cormorant Garamond',serif;
    color: var(--gold);
    font-size: 70px;
    line-height: 1;
}

.footer-logo span {
    letter-spacing: 4px;
    color: var(--gold);
}

.footer p {
    margin: 25px 0;
    color: #bcbcbc;
}

.footer-social {
    display: flex;
    justify-content: center;
    gap: 15px;
    margin-bottom: 30px;
}

    .footer-social a {
        width: 45px;
        height: 45px;
        background: var(--dark-3);
        border-radius: 50%;
        display: flex;
        align-items: center;
        justify-content: center;
    }

.footer-bottom {
    color: #8a8a8a;
    font-size: 14px;
}

/* ======================
FLOATING WHATSAPP
====================== */

.floating-whatsapp {
    position: fixed;
    right: 20px;
    bottom: 70px;
    width: 40px;
    height: 40px;
    border-radius: 50%;
    background: #25d366;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 28px;
    z-index: 999;
}

/* ======================
TABLET
====================== */

@media (max-width: 992px) {

    .hero h1 {
        font-size: 90px;
    }

    .hero h2 {
        font-size: 45px;
    }

    .info-grid {
        grid-template-columns: 1fr;
    }

    .form-grid {
        grid-template-columns: 1fr;
    }

    .events-grid {
        grid-template-columns: repeat(2,1fr);
    }
}

/* ======================
MOBILE MENU
====================== */

.mobile-whatsapp {
    display: none;
}

/* ======================
MOBILE
====================== */

@media (max-width:768px) {

    .menu-toggle {
        display: block;
    }

    .desktop-whatsapp {
        display: none;
    }

    .nav-menu {
        position: absolute;
        top: 80px;
        left: 0;
        width: 100%;
        background: #090909;
        flex-direction: column;
        align-items: center;
        padding: 30px 0;
        gap: 25px;
        opacity: 0;
        visibility: hidden;
        transform: translateY(-20px);
        transition: .3s;
    }

        .nav-menu.active {
            opacity: 1;
            visibility: visible;
            transform: translateY(0);
        }

    .mobile-whatsapp {
        display: inline-block;
        background: var(--gold);
        color: black;
        padding: 12px 20px;
        border-radius: 8px;
        font-weight: 600;
    }

    .hero {
        text-align: center;
    }

    .hero-content {
        margin: auto;
    }

    .hero h1 {
        font-size: 68px;
    }

    .hero h2 {
        font-size: 34px;
    }

    .hero p {
        font-size: 18px;
    }

    .hero-line {
        margin: 20px auto;
    }

    .hero-buttons {
        justify-content: center;
    }

    .cards-grid {
        grid-template-columns: 1fr;
    }

    .contact-grid {
        grid-template-columns: 1fr;
    }

    .events-grid {
        grid-template-columns: 1fr;
    }

    .form-card form {
        grid-template-columns: 1fr;
    }

    .full-width {
        grid-column: auto;
    }

    .map-wrapper img {
        height: 300px;
    }

    .footer-logo h2 {
        font-size: 52px;
    }
}

/* ======================
SMALL PHONES
====================== */

@media (max-width:480px) {

    .logo-top {
        font-size: 34px;
    }

    .hero h1 {
        font-size: 52px;
    }

    .hero h2 {
        font-size: 26px;
    }

    .hero p {
        font-size: 16px;
    }

    .btn {
        width: 100%;
        text-align: center;
    }

    .hero-buttons {
        flex-direction: column;
    }

    .quick-card,
    .hours-card,
    .events-card,
    .contact-card,
    .form-card,
    .form-info {
        padding: 25px;
    }

    .map-wrapper {
        overflow: hidden;
        border-radius: 25px;
        border: 1px solid rgba(255,255,255,.08);
    }

        .map-wrapper iframe {
            width: 100%;
            height: 450px;
            display: block;
            border: none;
        }


    @media (max-width:768px) {

        .map-wrapper iframe {
            height: 300px;
        }
    }

    .map-wrapper {
        overflow: hidden;
        border-radius: 25px;
        border: 1px solid rgba(255,255,255,.08);
    }

        .map-wrapper iframe {
            width: 100%;
            height: 450px;
            border: none;
            display: block;
        }

    @media (max-width:768px) {

        .map-wrapper iframe {
            height: 300px;
        }
    }

    .contact-photo-card {
        width: 100%;
        height: 100%;
        border-radius: 20px;
        overflow: hidden;
        box-shadow: 0 15px 40px rgba(0,0,0,.15);
    }

        .contact-photo-card img {
            width: 100%;
            height: 100%;
            display: block;
            object-fit: cover;
        }

    .contact-photo-card {
        width: 100%;
        max-width: 1200px;
        margin: 0 auto;
        border-radius: 20px;
        overflow: hidden;
        box-shadow: 0 15px 40px rgba(0,0,0,.15);
    }

        .contact-photo-card img {
            width: 100%;
            display: block;
            height: auto;
        }

    @media (max-width:768px) {

        .contact-photo-card {
            border-radius: 16px;
        }

            .contact-photo-card img {
                width: 100%;
                height: auto;
            }
    }

    .footer-bottom a {
        color: var(--gold);
        font-weight: 600;
        transition: .3s;
    }

        .footer-bottom a:hover {
            color: #fff;
        }
}