/* =========================================
   NEW DARK LUXURY THEME
   ========================================= */
:root {
    /* Colors */
    --bg-main: #080808;
    --bg-surface: #121212;
    --bg-surface-light: #1A1A1A;
    
    --accent: #D4AF37;       /* Elegant Gold */
    --accent-hover: #F3E5AB;
    
    --text-main: #FFFFFF;
    --text-muted: #A0A0A0;
    --text-dark: #333333;
    
    /* Fonts */
    --font-heading: 'Outfit', sans-serif;
    --font-body: 'Inter', sans-serif;
    
    /* Transitions */
    --transition: all 0.4s cubic-bezier(0.25, 0.46, 0.45, 0.94);
}

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

html {
    scroll-behavior: smooth;
}

body {
    font-family: var(--font-body);
    color: var(--text-main);
    background-color: var(--bg-main);
    line-height: 1.6;
    overflow-x: hidden;
}

/* Typography */
h1, h2, h3, h4, h5, h6 {
    font-family: var(--font-heading);
    font-weight: 600;
}

a {
    text-decoration: none;
    color: inherit;
    transition: var(--transition);
}

ul { list-style: none; }
img { max-width: 100%; display: block; }

.section-padding { padding: 120px 0; }
.container { max-width: 1300px; margin: 0 auto; padding: 0 24px; }
.text-center { text-align: center; }
.mt-4 { margin-top: 2rem; }

