/* =========================================
   Design System & Variables
   ========================================= */
:root {
    /* Colors - Coffee Inspired Premium Theme */
    --clr-bg-light: #F9F7F3;
    --clr-bg-dark: #1E1A17;
    --clr-primary: #D39D5B; /* Golden Caramel */
    --clr-primary-hover: #C28C4B;
    --clr-text-main: #332B25;
    --clr-text-muted: #6B625B;
    --clr-white: #FFFFFF;
    
    /* Typography */
    --font-heading: 'Outfit', sans-serif;
    --font-body: 'Inter', sans-serif;
    
    /* Transitions & Shadows */
    --transition: all 0.3s cubic-bezier(0.25, 0.8, 0.25, 1);
    --shadow-sm: 0 4px 6px rgba(0,0,0,0.05);
    --shadow-md: 0 10px 30px rgba(0,0,0,0.08);
}

/* =========================================
   Reset & Base Styles
   ========================================= */
* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

html {
    scroll-behavior: smooth;
}

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

h1, h2, h3, h4 {
    font-family: var(--font-heading);
    font-weight: 700;
    line-height: 1.2;
}

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

.container {
    width: 90%;
    max-width: 1200px;
    margin: 0 auto;
}

.section {
    padding: 100px 0;
}

.text-center { text-align: center; }
.mt-4 { margin-top: 2rem; }

/* =========================================
   Buttons
   ========================================= */
.btn {
    display: inline-block;
    padding: 14px 28px;
    border-radius: 50px;
    font-family: var(--font-heading);
    font-weight: 600;
    font-size: 1rem;
    cursor: pointer;
    transition: var(--transition);
    border: 2px solid transparent;
}

.btn-primary {
    background-color: var(--clr-primary);
    color: var(--clr-white);
}

.btn-primary:hover {
    background-color: var(--clr-primary-hover);
    transform: translateY(-2px);
    box-shadow: 0 10px 20px rgba(211, 157, 91, 0.3);
}

.btn-secondary {
    background-color: transparent;
    color: var(--clr-white);
    border-color: var(--clr-white);
}

.btn-secondary:hover {
    background-color: var(--clr-white);
    color: var(--clr-bg-dark);
}

/* =========================================
   Navigation
   ========================================= */
.navbar {
    position: fixed;
    top: 0;
    width: 100%;
    padding: 20px 0;
    z-index: 1000;
    transition: var(--transition);
}

.navbar.scrolled {
    background-color: rgba(255, 255, 255, 0.95);
    backdrop-filter: blur(10px);
    padding: 15px 0;
    box-shadow: var(--shadow-sm);
}

.nav-container {
    display: flex;
    justify-content: space-between;
    align-items: center;
}

.logo {
    font-family: var(--font-heading);
    font-size: 1.8rem;
    font-weight: 800;
    color: var(--clr-white);
    transition: var(--transition);
}

.logo span {
    color: var(--clr-primary);
}

.navbar.scrolled .logo {
    color: var(--clr-bg-dark);
}

.nav-links {
    display: flex;
    gap: 2rem;
}

.nav-links a {
    font-weight: 500;
    color: var(--clr-white);
    position: relative;
}

.navbar.scrolled .nav-links a {
    color: var(--clr-text-main);
}

.nav-links a::after {
    content: '';
    position: absolute;
    width: 0;
    height: 2px;
    bottom: -5px;
    left: 0;
    background-color: var(--clr-primary);
    transition: var(--transition);
}

.nav-links a:hover::after {
    width: 100%;
}

.hamburger {
    display: none;
    font-size: 1.5rem;
    color: var(--clr-white);
    cursor: pointer;
}

.navbar.scrolled .hamburger {
    color: var(--clr-bg-dark);
}

/* Mobile Menu */
.mobile-menu {
    position: fixed;
    top: 0;
    right: -100%;
    width: 80%;
    max-width: 400px;
    height: 100vh;
    background-color: var(--clr-bg-light);
    box-shadow: -5px 0 20px rgba(0,0,0,0.1);
    z-index: 999;
    padding: 100px 40px;
    display: flex;
    flex-direction: column;
    gap: 2rem;
    transition: 0.4s ease-in-out;
}

.mobile-menu.active {
    right: 0;
}

.mobile-menu a {
    font-family: var(--font-heading);
    font-size: 1.5rem;
    font-weight: 600;
    color: var(--clr-bg-dark);
}

.mobile-menu .btn {
    text-align: center;
    margin-top: 1rem;
}

/* =========================================
   Hero Section
   ========================================= */
.hero {
    height: 100vh;
    min-height: 600px;
    background-image: url('../assets/images/hero_bg.png');
    background-size: cover;
    background-position: center;
    background-attachment: fixed;
    position: relative;
    display: flex;
    align-items: center;
}

.hero-overlay {
    position: absolute;
    inset: 0;
    background: linear-gradient(to right, rgba(15, 12, 10, 0.9) 0%, rgba(30, 26, 23, 0.4) 100%);
}

.hero-content {
    position: relative;
    z-index: 1;
    color: var(--clr-white);
    max-width: 650px;
}

