/* --- Premium Luxury Cafe Styling --- */
@import url('https://fonts.googleapis.com/css2?family=Cinzel:wght@500;600&family=Great+Vibes&family=Playfair+Display:wght@400;600;700&family=Montserrat:wght@300;400;500;600&display=swap');

:root {
    --black: #1E1611;
    --deep-espresso: #36271D;
    --cream: #F3EFE9;
    --warm-gold: #C5A265;
    --tan: #D1B490;
}

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

html {
    scroll-behavior: smooth;
}

body {
    font-family: 'Montserrat', sans-serif;
    background-color: var(--black);
    color: var(--cream);
    line-height: 1.7;
    -webkit-font-smoothing: antialiased;
    -moz-osx-font-smoothing: grayscale;
}

/* --- Navigation --- */
nav {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 10px 50px; /* Reduced vertical padding */
    background-color: transparent;
    z-index: 1000;
    transition: background-color 0.3s ease;
}

nav.scrolled, nav.glass-nav {
    background-color: rgba(54, 39, 29, 0.65);
    backdrop-filter: blur(16px);
    -webkit-backdrop-filter: blur(16px);
    border-bottom: 1px solid rgba(197, 162, 101, 0.15);
    padding: 8px 50px; /* Further reduced on scroll/glass */
}

.logo {
    display: inline-flex;
    flex-direction: column;
    align-items: flex-start;
    color: var(--cream);
    text-decoration: none;
    line-height: 1;
}

.logo-social {
    font-family: 'Cinzel', serif;
    font-size: 1rem;
    font-weight: 600;
    text-transform: uppercase;
    letter-spacing: 2.4px;
    color: var(--cream);
}

.logo-lobby {
    font-family: 'Great Vibes', cursive;
    font-size: 1.55rem;
    font-weight: 400;
    text-transform: lowercase;
    color: var(--warm-gold);
    margin-top: -10px;
    margin-left: 32px;
}

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

.nav-links a {
    text-decoration: none;
    color: var(--cream);
    font-size: 0.9rem;
    font-weight: 400;
    letter-spacing: 1.5px;
    text-transform: uppercase;
    padding: 8px 20px;
    border: 1px solid transparent;
    transition: all 0.3s ease;
}

.nav-links a:hover, .nav-links a.active {
    border: 1px solid var(--warm-gold);
    color: var(--warm-gold);
}

/* --- Dropdown Nav --- */
.dropdown {
    position: relative;
    display: inline-block;
}

.dropbtn {
    background-color: transparent;
    color: var(--cream);
    font-family: 'Montserrat', sans-serif;
    font-size: 0.9rem;
    font-weight: 400;
    letter-spacing: 1.5px;
    text-transform: uppercase;
    padding: 8px 20px;
    border: 1px solid transparent;
    cursor: pointer;
    transition: all 0.3s ease;
}

.dropdown:hover .dropbtn, .dropbtn:focus {
    border: 1px solid var(--warm-gold);
    color: var(--warm-gold);
}

.dropdown-content {
    display: none;
    position: absolute;
    right: 0;
    background-color: rgba(26, 17, 10, 0.95);
    min-width: 220px;
    box-shadow: 0px 8px 16px 0px rgba(0,0,0,0.2);
    z-index: 1001;
    border: 1px solid rgba(197, 162, 101, 0.3);
    border-radius: 4px;
    margin-top: 10px;
    backdrop-filter: blur(10px);
}

/* Invisible bridge so the hover state doesn't break when moving the mouse down */
.dropdown-content::before {
    content: "";
    position: absolute;
    top: -15px;
    left: 0;
    width: 100%;
    height: 15px;
    background: transparent;
}

.dropdown-content a {
    color: var(--cream);
    padding: 12px 16px;
    text-decoration: none;
    display: block;
    text-align: center;
    border: none;
    font-size: 0.85rem;
    letter-spacing: 1px;
    transition: all 0.2s ease;
}

.dropdown-content a:hover {
    background-color: rgba(197, 162, 101, 0.15);
    color: var(--warm-gold);
    border: none;
}

.dropdown:hover .dropdown-content {
    display: block;
}