/* Section Titles */
.section-header {
    margin-bottom: 80px;
}
.section-title {
    font-size: 3rem;
    font-weight: 800;
    letter-spacing: -1px;
    margin-bottom: 15px;
    background: linear-gradient(to right, #fff, #a0a0a0);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
}
.section-subtitle {
    font-size: 1.1rem;
    color: var(--accent);
    letter-spacing: 2px;
    text-transform: uppercase;
}

/* Buttons */
.btn {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    gap: 10px;
    padding: 16px 36px;
    font-family: var(--font-heading);
    font-weight: 600;
    font-size: 0.9rem;
    text-transform: uppercase;
    letter-spacing: 2px;
    border-radius: 4px;
    cursor: pointer;
    transition: var(--transition);
    position: relative;
    overflow: hidden;
    z-index: 1;
}

.btn-solid {
    background-color: var(--accent);
    color: var(--bg-main);
    border: 1px solid var(--accent);
}
.btn-solid:hover {
    background-color: transparent;
    color: var(--accent);
}

.btn-outline-light {
    background-color: transparent;
    border: 1px solid rgba(255,255,255,0.3);
    color: #fff;
}
.btn-outline-light:hover {
    border-color: #fff;
    background-color: #fff;
    color: var(--bg-main);
}

.btn-outline-accent {
    background-color: transparent;
    border: 1px solid var(--accent);
    color: var(--accent);
}
.btn-outline-accent:hover {
    background-color: var(--accent);
    color: var(--bg-main);
}

.btn-whatsapp {
    background-color: transparent;
    border: 1px solid #25D366;
    color: #25D366;
}
.btn-whatsapp:hover {
    background-color: #25D366;
    color: var(--bg-main);
}

/* =========================================
   HEADER / NAVBAR
   ========================================= */
.navbar {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    z-index: 1000;
    padding: 30px 0;
    transition: var(--transition);
    border-bottom: 1px solid transparent;
}
.navbar.scrolled {
    padding: 15px 0;
    background-color: rgba(8, 8, 8, 0.85);
    backdrop-filter: blur(15px);
    -webkit-backdrop-filter: blur(15px);
    border-bottom: 1px solid rgba(255,255,255,0.05);
}

.nav-container {
    max-width: 1400px;
    margin: 0 auto;
    padding: 0 30px;
    display: flex;
    justify-content: space-between;
    align-items: center;
}

.logo {
    display: flex;
    align-items: center;
    gap: 15px;
}
.nav-logo-img {
    height: 60px;
    border-radius: 8px;
    transition: var(--transition);
}
.navbar.scrolled .nav-logo-img {
    height: 50px;
}
.logo-text-wrapper {
    display: flex;
    flex-direction: column;
}
.logo-text-main {
    font-family: var(--font-heading);
    font-weight: 800;
    font-size: 1.6rem;
    letter-spacing: 2px;
    color: #fff;
    line-height: 1.1;
}
.logo-text-sub {
    font-family: var(--font-body);
    font-size: 0.7rem;
    color: var(--accent);
    letter-spacing: 1px;
}

.nav-list {
    display: flex;
    gap: 40px;
}

.nav-link {
    font-family: var(--font-heading);
    font-size: 0.85rem;
    font-weight: 400;
    color: var(--text-muted);
    text-transform: uppercase;
    letter-spacing: 2px;
    position: relative;
    padding: 5px 0;
}
.nav-link:hover, .nav-link.active {
    color: #fff;
}
.nav-link::after {
    content: '';
    position: absolute;
    bottom: 0;
    left: 0;
    width: 0;
    height: 1px;
    background-color: var(--accent);
    transition: var(--transition);
}
.nav-link:hover::after, .nav-link.active::after {
    width: 100%;
}

.nav-social {
    display: flex;
    gap: 20px;
}
.social-icon {
    color: var(--text-muted);
    font-size: 1.2rem;
}
.social-icon:hover {
    color: var(--accent);
}

.hamburger { display: none; cursor: pointer; }
.hamburger .bar {
    display: block;
    width: 30px;
    height: 2px;
    margin: 6px auto;
    background-color: #fff;
    transition: var(--transition);
}

/* =========================================
   HERO SECTION
   ========================================= */
.hero {
    position: relative;
    height: 100vh;
    min-height: 700px;
    display: flex;
    align-items: center;
    justify-content: center;
}
.hero-video {
    position: absolute;
    top: 0; left: 0;
    width: 100%; height: 100%;
    object-fit: cover;
    z-index: -2;
}
.hero-overlay {
    position: absolute;
    top: 0; left: 0;
    width: 100%; height: 100%;
    background: linear-gradient(180deg, rgba(8,8,8,0.7) 0%, rgba(8,8,8,0.4) 50%, rgba(8,8,8,1) 100%);
    z-index: -1;
}

.hero-content {
    text-align: center;
    padding: 0 20px;
    margin-top: 60px;
}

.hero .title {
    font-size: 6vw;
    line-height: 1.1;
    font-weight: 800;
    letter-spacing: -2px;
    margin-bottom: 20px;
}
.hero .highlight {
    color: transparent;
    -webkit-text-stroke: 1px var(--accent);
}

.hero .desc {
    font-size: 1.2rem;
    color: var(--text-muted);
    max-width: 600px;
    margin: 0 auto 40px;
}

.hero-buttons {
    display: flex;
    gap: 20px;
    justify-content: center;
}

.scroll-indicator {
    position: absolute;
    bottom: 40px;
    left: 50%;
    transform: translateX(-50%);
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 15px;
    opacity: 0.6;
}
.scroll-indicator span {
    font-family: var(--font-heading);
    font-size: 0.7rem;
    text-transform: uppercase;
    letter-spacing: 3px;
    writing-mode: vertical-rl;
}
.scroll-indicator .line {
    width: 1px;
    height: 60px;
    background-color: #fff;
    animation: stretch 2s infinite ease-in-out;
    transform-origin: top;
}
@keyframes stretch {
    0% { transform: scaleY(0); }
    50% { transform: scaleY(1); }
    100% { transform: scaleY(0); transform-origin: bottom; }
}

/* =========================================
   ABOUT SECTION
   ========================================= */
.about-grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 80px;
    align-items: center;
}
.about-text p {
    font-size: 1.1rem;
    color: var(--text-muted);
    margin-bottom: 20px;
}
.stats-grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 30px;
    margin-top: 50px;
    border-top: 1px solid rgba(255,255,255,0.1);
    padding-top: 30px;
}
.stat-item h3 {
    font-size: 3rem;
    color: var(--accent);
    margin-bottom: 5px;
    line-height: 1;
}
.stat-item p {
    font-family: var(--font-heading);
    font-size: 0.9rem;
    text-transform: uppercase;
    letter-spacing: 2px;
    color: #fff;
    margin: 0;
}
.about-image {
    position: relative;
    border-radius: 4px;
    overflow: hidden;
}
.about-image img {
    width: 100%;
    height: auto;
    max-height: 700px;
    object-fit: contain;
    filter: grayscale(20%) contrast(1.1);
    border-radius: 8px;
}
.image-accent {
    position: absolute;
    top: 0; left: 0; width: 100%; height: 100%;
    box-shadow: inset 0 0 100px rgba(8,8,8,0.8);
    pointer-events: none;
}

/* =========================================
   PREMIUM MENU SECTION
   ========================================= */