.badge {
    display: inline-block;
    padding: 6px 16px;
    background: rgba(255, 255, 255, 0.1);
    backdrop-filter: blur(5px);
    border: 1px solid rgba(255,255,255,0.2);
    border-radius: 50px;
    font-size: 0.9rem;
    font-weight: 500;
    margin-bottom: 20px;
    letter-spacing: 1px;
    text-transform: uppercase;
}

.hero h1 {
    font-size: clamp(3rem, 5vw, 5rem);
    margin-bottom: 20px;
}

.highlight {
    color: var(--clr-primary);
}

.hero p {
    font-size: 1.1rem;
    color: rgba(255, 255, 255, 0.8);
    margin-bottom: 40px;
    max-width: 500px;
}

.hero-actions {
    display: flex;
    gap: 15px;
}

/* =========================================
   About Section
   ========================================= */
.about-container {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 60px;
    align-items: center;
}

.about-text h2 {
    font-size: 2.5rem;
    margin-bottom: 25px;
    color: var(--clr-bg-dark);
}

.about-text p {
    margin-bottom: 20px;
    color: var(--clr-text-muted);
    font-size: 1.1rem;
}

.image-frame {
    position: relative;
    border-radius: 20px;
    overflow: hidden;
    box-shadow: var(--shadow-md);
}

.image-frame img {
    width: 100%;
    height: auto;
    display: block;
    transition: transform 0.7s ease;
}

.image-frame:hover img {
    transform: scale(1.05);
}

/* =========================================
   Menu Section
   ========================================= */
.dark-section {
    background-color: var(--clr-bg-dark);
    color: var(--clr-white);
}

.dark-section h2 {
    font-size: 2.5rem;
    margin-bottom: 15px;
}

.dark-section p {
    color: rgba(255, 255, 255, 0.7);
    margin-bottom: 50px;
}

.menu-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
    gap: 30px;
}

.menu-card {
    background: rgba(255, 255, 255, 0.03);
    border: 1px solid rgba(255, 255, 255, 0.05);
    padding: 40px 30px;
    border-radius: 20px;
    text-align: center;
    transition: var(--transition);
    backdrop-filter: blur(10px);
}

.menu-card:hover {
    transform: translateY(-10px);
    background: rgba(255, 255, 255, 0.06);
    border-color: var(--clr-primary);
}

.card-icon {
    font-size: 2.5rem;
    color: var(--clr-primary);
    margin-bottom: 20px;
}

.menu-card h3 {
    margin-bottom: 15px;
    font-size: 1.3rem;
}

.menu-card p {
    font-size: 0.95rem;
    margin-bottom: 0;
}

/* =========================================
   Locations Section
   ========================================= */
.locations .section-header h2 {
    font-size: 2.5rem;
    color: var(--clr-bg-dark);
}

.location-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: 30px;
    max-width: 800px;
    margin: 40px auto 0;
}

.location-card {
    background-color: var(--clr-white);
    padding: 40px;
    border-radius: 20px;
    text-align: center;
    box-shadow: var(--shadow-sm);
    border-bottom: 4px solid var(--clr-primary);
    transition: var(--transition);
}

.location-card:hover {
    transform: translateY(-5px);
    box-shadow: var(--shadow-md);
}

.location-icon {
    font-size: 2.5rem;
    color: var(--clr-primary);
    margin-bottom: 20px;
}

.location-card h3 {
    font-size: 1.4rem;
    margin-bottom: 10px;
}

.location-card p {
    color: var(--clr-text-muted);
}

.hours {
    margin-top: 15px;
    font-weight: 600;
    color: var(--clr-bg-dark);
}

/* =========================================
   Footer
   ========================================= */
.footer {
    background-color: #110e0c;
    color: var(--clr-white);
    padding: 60px 0 20px;
}

.footer-content {
    display: flex;
    justify-content: space-between;
    flex-wrap: wrap;
    gap: 40px;
    margin-bottom: 40px;
    border-bottom: 1px solid rgba(255,255,255,0.1);
    padding-bottom: 40px;
}

.footer-brand h2 {
    font-size: 2rem;
    margin-bottom: 10px;
}

.footer-brand span {
    color: var(--clr-primary);
}

.footer-brand p {
    color: rgba(255,255,255,0.6);
}

.footer-social h4 {
    margin-bottom: 15px;
}

.social-icons {
    display: flex;
    gap: 15px;
}

.social-icons a {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    width: 40px;
    height: 40px;
    border-radius: 50%;
    background: rgba(255,255,255,0.1);
    color: var(--clr-white);
}

.social-icons a:hover {
    background: var(--clr-primary);
    transform: translateY(-3px);
}

.footer-bottom {
    text-align: center;
    color: rgba(255,255,255,0.4);
    font-size: 0.9rem;
}

.small-text a {
    color: rgba(255,255,255,0.3);
    text-decoration: underline;
    font-size: 0.8rem;
}

/* =========================================
   Live Entertainment Section
   ========================================= */
.entertainment {
    position: relative;
    background-image: url('../assets/images/live_music_bg.png');
    background-size: cover;
    background-position: center;
    background-attachment: fixed;
    color: var(--clr-white);
    overflow: hidden;
}