/* --- Hero Section --- */
.hero {
    position: relative;
    height: 100vh;
    background-image: linear-gradient(to bottom, rgba(0,0,0,0) 0%, rgba(30, 22, 17, 0.4) 70%, #1E1611 100%), 
                      url('images/hero-desktop.jpg'); /* Place your PC photo here */
    background-size: cover;
    background-position: center;
    background-attachment: fixed;
    display: flex;
    align-items: flex-end;
    justify-content: center;
    padding-bottom: 100px;
}

.hero-title {
    display: inline-flex;
    flex-direction: column;
    align-items: flex-start;
    text-align: left;
    line-height: 1;
    z-index: 10;
}

.hero-social {
    font-family: 'Cinzel', serif;
    font-size: clamp(3rem, 8vw, 6rem);
    font-weight: 600;
    color: var(--cream);
    letter-spacing: clamp(4px, 1.5vw, 15px);
    text-transform: uppercase;
}

.hero-lobby {
    font-family: 'Great Vibes', cursive;
    font-size: clamp(4.65rem, 12.4vw, 9.3rem);
    font-weight: 400;
    color: var(--warm-gold);
    text-transform: lowercase;
    margin-top: -30px;
    margin-left: 35%; /* This will place it right below the 'C' and 'I' */
}

/* --- Sections --- */
.section {
    padding: 120px 50px;
    max-width: 1200px;
    margin: 0 auto;
    background-color: var(--black);
}

.section.dark {
    background: linear-gradient(to bottom, var(--black) 0%, var(--deep-espresso) 100%);
}

h1, h2, h3 {
    font-family: 'Playfair Display', serif;
    font-weight: 600;
    letter-spacing: 2px;
}

h2 {
    font-size: clamp(2rem, 4vw, 3rem);
    color: var(--warm-gold);
    margin-bottom: 30px;
    text-align: center;
}

p {
    font-size: 1.05rem;
    color: var(--cream);
    opacity: 0.9;
    line-height: 1.9;
    max-width: 800px;
    margin: 0 auto;
    text-align: center;
}

/* --- Team Section --- */
.team-section {
    padding-top: 20px;
}

.team-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(220px, 1fr));
    gap: 28px;
    margin-top: 45px;
}

.team-card {
    background: linear-gradient(to bottom, rgba(54, 39, 29, 0.7), rgba(30, 22, 17, 0.9));
    border: 1px solid rgba(197, 162, 101, 0.22);
    border-radius: 16px;
    padding: 18px;
    text-align: center;
    transition: transform 0.3s ease, border-color 0.3s ease;
}

.team-card:hover {
    transform: translateY(-6px);
    border-color: var(--warm-gold);
}

.team-card img {
    width: 100%;
    aspect-ratio: 3 / 4;
    object-fit: cover;
    border-radius: 14px;
    margin-bottom: 14px;
}

.team-name {
    font-family: 'Playfair Display', serif;
    font-size: 1.2rem;
    color: var(--cream);
    letter-spacing: 0.4px;
    margin-bottom: 4px;
}

.team-role {
    font-size: 0.9rem;
    color: var(--tan);
    text-transform: uppercase;
    letter-spacing: 1.4px;
}

/* --- Menu Layout --- */
.menu-section {
    margin-top: 80px;
}

.menu-section h2 {
    color: var(--warm-gold);
    border-bottom: 1px solid var(--tan);
    padding-bottom: 15px;
    margin-bottom: 30px;
    font-size: 2rem;
    text-align: left;
}

.menu-line {
    display: flex;
    justify-content: space-between;
    align-items: baseline;
    padding: 15px 0;
    border-bottom: 1px dashed rgba(197, 162, 101, 0.3);
}

.item-name {
    font-weight: 500;
    font-size: 1.1rem;
    color: var(--cream);
    letter-spacing: 0.5px;
}

.item-price {
    font-weight: 600;
    color: var(--warm-gold);
    font-size: 1.1rem;
    padding-left: 20px;
    white-space: nowrap;
}

/* --- Events Slider Layout --- */
.events-controls {
    display: flex;
    justify-content: center;
    gap: 20px;
    margin-bottom: 50px;
}

.event-tab-btn {
    background: transparent;
    color: var(--cream);
    border: 1px solid var(--warm-gold);
    padding: 12px 30px;
    border-radius: 4px;
    font-family: 'Playfair Display', serif;
    font-size: 1.1rem;
    cursor: pointer;
    transition: all 0.3s ease;
    text-transform: uppercase;
    letter-spacing: 2px;
}

.event-tab-btn.active, .event-tab-btn:hover {
    background: var(--warm-gold);
    color: var(--black);
}

.event-slider-container {
    display: none;
    width: 100vw;
    position: relative;
    left: 50%;
    right: 50%;
    margin-left: -50vw;
    margin-right: -50vw;
    padding: 20px 0;
    overflow-x: auto;
    scroll-snap-type: x mandatory;
    scroll-padding: 0 5vw;
    -webkit-overflow-scrolling: touch;
}

.event-slider-container.active {
    display: flex;
}