.menu {
    background-color: var(--bg-surface);
}
.menu-layout {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 80px;
}
.menu-category-title {
    font-size: 1.5rem;
    color: var(--accent);
    margin-bottom: 40px;
    padding-bottom: 10px;
    border-bottom: 1px solid rgba(212, 175, 55, 0.3);
}

.premium-menu-list li {
    margin-bottom: 30px;
}
.menu-row {
    display: flex;
    align-items: baseline;
    margin-bottom: 8px;
}
.m-name {
    font-family: var(--font-heading);
    font-size: 1.2rem;
    font-weight: 400;
    color: #fff;
}
.m-dots {
    flex-grow: 1;
    border-bottom: 1px dotted rgba(255,255,255,0.2);
    margin: 0 15px;
}
.m-price {
    font-family: var(--font-heading);
    font-size: 1.2rem;
    color: var(--accent);
}
.m-desc {
    display: block;
    font-size: 0.9rem;
    color: var(--text-muted);
}

/* =========================================
   REVIEWS MARQUEE
   ========================================= */
.reviews-marquee {
    overflow: hidden;
    background-color: var(--bg-surface-light);
    border-top: 1px solid rgba(255,255,255,0.05);
    border-bottom: 1px solid rgba(255,255,255,0.05);
}
.marquee-wrapper {
    display: flex;
    white-space: nowrap;
}
.marquee-content {
    display: flex;
    animation: scroll 30s linear infinite;
}
.marquee-content:hover {
    animation-play-state: paused;
}
@keyframes scroll {
    0% { transform: translateX(0); }
    100% { transform: translateX(-50%); } /* Assuming content is duplicated via JS */
}

.r-card {
    display: inline-block;
    white-space: normal;
    width: 400px;
    padding: 30px;
    margin-right: 30px;
    background-color: var(--bg-main);
    border: 1px solid rgba(255,255,255,0.05);
    border-radius: 4px;
}
.r-stars {
    color: var(--accent);
    font-size: 0.8rem;
    margin-bottom: 15px;
}
.r-card p {
    font-size: 1.1rem;
    color: #fff;
    margin-bottom: 15px;
    font-style: italic;
}
.r-author {
    font-family: var(--font-heading);
    font-size: 0.85rem;
    text-transform: uppercase;
    letter-spacing: 1px;
    color: var(--text-muted);
}

/* =========================================
   MASONRY GALLERY (FIX FOR FULL SIZES)
   ========================================= */
.masonry-grid {
    column-count: 4;
    column-gap: 20px;
}
.masonry-item {
    position: relative;
    break-inside: avoid;
    margin-bottom: 30px;
    border-radius: 4px;
    overflow: hidden;
    cursor: pointer;
}
.masonry-item img {
    width: 100%;
    height: auto; /* IMPORTANT: Ensures full aspect ratio, no cropping */
    display: block;
    transition: transform 0.7s ease;
    filter: brightness(0.8);
}
.masonry-overlay {
    position: absolute;
    top: 0; left: 0; width: 100%; height: 100%;
    background: rgba(212, 175, 55, 0.2);
    display: flex;
    align-items: center;
    justify-content: center;
    opacity: 0;
    transition: var(--transition);
}
.masonry-overlay i {
    font-size: 2rem;
    color: #fff;
    transform: scale(0.5);
    transition: var(--transition);
}
.masonry-item:hover img {
    transform: scale(1.05);
    filter: brightness(1);
}
.masonry-item:hover .masonry-overlay {
    opacity: 1;
}
.masonry-item:hover .masonry-overlay i {
    transform: scale(1);
}

/* Lightbox Styles */
.lightbox {
    display: none;
    position: fixed;
    z-index: 9999;
    top: 0; left: 0;
    width: 100%; height: 100%;
    background-color: rgba(0,0,0,0.95);
    align-items: center;
    justify-content: center;
    backdrop-filter: blur(5px);
}
.lightbox.active {
    display: flex;
}
.lightbox-content {
    max-width: 90%;
    max-height: 90vh;
    object-fit: contain;
    animation: fadeIn 0.3s ease;
}
@keyframes fadeIn {
    from { opacity: 0; transform: scale(0.95); }
    to { opacity: 1; transform: scale(1); }
}
.close-lightbox {
    position: absolute;
    top: 30px;
    right: 40px;
    color: #fff;
    font-size: 40px;
    font-weight: 300;
    cursor: pointer;
    transition: var(--transition);
}
.close-lightbox:hover {
    color: var(--accent);
}

/* =========================================
   CONTACT SECTION
   ========================================= */