.ent-overlay {
    position: absolute;
    inset: 0;
    background: linear-gradient(to bottom, rgba(15,10,5,0.88) 0%, rgba(30,20,10,0.82) 100%);
}

.ent-container {
    position: relative;
    z-index: 1;
}

.entertainment .section-header h2 {
    font-size: 2.8rem;
    color: var(--clr-white);
    margin: 15px 0;
}

.entertainment .section-header p {
    color: rgba(255,255,255,0.75);
    max-width: 600px;
    margin: 0 auto 50px;
}

.badge-dark {
    display: inline-block;
    padding: 8px 20px;
    background: var(--clr-primary);
    color: #1a1008;
    border-radius: 50px;
    font-family: var(--font-heading);
    font-weight: 700;
    font-size: 0.95rem;
    letter-spacing: 1px;
    text-transform: uppercase;
    margin-bottom: 10px;
}

/* Poster Carousel */
.poster-carousel {
    position: relative;
    max-width: 420px;
    margin: 0 auto 50px;
    overflow: hidden;
    border-radius: 20px;
    box-shadow: 0 20px 60px rgba(0,0,0,0.6), 0 0 0 1px rgba(211,157,91,0.2);
}

.poster-track {
    display: flex;
    transition: transform 0.5s cubic-bezier(0.25, 0.8, 0.25, 1);
}

.poster-slide {
    min-width: 100%;
}

.poster-slide img {
    width: 100%;
    height: auto;
    display: block;
    border-radius: 20px;
}

.carousel-dots {
    position: absolute;
    bottom: 15px;
    left: 50%;
    transform: translateX(-50%);
    display: flex;
    gap: 8px;
    z-index: 5;
}

.dot {
    width: 10px;
    height: 10px;
    border-radius: 50%;
    background: rgba(255,255,255,0.4);
    cursor: pointer;
    transition: var(--transition);
}

.dot.active {
    background: var(--clr-primary);
    transform: scale(1.3);
}

.carousel-btn {
    position: absolute;
    top: 50%;
    transform: translateY(-50%);
    background: rgba(0,0,0,0.5);
    backdrop-filter: blur(5px);
    border: 1px solid rgba(255,255,255,0.15);
    color: var(--clr-white);
    border-radius: 50%;
    width: 44px;
    height: 44px;
    cursor: pointer;
    font-size: 1rem;
    transition: var(--transition);
    z-index: 5;
    display: flex;
    align-items: center;
    justify-content: center;
}

.carousel-btn:hover {
    background: var(--clr-primary);
    border-color: var(--clr-primary);
}

.prev-btn { left: 12px; }
.next-btn { right: 12px; }

.ent-tags {
    display: flex;
    justify-content: center;
    flex-wrap: wrap;
    gap: 12px;
    margin-bottom: 20px;
}

.ent-tag {
    padding: 8px 18px;
    background: rgba(211,157,91,0.12);
    border: 1px solid rgba(211,157,91,0.3);
    color: var(--clr-primary);
    border-radius: 50px;
    font-size: 0.9rem;
    font-weight: 500;
    display: flex;
    align-items: center;
    gap: 6px;
}

.ent-cta-text {
    color: rgba(255,255,255,0.6);
    font-size: 0.95rem;
}

/* =========================================
   Facebook CTA Section
   ========================================= */
.fb-cta {
    background-color: var(--clr-bg-light);
    padding: 80px 0;
}

.fb-cta-icon {
    width: 80px;
    height: 80px;
    background: #1877F2;
    color: white;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 2rem;
    margin: 0 auto 25px;
    box-shadow: 0 10px 30px rgba(24,119,242,0.3);
}

.fb-cta h2 {
    font-size: 2.2rem;
    color: var(--clr-bg-dark);
    margin-bottom: 15px;
}

.fb-cta p {
    color: var(--clr-text-muted);
    max-width: 500px;
    margin: 0 auto 30px;
}

.btn-fb {
    background-color: #1877F2;
    color: white;
    font-size: 1rem;
    gap: 10px;
    display: inline-flex;
    align-items: center;
}

.btn-fb i { margin-right: 8px; }

.btn-fb:hover {
    background-color: #1461cc;
    transform: translateY(-3px);
    box-shadow: 0 10px 25px rgba(24,119,242,0.35);
}

/* =========================================
   Animations & Responsive
   ========================================= */
.fade-in {
    opacity: 0;
    transform: translateY(30px);
    transition: opacity 0.8s ease, transform 0.8s ease;
}

.fade-in.appear {
    opacity: 1;
    transform: translateY(0);
}

@media (max-width: 900px) {
    .about-container {
        grid-template-columns: 1fr;
    }
    
    .about-text {
        text-align: center;
    }
}

@media (max-width: 768px) {
    .nav-links, .nav-btn {
        display: none;
    }
    
    .hamburger {
        display: block;
    }
    
    .hero h1 {
        font-size: 2.5rem;
    }
    
    .hero-actions {
        flex-direction: column;
    }
}