.event-slider-container::-webkit-scrollbar {
    display: none;
}
.event-slider-container {
    -ms-overflow-style: none;
    scrollbar-width: none;
}

.events-wrapper {
    display: flex;
    gap: 30px;
    padding: 0 5vw;
}

.event-card {
    scroll-snap-align: center;
    flex: 0 0 85vw; /* Mobile optimized width */
    max-width: 400px;
    background: rgba(54, 39, 29, 0.8);
    border: 1px solid rgba(197, 162, 101, 0.3);
    border-radius: 8px;
    padding: 30px;
    display: flex;
    flex-direction: column;
    justify-content: flex-start;
    transition: transform 0.3s ease;
}

.event-card:hover {
    transform: translateY(-5px);
    border-color: var(--warm-gold);
}

.event-card img {
    width: 100%;
    height: 220px;
    object-fit: cover;
    border-radius: 4px;
    margin-bottom: 20px;
}

.event-card h3 {
    font-family: 'Playfair Display', serif;
    font-size: 1.5rem;
    margin-bottom: 10px;
    color: var(--warm-gold);
}

.event-card p {
    font-size: 0.95rem;
    color: var(--cream);
    opacity: 0.9;
    margin-bottom: 15px;
    text-align: left;
    max-width: 100%;
}

.event-date {
    display: block;
    font-size: 0.8rem;
    font-weight: 600;
    text-transform: uppercase;
    letter-spacing: 1px;
    color: var(--tan);
    margin-bottom: 15px;
}

@media (min-width: 768px) {
    .event-card {
        flex: 0 0 400px;
    }
}

/* --- WhatsApp Float Button --- */
.whatsapp-float {
    position: fixed;
    bottom: 40px;
    right: 40px;
    background-color: #25D366;
    color: white;
    padding: 18px 35px;
    border-radius: 50px;
    text-decoration: none;
    font-weight: 600;
    font-size: 0.95rem;
    box-shadow: 0px 8px 24px rgba(37, 211, 102, 0.4);
    transition: all 0.3s ease;
    z-index: 999;
    display: flex;
    align-items: center;
    gap: 10px;
}

.whatsapp-float:hover {
    transform: translateY(-5px);
    box-shadow: 0px 12px 32px rgba(37, 211, 102, 0.6);
}

/* --- Footer --- */
footer {
    background: var(--deep-espresso);
    text-align: center;
    padding: 60px 30px;
    border-top: 1px solid rgba(197, 162, 101, 0.2);
}

footer p {
    color: var(--cream);
    opacity: 0.8;
    font-size: 0.95rem;
    margin-bottom: 10px;
}

.footer-address {
    font-weight: 500;
    letter-spacing: 0.5px;
}

.footer-timings {
    color: var(--tan);
    font-weight: 600;
    margin-top: 15px;
}

/* --- Mobile Responsive --- */
@media (max-width: 768px) {
    nav {
        padding: 10px 20px;
    }

    .logo {
        gap: 0;
        align-items: flex-start;
    }

    .logo-social {
        font-size: 0.82rem;
        letter-spacing: 1.8px;
    }

    .logo-lobby {
        font-size: 1.28rem;
        margin-top: -8px;
        margin-left: 23px;
    }

    .nav-links {
        gap: 15px;
    }

    .nav-links a {
        font-size: 0.75rem;
        padding: 6px 12px;
    }

    .hero {
        padding-bottom: 60px;
        /* Mobile specific portrait image */
        background-image: linear-gradient(to bottom, rgba(0,0,0,0) 0%, rgba(30,22,17,0.4) 60%, #1E1611 100%), 
                          url('images/hero-mobile.jpg'); /* Place your Phone photo here */
        background-attachment: scroll; /* Better performance on mobile */
    }

    .hero-title {
        font-size: 3rem; /* Adjusted for mobile screens */
        letter-spacing: 4px;
        padding: 0 10px;
        align-items: flex-start;
    }
    
    .hero-social {
        letter-spacing: 6px;
    }

    .hero-lobby {
        margin-top: -15px;
        margin-left: 30%;
    }

    .section {
        padding: 80px 20px;
    }

    h2 {
        font-size: 2rem;
    }

    p {
        font-size: 1rem;
        padding: 0 10px;
    }

    .menu-line {
        flex-direction: column;
        align-items: flex-start;
        gap: 5px;
    }

    .item-price {
        padding-left: 0;
    }

    .team-grid {
        grid-template-columns: 1fr;
        gap: 20px;
    }

    .whatsapp-float {
        bottom: 20px;
        right: 20px;
        padding: 14px 24px;
        font-size: 0.85rem;
    }
}