:root {
    --gold: #d4af37;
    --dark: #0f0f0f;
    --light-glass: rgba(255, 255, 255, 0.05);
}

* { margin:0; padding:0; box-sizing: border-box; }

html { scroll-behavior: smooth; }

body {
    background-color: var(--dark);
    color: #fff;
    font-family: 'Outfit', sans-serif;
    line-height: 1.6;
    overflow-x: hidden;
}

/* Loader */
#loader {
    position: fixed; top: 0; left: 0; width: 100%; height: 100%;
    background: #000; z-index: 10000; display: flex; justify-content: center; align-items: center;
    transition: 1s ease-in-out;
}
.loader-logo { font-family: 'Syncopate'; color: var(--gold); letter-spacing: 10px; }
.loader-line { width: 100px; height: 2px; background: var(--gold); margin: 10px auto; animation: grow 1.5s infinite; }
@keyframes grow { 0% { width: 0; } 100% { width: 150px; } }

/* Navbar */
.navbar {
    position: fixed; top: 0; width: 100%; padding: 20px 8%;
    display: flex; justify-content: space-between; align-items: center;
    background: rgba(0,0,0,0.8); backdrop-filter: blur(15px); z-index: 999;
    height: 70px;
}
.logo { font-family: 'Syncopate'; font-size: 1.4rem; color: var(--gold); }
.logo span { color: #fff; }

.nav-links {
    display: flex;
    align-items: center;
}

.nav-links a {
    color: #fff; text-decoration: none; margin-left: 25px; font-size: 0.8rem;
    text-transform: uppercase; transition: 0.3s;
}
.nav-links a:hover { color: var(--gold); }

.nav-cta {
    background: var(--gold); color: #000 !important;
    padding: 10px 20px; border-radius: 5px; font-weight: bold;
}

/* Hamburger */
.menu-toggle { display: none; color: var(--gold); font-size: 1.5rem; cursor: pointer; }

/* Hero */
.hero {
    height: 100vh;
    background: linear-gradient(rgba(0,0,0,0.6), rgba(0,0,0,0.6)), url('pexels-roman-odintsov-4553621.jpg');
    background-size: cover; background-position: center;
    display: flex; align-items: center; padding: 0 8%;
}
.hero h1 {
    font-family: 'Playfair Display';
    font-size: 5rem;
    line-height: 1.1;
    margin: 20px 0;
}
.gold-text { color: var(--gold); }

/* Buttons */
.btn-primary, .btn-secondary {
    padding: 15px 30px; text-decoration: none; font-weight: bold; text-transform: uppercase;
    letter-spacing: 2px; display: inline-block; margin: 10px 10px 10px 0; transition: 0.3s;
}
.btn-primary { background: var(--gold); color: black; border-radius: 5px; }
.btn-secondary { border: 1px solid white; color: white; border-radius: 5px; }
.btn-primary:hover { transform: translateY(-3px); box-shadow: 0 10px 20px rgba(212, 175, 55, 0.3); }

/* Gallery */
.gallery-section { padding: 100px 8%; }
.section-title { text-align: center; margin-bottom: 50px; }
.subtitle { color: var(--gold); letter-spacing: 5px; font-weight: bold; font-size: 0.8rem; }

.bento-grid {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 15px;
}
.grid-item {
    position: relative;
    border-radius: 10px;
    overflow: hidden;
    aspect-ratio: 1 / 1;
}
.grid-item img {
    width: 100%; height: 100%; object-fit: cover; transition: 0.8s;
}
.grid-item span {
    position: absolute; bottom: 10px; left: 10px;
    background: rgba(0,0,0,0.7); padding: 5px 15px;
    font-size: 0.7rem; border-radius: 20px;
}
.grid-item:hover img { transform: scale(1.1); }
.wide { grid-column: span 2; }

/* Stats */
.stats-row {
    display: flex; justify-content: space-around; background: var(--light-glass);
    padding: 40px; border-radius: 15px; margin: 40px 0;
    border: 1px solid rgba(212, 175, 55, 0.2);
}
.stat-item h3 { color: var(--gold); font-size: 2.5rem; font-family: 'Syncopate'; }
.stat-item p { font-size: 0.7rem; text-transform: uppercase; color: #aaa; }

/* Packages */
.packages { padding: 80px 8%; display: flex; gap: 30px; }
.package-card {
    flex: 1; background: var(--light-glass); padding: 50px;
    border-radius: 20px; border-bottom: 3px solid var(--gold);
}
.featured { border: 2px solid var(--gold); transform: scale(1.05); }

/* Contact Form */
form {
    max-width: 800px; margin: auto; background: var(--light-glass);
    padding: 40px; border-radius: 20px;
}
.f-row { display: flex; gap: 20px; margin-bottom: 20px; }
input, textarea {
    width: 100%; padding: 15px; background: #222;
    border: 1px solid #333; color: #fff; border-radius: 5px;
}
button {
    width: 100%; padding: 15px; background: var(--gold);
    border: none; font-weight: bold; cursor: pointer; transition: 0.3s;
}
button:hover { letter-spacing: 2px; }

/* WhatsApp */
.whatsapp-float {
    position: fixed; bottom: 40px; right: 40px; background: #25d366;
    width: 60px; height: 60px; border-radius: 50%;
    display: flex; justify-content: center; align-items: center;
    font-size: 30px; color: #fff; z-index: 1000;
}

/* MOBILE */
@media (max-width: 768px) {

    .menu-toggle { display: block; }

    .nav-links {
        position: fixed; top: 70px; right: -100%;
        background: rgba(10,10,10,0.98);
        width: 100%; height: 100vh;
        flex-direction: column; align-items: center;
        padding-top: 50px; transition: 0.5s;
    }
    .nav-links.active { right: 0; }
    .nav-links a { margin: 15px 0; font-size: 1.2rem; }

    .hero h1 { font-size: 2.5rem; }

    .bento-grid { grid-template-columns: 1fr; }
    .wide { grid-column: span 1; }

    .packages { flex-direction: column; }

    .stats-row { flex-direction: column; gap: 30px; }

    .f-row { flex-direction: column; }

    .whatsapp-float {
        bottom: 20px; right: 20px;
        width: 50px; height: 50px; font-size: 24px;
    }
}

@media (max-width: 480px) {
    .hero h1 { font-size: 2rem; }
}