.contact {
    background-color: var(--bg-surface);
}
.contact-grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
}
.contact-form-area {
    padding: 120px 10%;
    display: flex;
    align-items: center;
}
.c-desc {
    font-size: 1.1rem;
    color: var(--text-muted);
    margin-bottom: 50px;
}
.c-info-list {
    margin-bottom: 50px;
}
.c-info-item {
    display: flex;
    align-items: flex-start;
    gap: 20px;
    margin-bottom: 30px;
}
.c-info-item i {
    color: var(--accent);
    font-size: 1.5rem;
    margin-top: 5px;
}
.c-info-item h5 {
    font-size: 1.1rem;
    color: #fff;
    margin-bottom: 5px;
    letter-spacing: 1px;
}
.c-info-item p {
    color: var(--text-muted);
}
.c-actions {
    display: flex;
    gap: 20px;
}
.contact-map {
    height: 100%;
    min-height: 600px;
}
.contact-map iframe {
    width: 100%;
    height: 100%;
    filter: grayscale(100%) invert(90%) contrast(80%); /* Dark map styling */
}

/* =========================================
   FOOTER
   ========================================= */
.footer {
    padding: 60px 0 30px;
    background-color: #050505;
}
.footer-top {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding-bottom: 40px;
    border-bottom: 1px solid rgba(255,255,255,0.05);
    margin-bottom: 30px;
}
.footer-logo-img {
    height: 80px;
    border-radius: 8px;
    filter: grayscale(30%);
    opacity: 0.8;
    transition: var(--transition);
}
.footer-logo-img:hover {
    filter: grayscale(0%);
    opacity: 1;
}
.footer-social {
    display: flex;
    gap: 20px;
}
.footer-social a {
    width: 45px;
    height: 45px;
    border: 1px solid rgba(255,255,255,0.1);
    display: flex;
    align-items: center;
    justify-content: center;
    border-radius: 50%;
    font-size: 1.2rem;
    color: var(--text-muted);
}
.footer-social a:hover {
    background-color: var(--accent);
    border-color: var(--accent);
    color: var(--bg-main);
}
.footer-bottom {
    text-align: center;
    color: #666;
    font-size: 0.85rem;
    font-family: var(--font-heading);
    letter-spacing: 1px;
}

/* =========================================
   ANIMATIONS (AOS STYLE)
   ========================================= */
.reveal {
    opacity: 0;
    transform: translateY(30px);
    transition: all 1s cubic-bezier(0.25, 0.46, 0.45, 0.94);
}
.reveal.active {
    opacity: 1;
    transform: translateY(0);
}

/* =========================================
   MEDIA QUERIES
   ========================================= */
@media (max-width: 1024px) {
    .about-grid, .menu-layout { gap: 40px; }
    .hero .title { font-size: 8vw; }
    .masonry-grid { column-count: 3; column-gap: 15px; }
}

@media (max-width: 991px) {
    .about-grid, .menu-layout, .contact-grid {
        grid-template-columns: 1fr;
    }
    .contact-form-area { padding: 80px 24px; }
    .contact-map { min-height: 400px; }
    .nav-social { display: none; }
    
    /* Hamburger Menu */
    .hamburger { display: block; z-index: 1001; }
    .hamburger.active .bar:nth-child(2) { opacity: 0; }
    .hamburger.active .bar:nth-child(1) { transform: translateY(8px) rotate(45deg); }
    .hamburger.active .bar:nth-child(3) { transform: translateY(-8px) rotate(-45deg); }

    .nav-menu {
        position: fixed;
        left: -100%; top: 0;
        flex-direction: column;
        background-color: var(--bg-main);
        width: 100%; height: 100vh;
        text-align: center;
        transition: 0.4s cubic-bezier(0.25, 0.46, 0.45, 0.94);
        display: flex;
        justify-content: center;
    }
    .nav-menu.active { left: 0; }
    .nav-list { flex-direction: column; gap: 30px; }
    .nav-link { font-size: 1.5rem; }
}

@media (max-width: 768px) {
    .masonry-grid { column-count: 2; }
    .hero .title { font-size: 3.5rem; }
    .hero-buttons, .c-actions { flex-direction: column; }
    .section-padding { padding: 80px 0; }
    .section-title { font-size: 2.5rem; }
}

@media (max-width: 480px) {
    .masonry-grid { column-count: 1; }
    .nav-logo-img { height: 40px; }
    .logo-text-main { font-size: 1.2rem; }
}
