@charset "UTF-8";

/* Using Caveat (Benedict-style handwriting) via Google Fonts */
/* Font loaded via Google Fonts CDN */

/* Elite Lounge - Main Styles */

/* CSS Variables for consistent theming */
:root {
    /* Sophisticated Black & White Color Palette */
    --primary-white: #FFFFFF;
    --secondary-white: #F8F8F8;
    --accent-white: #E5E5E5;
    --light-gray: #CCCCCC;
    --medium-gray: #999999;
    --dark-gray: #666666;
    
    /* Background Colors */
    --dark-bg: #000000;
    --darker-bg: #0A0A0A;
    --card-bg: #1A1A1A;
    --glass-bg: rgba(26, 26, 26, 0.8);
    --overlay-bg: rgba(0, 0, 0, 0.85);
    
    /* Text Colors */
    --light-text: #FFFFFF;
    --gray-text: #CCCCCC;
    --muted-text: #999999;
    --dark-text: #000000;
    
    /* Accent Colors */
    --border-color: #333333;
    --border-white: rgba(255, 255, 255, 0.2);
    --hover-white: #F0F0F0;
    --error-color: #FF4444;
    --success-color: #00CC66;
    
    /* Typography */
    --font-primary: 'Caveat', cursive;
    --font-secondary: 'Caveat', cursive;
    --font-accent: 'Caveat', cursive;
    --font-readable: 'Caveat', cursive;
    --font-elegant: 'Caveat', cursive;
    --font-handwriting: 'Caveat', cursive;
    --font-size-h1: clamp(3rem, 6vw, 5.5rem);
    --font-size-h2: clamp(2.5rem, 5vw, 4rem);
    --font-size-h3: clamp(2rem, 4vw, 3rem);
    --font-size-h4: clamp(1.5rem, 3vw, 2rem);
    --font-size-h5: clamp(1.25rem, 2.5vw, 1.75rem);
    --font-size-body: clamp(1rem, 1.8vw, 1.2rem);
    --font-size-small: clamp(0.875rem, 1.5vw, 1rem);
    
    /* Spacing */
    --section-padding: clamp(5rem, 12vw, 10rem);
    --container-padding: clamp(1.5rem, 6vw, 3rem);
    --element-spacing: clamp(1rem, 3vw, 2rem);
    
    /* Sophisticated Effects */
    --box-shadow-light: 0 8px 32px rgba(255, 255, 255, 0.1);
    --box-shadow-medium: 0 16px 64px rgba(255, 255, 255, 0.15);
    --box-shadow-heavy: 0 24px 96px rgba(255, 255, 255, 0.2);
    --text-shadow: 2px 2px 8px rgba(0, 0, 0, 0.8);
    --text-shadow-white: 0 0 20px rgba(255, 255, 255, 0.3);
    --transition: all 0.4s cubic-bezier(0.25, 0.46, 0.45, 0.94);
    --transition-fast: all 0.2s ease;
    --border-radius: 0px;
    --border-radius-large: 0px;
    --border-radius-round: 0px;
}

/* Reset and Base Styles */
* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

html {
    scroll-behavior: smooth;
    font-size: 16px;
}

body {
    font-family: 'Caveat', cursive !important;
    background: linear-gradient(135deg, 
        var(--darker-bg) 0%, 
        var(--dark-bg) 50%, 
        rgba(11, 11, 11, 0.95) 100%);
    color: var(--light-text);
    line-height: 1.8;
    overflow-x: hidden;
    font-weight: 400;
    letter-spacing: 0.3px;
    font-size: 16px;
}

/* Container */
.container {
    max-width: 1400px;
    margin: 0 auto;
    padding: 0 var(--container-padding);
}

/* Typography */
h1, h2, h3, h4, h5, h6 {
    font-family: 'Caveat', cursive !important;
    font-weight: 400;
    line-height: 1.4;
    margin-bottom: 1.5rem;
    letter-spacing: 0.3px;
    text-shadow: var(--text-shadow);
}

h1 { 
    font-size: var(--font-size-h1); 
    font-weight: 400;
    letter-spacing: 0.5px;
    font-family: 'Caveat', cursive !important;
}
h2 { 
    font-size: var(--font-size-h2);
    font-weight: 400;
    font-family: 'Caveat', cursive !important;
}
h3 { 
    font-size: var(--font-size-h3);
    font-weight: 400;
    font-family: 'Caveat', cursive !important;
}
h4 { 
    font-size: var(--font-size-h4);
    font-weight: 400;
}
h5 { 
    font-size: var(--font-size-h5);
    font-weight: 400;
}

p {
    font-size: var(--font-size-body);
    color: var(--gray-text);
    margin-bottom: 1.5rem;
    line-height: 1.8;
    font-weight: 400;
    font-family: 'Caveat', cursive !important;
}

.text-accent {
    font-family: 'Caveat', cursive !important;
    font-style: normal;
    color: var(--primary-gold);
    font-size: 1.3em;
    text-shadow: 1px 1px 2px rgba(0, 0, 0, 0.3);
}

.text-luxury {
    background: linear-gradient(135deg, var(--primary-gold), var(--secondary-gold));
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
    text-shadow: none;
}

/* Logo-Matching Script Fonts */
.handwriting {
    font-family: 'Caveat', cursive !important;
    font-style: normal;
    letter-spacing: 0.5px;
}

.handwriting-large {
    font-family: 'Caveat', cursive !important;
    font-size: 1.8em;
    font-style: normal;
    letter-spacing: 0.3px;
    line-height: 1.3;
}

.handwriting-accent {
    font-family: 'Caveat', cursive !important;
    color: var(--primary-gold);
    font-size: 1.5em;
    font-style: normal;
    text-shadow: 2px 2px 4px rgba(0, 0, 0, 0.4);
}

.script-elegant {
    font-family: 'Caveat', cursive !important;
    font-size: 1.4em;
    color: var(--primary-gold);
    text-shadow: 1px 1px 3px rgba(0, 0, 0, 0.3);
}

.script-dancing {
    font-family: 'Caveat', cursive !important;
    font-size: 1.2em;
    font-weight: 500;
}

.text-shadow-gold {
    text-shadow: var(--text-shadow-gold);
}

/* Links */
a {
    text-decoration: none;
    color: inherit;
    transition: var(--transition);
}

/* Buttons */
.btn {
    display: inline-flex;
    align-items: center;
    gap: 0.75rem;
    padding: 1.25rem 2.5rem;
    border: none;
    border-radius: 12px;
    font-family: 'Caveat', cursive !important;
    font-size: 1rem;
    font-weight: 400;
    cursor: pointer;
    transition: all 0.3s cubic-bezier(0.4, 0, 0.2, 1);
    text-transform: uppercase;
    letter-spacing: 1px;
    position: relative;
    overflow: hidden;
    text-decoration: none;
    min-width: 200px;
    justify-content: center;
    text-shadow: none;
    backdrop-filter: blur(10px);
}

.btn:before {
    content: '';
    position: absolute;
    top: 0;
    left: -100%;
    width: 100%;
    height: 100%;
    background: linear-gradient(90deg, 
        transparent, 
        rgba(255, 255, 255, 0.2), 
        transparent);
    transition: left 0.8s ease;
    z-index: 1;
}

.btn:hover:before {
    left: 100%;
}

.btn i {
    z-index: 2;
    position: relative;
}

.btn span {
    z-index: 2;
    position: relative;
}

.btn-primary {
    background: linear-gradient(135deg, 
        var(--primary-black) 0%, 
        var(--secondary-black) 50%, 
        var(--primary-black) 100%);
    color: var(--primary-white);
    box-shadow: 0 8px 32px rgba(0, 0, 0, 0.3);
    border: 2px solid var(--primary-white);
    background-size: 200% 200%;
    animation: gradient-shift 4s ease infinite;
    border-radius: 12px;
    font-weight: 600;
    text-transform: uppercase;
    letter-spacing: 1px;
    transition: all 0.3s ease;
}

.btn-primary:hover {
    background: linear-gradient(135deg, 
        var(--medium-gray) 0%, 
        var(--light-gray) 50%, 
        var(--medium-gray) 100%);
    color: var(--dark-text);
    transform: translateY(-4px) scale(1.02);
    box-shadow: 0 15px 45px rgba(204, 204, 204, 0.4);
    border-color: var(--light-gray);
    animation-play-state: paused;
}

.btn-secondary {
    background: transparent;
    color: var(--primary-white);
    border: 2px solid var(--primary-white);
    border-radius: 12px;
    font-weight: 600;
    text-transform: uppercase;
    letter-spacing: 1px;
    backdrop-filter: blur(10px);
    transition: all 0.3s ease;
    position: relative;
    overflow: hidden;
}

.btn-secondary:hover {
    background: var(--light-gray);
    color: var(--dark-text);
    transform: translateY(-4px) scale(1.02);
    box-shadow: 0 15px 45px rgba(204, 204, 204, 0.4);
    border-color: var(--light-gray);
}

.btn-luxury {
    background: linear-gradient(135deg, 
        var(--burgundy) 0%, 
        var(--deep-burgundy) 50%, 
        var(--burgundy) 100%);
    color: var(--light-text);
    box-shadow: var(--box-shadow-medium);
    border: 2px solid var(--rose-gold);
}

.btn-luxury:hover {
    transform: translateY(-4px) scale(1.02);
    box-shadow: var(--box-shadow-heavy);
    background: linear-gradient(135deg, 
        var(--deep-burgundy) 0%, 
        var(--burgundy) 50%, 
        var(--deep-burgundy) 100%);
}

@keyframes gradient-shift {
    0%, 100% { 
        background-position: 0% 50%;
    }
    50% { 
        background-position: 100% 50%;
    }
}

/* Loading Screen */
#loading-screen {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: var(--darker-bg);
    display: flex;
    align-items: center;
    justify-content: center;
    z-index: 10000;
    transition: opacity 0.5s ease;
}

.loading-content {
    text-align: center;
}

.logo-loader {
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 2rem;
}

.logo-loader .loader-logo-image {
    height: 100px;
    width: auto;
    object-fit: contain;
    filter: brightness(1.2) contrast(1.1);
    animation: logoGlow 2s ease-in-out infinite alternate;
    max-width: 250px;
}

@keyframes logoGlow {
    0% { filter: brightness(1.2) contrast(1.1) drop-shadow(0 0 10px rgba(255, 255, 255, 0.3)); }
    100% { filter: brightness(1.4) contrast(1.2) drop-shadow(0 0 20px rgba(255, 255, 255, 0.5)); }
}

.loading-bar {
    width: 200px;
    height: 3px;
    background: var(--border-color);
    border-radius: 2px;
    overflow: hidden;
    position: relative;
}

.loading-bar:before {
    content: '';
    position: absolute;
    top: 0;
    left: -100%;
    width: 100%;
    height: 100%;
    background: linear-gradient(90deg, var(--primary-gold), var(--accent-gold));
    animation: loading 2s infinite;
}

@keyframes loading {
    0% { left: -100%; }
    100% { left: 100%; }
}

/* Navigation */
.navbar {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    background: rgba(0, 0, 0, 0.85);
    backdrop-filter: blur(20px) saturate(180%);
    -webkit-backdrop-filter: blur(20px) saturate(180%);
    z-index: 1000;
    transition: var(--transition);
    border-bottom: 1px solid var(--border-white);
    box-shadow: 0 8px 32px rgba(0, 0, 0, 0.4);
}

.navbar.scrolled {
    background: rgba(0, 0, 0, 0.95);
    backdrop-filter: blur(25px) saturate(200%);
    box-shadow: var(--box-shadow-medium);
    border-bottom-color: var(--primary-white);
}

.nav-container {
    display: flex;
    align-items: center;
    justify-content: space-between;
    padding: 1.25rem var(--container-padding);
    max-width: 1400px;
    margin: 0 auto;
}

.nav-logo {
    display: flex;
    align-items: center;
    flex-shrink: 0;
}

.nav-logo .logo-image {
    height: 50px;
    width: auto;
    object-fit: contain;
    filter: brightness(1.1) contrast(1.05);
    transition: all 0.3s ease;
    max-width: 200px;
}

.nav-logo:hover .logo-image {
    filter: brightness(1.2) contrast(1.2);
    transform: scale(1.05);
}

.nav-menu {
    display: flex;
    align-items: center;
    gap: 2.5rem;
}

.nav-link {
    font-family: 'Caveat', cursive !important;
    font-weight: 500;
    color: var(--light-text);
    transition: var(--transition);
    position: relative;
    padding: 0.75rem 0;
    font-size: 1rem;
    letter-spacing: 0.5px;
    text-transform: uppercase;
    font-size: 0.9rem;
}

.nav-link:before {
    content: '';
    position: absolute;
    bottom: 0;
    left: 50%;
    width: 0;
    height: 2px;
    background: linear-gradient(90deg, var(--primary-white), var(--secondary-white));
    transition: var(--transition);
    transform: translateX(-50%);
}

.nav-link:after {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: linear-gradient(135deg, 
        rgba(255, 255, 255, 0.1), 
        rgba(255, 255, 255, 0.05));
    border-radius: var(--border-radius);
    opacity: 0;
    transition: var(--transition-fast);
    z-index: -1;
}

.nav-link:hover:before,
.nav-link.active:before {
    width: 100%;
}

.nav-link:hover:after {
    opacity: 1;
}

.nav-link:hover {
    color: var(--primary-white);
    text-shadow: var(--text-shadow-white);
    transform: translateY(-1px);
}

.nav-link.whatsapp-btn {
    background: #25D366;
    color: white;
    padding: 0.75rem 1.5rem;
    border-radius: 50px;
    font-weight: 500;
    font-size: 0.9rem;
    letter-spacing: 0.3px;
    box-shadow: 0 4px 12px rgba(37, 211, 102, 0.3);
    position: relative;
    overflow: hidden;
    display: flex;
    align-items: center;
    gap: 0.5rem;
    transition: all 0.3s cubic-bezier(0.4, 0, 0.2, 1);
    backdrop-filter: blur(10px);
    border: 1px solid rgba(255, 255, 255, 0.1);
}

.nav-link.whatsapp-btn:before,
.nav-link.whatsapp-btn:after {
    display: none;
}

.nav-link.whatsapp-btn:hover {
    transform: translateY(-2px) scale(1.02);
    box-shadow: 0 8px 20px rgba(37, 211, 102, 0.4);
    background: #1fb85a;
    border-color: rgba(255, 255, 255, 0.2);
}

.nav-link.whatsapp-btn i {
    font-size: 1.1rem;
    transition: transform 0.3s ease;
}

.nav-link.whatsapp-btn:hover i {
    transform: rotate(5deg) scale(1.1);
}

/* Logout Button Styles */
.logout-btn {
    background: linear-gradient(135deg, #e74c3c, #c0392b) !important;
    color: var(--primary-white) !important;
    padding: 0.7rem !important;
    border-radius: var(--border-radius) !important;
    transition: var(--transition) !important;
    font-weight: 500;
    display: flex;
    align-items: center;
    width: 40px;
    height: 40px;
    justify-content: center;
}

.logout-btn:hover {
    background: linear-gradient(135deg, #c0392b, #a93226) !important;
    transform: translateY(-2px);
    box-shadow: var(--box-shadow-light);
}

.nav-toggle {
    display: none;
    flex-direction: column;
    cursor: pointer;
    gap: 6px;
    padding: 0.5rem;
    border-radius: var(--border-radius);
    transition: var(--transition-fast);
}

.nav-toggle:hover {
    background: rgba(255, 255, 255, 0.1);
}

.nav-toggle span {
    width: 28px;
    height: 3px;
    background: var(--primary-white);
    transition: var(--transition);
    border-radius: 2px;
    box-shadow: 0 0 8px rgba(255, 255, 255, 0.3);
}

/* Hero Section */
.hero {
    position: relative;
    height: 100vh;
    display: flex;
    align-items: center;
    justify-content: center;
    overflow: hidden;
    background: linear-gradient(135deg, 
        var(--darker-bg) 0%, 
        var(--dark-bg) 50%, 
        rgba(7, 7, 7, 0.95) 100%);
}

.hero-background {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    z-index: -2;
    background: linear-gradient(135deg, 
        #0a0a0a 0%, 
        #1a1a1a 25%, 
        #2d2d2d 50%, 
        #1a1a1a 75%, 
        #0a0a0a 100%);
}


.hero-overlay {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: linear-gradient(135deg, 
        rgba(0, 0, 0, 0.4) 0%, 
        rgba(10, 10, 10, 0.3) 25%, 
        rgba(20, 20, 20, 0.2) 50%, 
        rgba(10, 10, 10, 0.3) 75%, 
        rgba(0, 0, 0, 0.4) 100%);
    z-index: 0;
}



.hero-content {
    text-align: center;
    z-index: 10;
    max-width: 900px;
    padding: 0 var(--container-padding);
    position: relative;
}

.hero-content::before {
    content: '';
    position: absolute;
    top: -2rem;
    left: 50%;
    transform: translateX(-50%);
    width: 100px;
    height: 2px;
    background: linear-gradient(90deg, transparent, var(--primary-white), transparent);
}

.hero-title {
    font-family: 'Caveat', cursive !important;
    font-size: var(--font-size-h1);
    font-weight: 400;
    margin-bottom: 2rem;
    text-shadow: var(--text-shadow-white);
    letter-spacing: -0.02em;
    position: relative;
}

.title-line {
    display: block;
    background: linear-gradient(135deg, 
        var(--primary-white) 0%, 
        var(--secondary-white) 50%, 
        var(--primary-white) 100%);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
    animation: shimmer 4s ease-in-out infinite;
    position: relative;
}

.title-line::after {
    content: '';
    position: absolute;
    top: 0;
    left: -10%;
    width: 120%;
    height: 100%;
    background: linear-gradient(90deg, 
        transparent 0%, 
        rgba(255, 255, 255, 0.1) 50%, 
        transparent 100%);
    animation: shine 3s ease-in-out infinite;
    pointer-events: none;
}

@keyframes shimmer {
    0%, 100% { 
        background-position: 0% 50%;
        filter: brightness(1);
    }
    50% { 
        background-position: 100% 50%;
        filter: brightness(1.2);
    }
}

@keyframes shine {
    0%, 100% { 
        transform: translateX(-100%) skewX(-15deg);
        opacity: 0;
    }
    50% { 
        transform: translateX(0%) skewX(-15deg);
        opacity: 1;
    }
}

/* Hero Logo Styles */
.hero-logo {
    margin-top: 1.5rem;
    margin-bottom: 2rem;
    text-align: center;
    animation: fadeInUp 1s ease-out;
}

.hero-logo-image {
    max-width: 100%;
    height: auto;
    width: clamp(250px, 50vw, 400px);
    filter: drop-shadow(0 4px 15px rgba(0, 0, 0, 0.3));
    transition: all 0.3s ease;
}

.hero-logo-image:hover {
    transform: scale(1.05);
    filter: drop-shadow(0 6px 20px rgba(0, 0, 0, 0.4));
}

p.hero-subtitle {
    font-size: 1.5rem !important;
    color: var(--gray-text);
    margin-bottom: 3.5rem;
    font-weight: 400;
    text-shadow: var(--text-shadow);
    font-family: 'Caveat', cursive !important;
    font-style: normal;
    letter-spacing: 1px;
    line-height: 1.6;
}

.hero-buttons {
    display: flex;
    gap: 2rem;
    justify-content: center;
    flex-wrap: wrap;
    margin-bottom: 4rem;
}

.scroll-indicator {
    position: absolute;
    bottom: 3rem;
    left: 50%;
    transform: translateX(-50%);
    cursor: pointer;
    transition: var(--transition);
}

.scroll-indicator:hover {
    transform: translateX(-50%) translateY(-5px);
}

.scroll-icon {
    width: 2px;
    height: 50px;
    background: linear-gradient(180deg, var(--primary-gold), transparent);
    position: relative;
    animation: scroll 3s infinite ease-in-out;
    border-radius: 2px;
}

.scroll-icon:before {
    content: '';
    position: absolute;
    top: -8px;
    left: -8px;
    width: 18px;
    height: 18px;
    border: 2px solid var(--primary-gold);
    border-bottom: none;
    border-right: none;
    transform: rotate(45deg);
    border-radius: 2px 0 0 0;
}

.scroll-text {
    position: absolute;
    bottom: -35px;
    left: 50%;
    transform: translateX(-50%);
    font-size: 0.8rem;
    color: var(--muted-text);
    text-transform: uppercase;
    letter-spacing: 2px;
    font-weight: 500;
    white-space: nowrap;
    font-family: 'Caveat', cursive !important;
}

.scroll-text {
    position: absolute;
    bottom: -30px;
    left: 50%;
    transform: translateX(-50%);
    font-size: 0.8rem;
    color: var(--muted-text);
    text-transform: uppercase;
    letter-spacing: 2px;
    font-weight: 500;
    white-space: nowrap;
}

@keyframes scroll {
    0%, 100% { 
        opacity: 0.6; 
        transform: translateY(0);
    }
    50% { 
        opacity: 1; 
        transform: translateY(10px);
    }
}

/* Section Headers */
.section-header {
    text-align: center;
    margin-bottom: 5rem;
    position: relative;
}

.section-header::before {
    content: '';
    position: absolute;
    top: -2rem;
    left: 50%;
    transform: translateX(-50%);
    width: 60px;
    height: 60px;
    background: radial-gradient(circle, 
        rgba(201, 169, 97, 0.2) 0%, 
        transparent 70%);
    border-radius: 50%;
}

.section-title {
    font-family: 'Caveat', cursive !important;
    font-size: var(--font-size-h2);
    color: var(--light-text);
    margin-bottom: 1.5rem;
    text-shadow: var(--text-shadow-gold);
    position: relative;
    font-weight: 400;
}

.section-title::after {
    content: '';
    position: absolute;
    bottom: -10px;
    left: 50%;
    transform: translateX(-50%);
    width: 0;
    height: 2px;
    background: linear-gradient(90deg, 
        transparent, 
        var(--primary-gold), 
        transparent);
    animation: expand-line 2s ease forwards;
    animation-delay: 0.5s;
}

@keyframes expand-line {
    to { width: 100px; }
}

.section-divider {
    width: 120px;
    height: 4px;
    background: linear-gradient(90deg, 
        transparent, 
        var(--primary-gold) 20%, 
        var(--secondary-gold) 50%, 
        var(--primary-gold) 80%, 
        transparent);
    margin: 0 auto 2rem;
    border-radius: 2px;
    position: relative;
}

.section-divider::before,
.section-divider::after {
    content: '';
    position: absolute;
    top: 50%;
    width: 8px;
    height: 8px;
    background: var(--primary-gold);
    border-radius: 50%;
    transform: translateY(-50%);
    box-shadow: 0 0 10px rgba(201, 169, 97, 0.5);
}

.section-divider::before {
    left: -15px;
}

.section-divider::after {
    right: -15px;
}

.section-subtitle,
p.section-subtitle,
div.section-subtitle {
    font-size: 1.3rem !important;
    color: var(--gray-text);
    font-weight: 400;
    max-width: 700px;
    margin: 0 auto;
    font-family: 'Caveat', cursive !important;
    font-style: normal;
    line-height: 1.8;
}

/* Sections */
section {
    padding: var(--section-padding) 0;
    position: relative;
    overflow: hidden;
}

section::before {
    content: '';
    position: absolute;
    top: 0;
    left: -50%;
    width: 200%;
    height: 1px;
    background: linear-gradient(90deg, 
        transparent, 
        rgba(201, 169, 97, 0.3) 50%, 
        transparent);
}

section:nth-child(even) {
    background: linear-gradient(135deg, 
        rgba(3, 3, 3, 0.8) 0%, 
        rgba(7, 7, 7, 0.6) 50%, 
        rgba(11, 11, 11, 0.8) 100%);
}

section:nth-child(even)::after {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: url('data:image/svg+xml,<svg xmlns="http://www.w3.org/2000/svg" viewBox="0 0 100 100"><defs><pattern id="dots" width="20" height="20" patternUnits="userSpaceOnUse"><circle cx="10" cy="10" r="0.5" fill="rgba(201,169,97,0.05)"/></pattern></defs><rect width="100" height="100" fill="url(%23dots)"/></svg>');
    pointer-events: none;
    z-index: 0;
}

section:nth-child(even) .container {
    position: relative;
    z-index: 1;
}

/* About Section */
.about-content {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 5rem;
    align-items: center;
}

.about-text h3 {
    color: var(--primary-gold);
    margin-bottom: 2rem;
    font-size: var(--font-size-h3);
    text-shadow: var(--text-shadow-gold);
    position: relative;
}

.about-text h3::after {
    content: '';
    position: absolute;
    bottom: -8px;
    left: 0;
    width: 60px;
    height: 3px;
    background: linear-gradient(90deg, var(--primary-gold), var(--secondary-gold));
    border-radius: 2px;
}

.about-text p {
    margin-bottom: 2rem;
    font-size: 1.15rem;
    line-height: 2;
    color: var(--gray-text);
    font-family: 'Dekko', cursive !important;
}

.about-text .highlight {
    color: var(--primary-gold);
    font-weight: 600;
    position: relative;
}

.about-text .highlight::after {
    content: '';
    position: absolute;
    bottom: 0;
    left: 0;
    width: 100%;
    height: 1px;
    background: linear-gradient(90deg, var(--primary-gold), transparent);
}

.about-image {
    position: relative;
}

.about-venue-image {
    width: 100%;
    height: 450px;
    object-fit: cover;
    border-radius: var(--border-radius-large);
    box-shadow: var(--box-shadow-light);
    transition: var(--transition);
}

.about-venue-image:hover {
    transform: translateY(-5px);
    box-shadow: var(--box-shadow-dark);
}

.about-image::before {
    content: '';
    position: absolute;
    top: -20px;
    left: -20px;
    right: 20px;
    bottom: 20px;
    background: linear-gradient(135deg, 
        rgba(201, 169, 97, 0.1), 
        rgba(201, 169, 97, 0.05));
    border-radius: var(--border-radius-large);
    z-index: -1;
    transform: rotate(2deg);
}

/* Image Placeholders */
.image-placeholder {
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    background: linear-gradient(135deg, 
        rgba(201, 169, 97, 0.08), 
        rgba(201, 169, 97, 0.03));
    border: 2px dashed var(--border-gold);
    border-radius: var(--border-radius-large);
    padding: 4rem;
    text-align: center;
    transition: var(--transition);
    height: 450px;
    position: relative;
    overflow: hidden;
}

.image-placeholder::before {
    content: '';
    position: absolute;
    top: 0;
    left: -100%;
    width: 100%;
    height: 100%;
    background: linear-gradient(90deg, 
        transparent, 
        rgba(201, 169, 97, 0.1), 
        transparent);
    transition: left 0.8s ease;
}

.image-placeholder:hover::before {
    left: 100%;
}

.image-placeholder:hover {
    border-color: var(--primary-gold);
    background: linear-gradient(135deg, 
        rgba(201, 169, 97, 0.12), 
        rgba(201, 169, 97, 0.06));
    transform: translateY(-5px);
    box-shadow: var(--box-shadow-light);
}

.image-placeholder i {
    font-size: 4rem;
    color: var(--primary-gold);
    margin-bottom: 1.5rem;
    text-shadow: var(--text-shadow-gold);
    transition: var(--transition);
}

.image-placeholder:hover i {
    transform: scale(1.1);
    color: var(--hover-gold);
}

.image-placeholder p {
    color: var(--gray-text);
    font-weight: 500;
    margin: 0;
    font-size: 1.1rem;
    letter-spacing: 0.5px;
}

.image-placeholder .placeholder-subtitle {
    font-size: 0.9rem;
    color: var(--muted-text);
    margin-top: 0.5rem;
    font-style: italic;
}

/* Responsive Design */
@media (max-width: 768px) {
    
    .nav-menu {
        position: fixed;
        top: 100%;
        left: 0;
        width: 100%;
        background: rgba(5, 5, 5, 0.98);
        backdrop-filter: blur(10px);
        flex-direction: column;
        padding: 2rem;
        gap: 1rem;
        transform: translateY(-100%);
        opacity: 0;
        visibility: hidden;
        transition: var(--transition);
    }
    
    .nav-menu.active {
        transform: translateY(0);
        opacity: 1;
        visibility: visible;
    }
    
    .nav-toggle {
        display: flex;
    }
    
    .nav-toggle.active span:nth-child(1) {
        transform: rotate(45deg) translate(8px, 8px);
    }
    
    .nav-toggle.active span:nth-child(2) {
        opacity: 0;
    }
    
    .nav-toggle.active span:nth-child(3) {
        transform: rotate(-45deg) translate(8px, -8px);
    }
    
    .nav-link.whatsapp-btn {
        padding: 0.6rem 1.2rem;
        font-size: 0.85rem;
        gap: 0.4rem;
        margin-top: 1rem;
        align-self: center;
    }
    
    .hero-buttons {
        flex-direction: column;
        align-items: center;
    }
    
    .btn {
        width: 100%;
        max-width: 300px;
        justify-content: center;
    }
    
    .about-content {
        grid-template-columns: 1fr;
        gap: 2rem;
    }
    
    .image-placeholder {
        height: 300px;
        padding: 2rem;
    }
    
    .image-placeholder i {
        font-size: 2rem;
    }
}

@media (max-width: 480px) {
    :root {
        --section-padding: 3rem;
        --container-padding: 1rem;
    }
    
    .hero-title {
        font-size: 2.5rem;
    }
    
    .hero-subtitle {
        font-size: 1rem;
    }
}

/* Enhanced Hero Button Animations */
.btn-primary {
    position: relative;
    overflow: hidden;
    border-radius: 12px;
}

.btn-primary::before {
    content: '';
    position: absolute;
    top: 0;
    left: -100%;
    width: 100%;
    height: 100%;
    background: linear-gradient(90deg, 
        transparent, 
        rgba(255, 255, 255, 0.3), 
        transparent);
    transition: left 0.6s ease;
}

.btn-primary:hover::before {
    left: 100%;
}

.btn-primary:hover {
    transform: translateY(-6px) scale(1.05);
    box-shadow: 0 20px 50px rgba(255, 255, 255, 0.3);
    animation: pulse-glow 1.5s ease infinite;
}

@keyframes pulse-glow {
    0%, 100% {
        box-shadow: 0 20px 50px rgba(255, 255, 255, 0.5);
    }
    50% {
        box-shadow: 0 25px 60px rgba(255, 255, 255, 0.7);
    }
}

/* Modern Button Styles */
.btn-modern {
    background: linear-gradient(135deg, #1a1a1a, #2d2d2d);
    color: white;
    border: 2px solid #ffffff;
    border-radius: 12px;
    padding: 1rem 2rem;
    font-weight: 600;
    text-transform: uppercase;
    letter-spacing: 1px;
    transition: all 0.3s cubic-bezier(0.4, 0, 0.2, 1);
    position: relative;
    overflow: hidden;
    backdrop-filter: blur(10px);
    text-shadow: none;
}

.btn-modern:hover {
    background: linear-gradient(135deg, var(--light-gray), var(--medium-gray));
    color: var(--dark-text);
    transform: translateY(-4px) scale(1.02);
    box-shadow: 0 20px 40px rgba(204, 204, 204, 0.3);
}

.btn-outline-modern {
    background: transparent;
    color: white;
    border: 2px solid #ffffff;
    border-radius: 12px;
    padding: 1rem 2rem;
    font-weight: 600;
    text-transform: uppercase;
    letter-spacing: 1px;
    transition: all 0.3s cubic-bezier(0.4, 0, 0.2, 1);
    backdrop-filter: blur(10px);
    text-shadow: none;
}

.btn-outline-modern:hover {
    background: #ffffff;
    color: #1a1a1a;
    transform: translateY(-4px) scale(1.02);
    box-shadow: 0 20px 40px rgba(255, 255, 255, 0.2);
}

/* Enhanced Text Animations */
@keyframes typewriter {
    from {
        width: 0;
    }
    to {
        width: 100%;
    }
}

@keyframes fadeInScale {
    from {
        opacity: 0;
        transform: scale(0.9) translateY(20px);
    }
    to {
        opacity: 1;
        transform: scale(1) translateY(0);
    }
}

/* Parallax Enhancement */
.parallax-element {
    transition: transform 0.1s ease-out;
}

/* Loading States */
.loading {
    opacity: 0.5;
    pointer-events: none;
}

.skeleton {
    background: linear-gradient(90deg, 
        rgba(255, 255, 255, 0.1) 25%, 
        rgba(255, 255, 255, 0.2) 50%, 
        rgba(255, 255, 255, 0.1) 75%);
    background-size: 200% 100%;
    animation: loading-shimmer 1.5s infinite;
}

@keyframes loading-shimmer {
    0% {
        background-position: -200% 0;
    }
    100% {
        background-position: 200% 0;
    }
}

/* Floating WhatsApp Button */
.floating-whatsapp {
    position: fixed;
    bottom: 30px;
    right: 30px;
    width: 60px;
    height: 60px;
    background: linear-gradient(135deg, #25D366, #128C7E);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    color: white;
    font-size: 1.8rem;
    text-decoration: none;
    box-shadow: 0 8px 25px rgba(37, 211, 102, 0.4);
    z-index: 1000;
    transition: all 0.3s ease;
    animation: float-whatsapp 3s ease-in-out infinite;
}

.floating-whatsapp:hover {
    transform: scale(1.1) translateY(-5px);
    box-shadow: 0 15px 35px rgba(37, 211, 102, 0.6);
    color: white;
}

.floating-whatsapp::before {
    content: '';
    position: absolute;
    top: -3px;
    left: -3px;
    right: -3px;
    bottom: -3px;
    background: linear-gradient(45deg, #25D366, #128C7E, #25D366);
    border-radius: 50%;
    z-index: -1;
    animation: rotate-border 3s linear infinite;
    opacity: 0.7;
}

@keyframes float-whatsapp {
    0%, 100% {
        transform: translateY(0);
    }
    50% {
        transform: translateY(-10px);
    }
}

@keyframes rotate-border {
    0% {
        transform: rotate(0deg);
    }
    100% {
        transform: rotate(360deg);
    }
}

/* Tooltip for WhatsApp button */
.floating-whatsapp .tooltip {
    position: absolute;
    right: 70px;
    top: 50%;
    transform: translateY(-50%);
    background: var(--dark-bg);
    color: var(--light-text);
    padding: 0.5rem 1rem;
    border-radius: var(--border-radius);
    white-space: nowrap;
    font-size: 0.9rem;
    opacity: 0;
    visibility: hidden;
    transition: var(--transition);
    border: 1px solid var(--border-gold);
}

.floating-whatsapp:hover .tooltip {
    opacity: 1;
    visibility: visible;
}

.floating-whatsapp .tooltip::after {
    content: '';
    position: absolute;
    left: 100%;
    top: 50%;
    transform: translateY(-50%);
    border: 5px solid transparent;
    border-left-color: var(--border-gold);
}

/* Special Font Rules for Better Readability */
.price,
.nav-menu,
.btn,
.form-input,
.form-textarea,
.contact-info,
.footer-links,
.card-price {
    font-family: 'Caveat', cursive !important;
}

/* Enhance handwriting readability */
p, .card-text, .about-text p {
    font-size: 1.1rem;
    line-height: 1.8;
    font-weight: 500;
    font-family: 'Dekko', cursive !important;
}

/* Coming Soon Modal */
.coming-soon-modal {
    max-width: 600px;
    text-align: center;
}

.coming-soon-content {
    padding: 2rem 1rem;
}

.coming-soon-icon {
    font-size: 4rem;
    color: var(--light-text);
    margin-bottom: 1.5rem;
    opacity: 0.8;
}

.coming-soon-content h2 {
    font-family: 'Caveat', cursive !important;
    font-size: 2.5rem;
    color: var(--light-text);
    margin-bottom: 1rem;
    text-shadow: 2px 2px 4px rgba(0, 0, 0, 0.5);
}

.coming-soon-content p {
    font-family: 'Caveat', cursive !important;
    font-size: 1.1rem;
    color: var(--gray-text);
    line-height: 1.6;
    margin-bottom: 2rem;
}

.coming-soon-features {
    display: grid;
    grid-template-columns: 1fr;
    gap: 1rem;
    margin-bottom: 2rem;
    max-width: 400px;
    margin-left: auto;
    margin-right: auto;
}

.feature-item {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 0.75rem;
    padding: 1rem;
    background: linear-gradient(135deg, 
        rgba(255, 255, 255, 0.03), 
        rgba(255, 255, 255, 0.01));
    border: 1px solid rgba(255, 255, 255, 0.1);
    border-radius: 12px;
    backdrop-filter: blur(10px);
    transition: all 0.3s ease;
}

.feature-item:hover {
    transform: translateY(-2px);
    border-color: rgba(255, 255, 255, 0.2);
    box-shadow: 0 8px 25px rgba(0, 0, 0, 0.2);
}

.feature-item i {
    font-size: 1.25rem;
    color: var(--light-text);
    opacity: 0.8;
}

.feature-item span {
    font-family: 'Caveat', cursive !important;
    font-size: 0.95rem;
    color: var(--light-text);
    font-weight: 500;
}

.coming-soon-actions {
    display: flex;
    gap: 1rem;
    justify-content: center;
    flex-wrap: wrap;
}

.coming-soon-actions .btn {
    min-width: 140px;
}

/* Responsive Coming Soon Modal */
@media (max-width: 768px) {
    .coming-soon-content {
        padding: 1.5rem 0.75rem;
    }
    
    .coming-soon-icon {
        font-size: 3rem;
        margin-bottom: 1rem;
    }
    
    .coming-soon-content h2 {
        font-size: 2rem;
    }
    
    .coming-soon-content p {
        font-size: 1rem;
    }
    
    .feature-item {
        padding: 0.75rem;
    }
    
    .feature-item span {
        font-size: 0.9rem;
    }
    
    .coming-soon-actions {
        flex-direction: column;
        align-items: center;
    }
    
    .coming-soon-actions .btn {
        width: 100%;
        max-width: 200px;
    }
}

/* Gallery Tabs Styles */
.gallery-tabs {
    display: flex;
    justify-content: center;
    flex-wrap: wrap;
    gap: 1rem;
    margin: 2rem 0;
    padding: 0 1rem;
}

.gallery-tab {
    background: transparent;
    border: 2px solid var(--border-white);
    color: var(--light-text);
    padding: 0.75rem 1.5rem;
    border-radius: var(--border-radius);
    font-family: 'Caveat', cursive !important;
    font-size: 0.95rem;
    font-weight: 500;
    cursor: pointer;
    transition: all 0.3s ease;
    text-transform: uppercase;
    letter-spacing: 1px;
    position: relative;
    overflow: hidden;
}

.gallery-tab::before {
    content: '';
    position: absolute;
    top: 0;
    left: -100%;
    width: 100%;
    height: 100%;
    background: linear-gradient(90deg, transparent, rgba(255, 255, 255, 0.1), transparent);
    transition: left 0.5s ease;
}

.gallery-tab:hover::before {
    left: 100%;
}

.gallery-tab:hover {
    border-color: var(--primary-white);
    background: rgba(255, 255, 255, 0.05);
    transform: translateY(-2px);
}

.gallery-tab.active {
    background: var(--primary-white);
    color: var(--dark-bg);
    border-color: var(--primary-white);
}

.gallery-tab.active:hover {
    background: var(--accent-white);
    color: var(--dark-bg);
}

/* Gallery Grid Animation */
.gallery-item {
    transition: all 0.4s ease;
    opacity: 1;
    transform: scale(1);
}

.gallery-item.hidden {
    opacity: 0;
    transform: scale(0.8);
    pointer-events: none;
}

/* Responsive Gallery Tabs */
@media (max-width: 768px) {
    .gallery-tabs {
        gap: 0.5rem;
        margin: 1.5rem 0;
    }
    
    .gallery-tab {
        padding: 0.6rem 1rem;
        font-size: 0.85rem;
        letter-spacing: 0.5px;
    }
}

/* Enhanced Gallery Styles */
.gallery-grid {
    max-width: 1400px;
    margin: 0 auto;
    padding: 2rem 0;
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 1.5rem;
}

.gallery-category {
    margin-bottom: 0;
}

.category-title {
    font-family: 'Caveat', cursive !important;
    font-size: clamp(1.1rem, 1.5vw, 1.4rem);
    font-weight: 400;
    color: var(--primary-white);
    text-align: center;
    margin-bottom: 1.2rem;
    letter-spacing: 1px;
    text-transform: uppercase;
    position: relative;
}

.category-title::after {
    content: '';
    position: absolute;
    bottom: -8px;
    left: 50%;
    transform: translateX(-50%);
    width: 60px;
    height: 2px;
    background: linear-gradient(90deg, transparent, var(--primary-white), transparent);
}

.gallery-items-row {
    display: flex;
    flex-direction: column;
    gap: 1.5rem;
}

.gallery-item.enhanced {
    position: relative;
    background: var(--card-bg);
    border: 2px solid var(--border-white);
    border-radius: var(--border-radius-large);
    padding: 0;
    overflow: hidden;
    transition: all 0.4s ease;
    cursor: pointer;
}

.gallery-image {
    width: 100%;
    height: clamp(250px, 25vw, 320px);
    object-fit: cover;
    transition: all 0.4s ease;
}

.gallery-item.enhanced:hover .gallery-image {
    transform: scale(1.05);
}

.gallery-item.enhanced:hover {
    transform: translateY(-8px);
    border-color: var(--primary-white);
    box-shadow: 0 15px 30px rgba(0, 0, 0, 0.3);
}

.gallery-item.enhanced .image-placeholder {
    height: 350px;
    position: relative;
    display: flex;
    align-items: center;
    justify-content: center;
    background: linear-gradient(135deg, 
        var(--card-bg) 0%, 
        var(--darker-bg) 50%, 
        rgba(64, 64, 64, 0.1) 100%);
    border: none;
    border-radius: 0;
    overflow: hidden;
}

.gallery-item.enhanced .image-placeholder::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: linear-gradient(45deg, 
        rgba(255, 255, 255, 0.05) 0%,
        transparent 50%,
        rgba(255, 255, 255, 0.05) 100%);
    animation: shimmerBackground 4s ease-in-out infinite;
}

/* Restaurant specific gradient */
.gallery-item.enhanced[data-category="restaurant"] .image-placeholder {
    background: linear-gradient(135deg, 
        #1a1a1a 0%, 
        #2d2d2d 50%, 
        #404040 100%);
}

/* Bar specific gradient */
.gallery-item.enhanced[data-category="bar"] .image-placeholder {
    background: linear-gradient(135deg, 
        #1a1a1a 0%, 
        #2a2a2a 50%, 
        #3a3a3a 100%);
}

/* VIP specific gradient */
.gallery-item.enhanced[data-category="vip"] .image-placeholder {
    background: linear-gradient(135deg, 
        #0a0a0a 0%, 
        #1a1a1a 50%, 
        #2a2a2a 100%);
}

/* Kids specific gradient */
.gallery-item.enhanced[data-category="kids"] .image-placeholder {
    background: linear-gradient(135deg, 
        #1a1a1a 0%, 
        #252525 50%, 
        #353535 100%);
}

@keyframes shimmerBackground {
    0% { transform: translateX(-100%); }
    50% { transform: translateX(100%); }
    100% { transform: translateX(-100%); }
}

.gallery-item.enhanced .image-placeholder i {
    font-size: 4.5rem;
    color: rgba(255, 255, 255, 0.8);
    transition: all 0.3s ease;
    text-shadow: 0 0 20px rgba(255, 255, 255, 0.3);
    z-index: 2;
    position: relative;
}

/* Different icon colors for categories */
.gallery-item.enhanced[data-category="restaurant"] .image-placeholder i {
    color: rgba(255, 255, 255, 0.9);
}

.gallery-item.enhanced[data-category="bar"] .image-placeholder i {
    color: rgba(255, 255, 255, 0.85);
}

.gallery-item.enhanced[data-category="vip"] .image-placeholder i {
    color: rgba(255, 255, 255, 0.95);
}

.gallery-item.enhanced[data-category="kids"] .image-placeholder i {
    color: rgba(255, 255, 255, 0.8);
}

/* Music/Live Music specific styles */
.gallery-item.enhanced[data-category="music"] .image-placeholder {
    background: linear-gradient(135deg, 
        #1a1a2e 0%, 
        #16213e 50%, 
        #0f3460 100%);
}

.gallery-item.enhanced[data-category="music"] .image-placeholder i {
    color: rgba(255, 215, 0, 0.9);
}

/* Okey specific styles */
.gallery-item.enhanced[data-category="okey"] .image-placeholder {
    background: linear-gradient(135deg, 
        #2d1b35 0%, 
        #1e2a3a 50%, 
        #1a1a2e 100%);
}

.gallery-item.enhanced[data-category="okey"] .image-placeholder i {
    color: rgba(220, 20, 60, 0.9);
}

.hover-overlay {
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: rgba(0, 0, 0, 0.85);
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    opacity: 0;
    transition: all 0.4s ease;
    backdrop-filter: blur(5px);
}

.gallery-item.enhanced:hover .hover-overlay {
    opacity: 1;
}

.hover-icon {
    font-size: 3.5rem !important;
    color: var(--primary-white) !important;
    margin-bottom: 1rem;
    animation: bounceIn 0.6s ease;
}

.hover-text {
    font-family: 'Caveat', cursive !important;
    font-size: 1.4rem;
    font-weight: 400;
    color: var(--primary-white);
    text-align: center;
    letter-spacing: 1px;
    margin: 0;
    animation: fadeInUp 0.6s ease 0.2s both;
}

@keyframes bounceIn {
    0% {
        transform: scale(0.3);
        opacity: 0;
    }
    50% {
        transform: scale(1.1);
    }
    100% {
        transform: scale(1);
        opacity: 1;
    }
}

@keyframes fadeInUp {
    from {
        transform: translateY(20px);
        opacity: 0;
    }
    to {
        transform: translateY(0);
        opacity: 1;
    }
}

/* Update Gallery Grid */
.gallery-item.enhanced .image-placeholder {
    height: 200px;
    position: relative;
    display: flex;
    align-items: center;
    justify-content: center;
    background: linear-gradient(135deg, var(--card-bg), var(--darker-bg));
    border: none;
    border-radius: 0;
}

/* Remove old gallery styles conflicts */
.gallery-item:not(.enhanced) {
    display: none;
}

/* Responsive Enhanced Gallery */
@media (max-width: 1400px) {
    .gallery-grid {
        max-width: 1300px;
        gap: 1rem;
        padding: 2rem 1rem;
    }
    
    .category-title {
        font-size: clamp(1rem, 1.3vw, 1.2rem);
        margin-bottom: 1rem;
        letter-spacing: 1px;
    }
}

@media (max-width: 1200px) {
    .gallery-grid {
        grid-template-columns: repeat(4, 1fr);
        gap: 1rem;
        max-width: 1000px;
    }
    
    .category-title {
        font-size: clamp(0.9rem, 1.2vw, 1.1rem);
    }
}

@media (max-width: 1000px) {
    .gallery-grid {
        grid-template-columns: repeat(4, 1fr);
        gap: 0.8rem;
        max-width: 900px;
    }
}

@media (max-width: 800px) {
    .gallery-grid {
        grid-template-columns: repeat(2, 1fr);
        gap: 1.5rem;
        max-width: 600px;
    }
}

@media (max-width: 500px) {
    .gallery-grid {
        grid-template-columns: 1fr;
        gap: 2rem;
    }
    
    .gallery-items-row {
        gap: 1rem;
    }
    
    .category-title {
        font-size: 1.3rem;
        margin-bottom: 1rem;
    }
    
    .gallery-item.enhanced .image-placeholder {
        height: 280px;
    }
    
    .gallery-item.enhanced .image-placeholder i {
        font-size: 3.5rem;
    }
    
    .hover-icon {
        font-size: 2.8rem !important;
    }
    
    .hover-text {
        font-size: 1.2rem;
    }
}

/* Special Gallery Header Effects */
.gallery-header-special {
    text-align: center;
    margin-bottom: 4rem;
    position: relative;
    overflow: hidden;
}

.gallery-blur-text {
    font-family: 'Caveat', cursive !important;
    font-size: clamp(1.5rem, 3vw, 2.5rem);
    font-weight: 400;
    color: rgba(255, 255, 255, 0.4);
    text-transform: uppercase;
    letter-spacing: 3px;
    margin-bottom: 1rem;
    filter: blur(1px);
    text-shadow: 0 0 20px rgba(255, 255, 255, 0.3);
    animation: blurPulse 3s ease-in-out infinite;
    position: relative;
    z-index: 1;
}

.gallery-handwriting {
    font-family: 'Caveat', cursive !important;
    font-size: clamp(2.5rem, 5vw, 4rem);
    font-weight: 400;
    color: var(--primary-gold);
    text-shadow: 
        0 0 20px rgba(201, 169, 97, 0.8),
        0 0 40px rgba(201, 169, 97, 0.4),
        2px 2px 4px rgba(0, 0, 0, 0.5);
    margin: 0.5rem 0 -1rem 0;
    position: relative;
    display: inline-block;
    transform: rotate(-2deg);
    animation: handwritingGlow 4s ease-in-out infinite;
    z-index: 3;
}

@keyframes handwritingGlow {
    0%, 100% {
        text-shadow: 
            0 0 20px rgba(201, 169, 97, 0.8),
            0 0 40px rgba(201, 169, 97, 0.4),
            2px 2px 4px rgba(0, 0, 0, 0.5);
        transform: rotate(-2deg) scale(1);
    }
    50% {
        text-shadow: 
            0 0 30px rgba(201, 169, 97, 1),
            0 0 60px rgba(201, 169, 97, 0.6),
            2px 2px 6px rgba(0, 0, 0, 0.7);
        transform: rotate(-1deg) scale(1.02);
    }
}

.gallery-title-special {
    font-family: 'Caveat', cursive !important;
    font-size: clamp(4rem, 8vw, 8rem);
    font-weight: 400;
    margin: 0;
    position: relative;
    display: inline-block;
    color: var(--primary-white);
    text-shadow: 
        0 0 20px rgba(255, 255, 255, 0.5),
        2px 2px 4px rgba(0, 0, 0, 0.7);
    z-index: 2;
    letter-spacing: 0.2em;
}

.gallery-title-special .letter {
    display: inline-block;
    position: relative;
    animation: letterFloat 4s ease-in-out infinite;
    text-shadow: 0 0 30px rgba(255, 255, 255, 0.3);
    transition: all 0.3s ease;
}

.gallery-title-special .letter:nth-child(1) { animation-delay: 0s; }
.gallery-title-special .letter:nth-child(2) { animation-delay: 0.2s; }
.gallery-title-special .letter:nth-child(3) { animation-delay: 0.4s; }
.gallery-title-special .letter:nth-child(4) { animation-delay: 0.6s; }
.gallery-title-special .letter:nth-child(5) { animation-delay: 0.8s; }
.gallery-title-special .letter:nth-child(6) { animation-delay: 1s; }

.gallery-title-special .letter:hover {
    transform: scale(1.2) rotateY(180deg);
    color: var(--primary-white);
    text-shadow: 0 0 50px rgba(255, 255, 255, 0.8);
}

.gallery-subtitle-special {
    font-family: 'Dekko', cursive !important;
    font-size: 1.4rem !important;
    color: var(--light-gray);
    margin-top: 1rem;
    letter-spacing: 1px;
    text-transform: none;
    position: relative;
    animation: fadeInUp 1s ease 1.5s both;
    font-weight: 500;
}

.gallery-subtitle-special::before,
.gallery-subtitle-special::after {
    content: '';
    position: absolute;
    top: 50%;
    width: 100px;
    height: 1px;
    background: linear-gradient(90deg, transparent, var(--light-gray), transparent);
}

.gallery-subtitle-special::before {
    left: -120px;
}

.gallery-subtitle-special::after {
    right: -120px;
}

/* Blur Pulse Effect */
@keyframes blurPulse {
    0%, 100% {
        filter: blur(1px);
        opacity: 0.4;
    }
    50% {
        filter: blur(0.5px);
        opacity: 0.7;
    }
}

/* Shimmer Effect */
@keyframes shimmer {
    0% {
        background-position: -200% -200%;
    }
    50% {
        background-position: 200% 200%;
    }
    100% {
        background-position: -200% -200%;
    }
}

/* Letter Float Effect */
@keyframes letterFloat {
    0%, 100% {
        transform: translateY(0px) rotateX(0deg);
    }
    25% {
        transform: translateY(-10px) rotateX(5deg);
    }
    50% {
        transform: translateY(-5px) rotateX(-5deg);
    }
    75% {
        transform: translateY(-15px) rotateX(3deg);
    }
}

/* Responsive Special Gallery Header */
@media (max-width: 768px) {
    .gallery-header-special {
        margin-bottom: 3rem;
    }
    
    .gallery-blur-text {
        font-size: clamp(1.2rem, 2.5vw, 1.8rem);
        letter-spacing: 2px;
        margin-bottom: 0.5rem;
    }
    
    .gallery-title-special {
        font-size: clamp(2.5rem, 6vw, 4rem);
    }
    
    .gallery-subtitle-special {
        font-size: 1rem;
        letter-spacing: 2px;
    }
    
    .gallery-subtitle-special::before,
    .gallery-subtitle-special::after {
        width: 60px;
    }
    
    .gallery-subtitle-special::before {
        left: -80px;
    }
    
    .gallery-subtitle-special::after {
        right: -80px;
    }
}

/* Enhanced General Image Placeholders */
.about .image-placeholder,
.menu-preview .image-placeholder,
.locations .image-placeholder {
    background: linear-gradient(135deg, 
        rgba(26, 26, 26, 0.9) 0%, 
        rgba(45, 45, 45, 0.7) 50%, 
        rgba(64, 64, 64, 0.5) 100%);
    border: 2px solid rgba(255, 255, 255, 0.1);
    border-radius: 12px;
    padding: 3rem;
    text-align: center;
    position: relative;
    overflow: hidden;
    transition: all 0.4s ease;
    min-height: 250px;
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
}

/* Menu Preview Image */
.menu-preview-img {
    width: 100%;
    height: 450px;
    object-fit: cover;
    border-radius: 12px;
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.3);
    transition: all 0.4s ease;
}

.menu-preview-img:hover {
    transform: scale(1.02);
    box-shadow: 0 15px 40px rgba(0, 0, 0, 0.4);
}

.about .image-placeholder::before,
.menu-preview .image-placeholder::before,
.locations .image-placeholder::before {
    content: '';
    position: absolute;
    top: -50%;
    left: -50%;
    width: 200%;
    height: 200%;
    background: linear-gradient(45deg, 
        transparent 30%, 
        rgba(255, 255, 255, 0.03) 50%, 
        transparent 70%);
    animation: rotatePlaceholder 8s linear infinite;
}

.about .image-placeholder:hover,
.menu-preview .image-placeholder:hover,
.locations .image-placeholder:hover {
    transform: scale(1.02);
    border-color: rgba(255, 255, 255, 0.2);
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.3);
}

.about .image-placeholder i,
.menu-preview .image-placeholder i,
.locations .image-placeholder i {
    font-size: 3.5rem;
    color: rgba(255, 255, 255, 0.7);
    margin-bottom: 1rem;
    position: relative;
    z-index: 2;
    text-shadow: 0 0 15px rgba(255, 255, 255, 0.2);
}

.about .image-placeholder p,
.menu-preview .image-placeholder p,
.locations .image-placeholder p {
    color: rgba(255, 255, 255, 0.8);
    font-family: 'Caveat', cursive !important;
    font-size: 1.1rem;
    margin: 0;
    position: relative;
    z-index: 2;
    letter-spacing: 1px;
}

@keyframes rotatePlaceholder {
    0% { transform: rotate(0deg); }
    100% { transform: rotate(360deg); }
}


/* Lazy Loading Styles */
.lazy-load {
    opacity: 0;
    transition: opacity 0.3s ease;
}

.lazy-load.loaded {
    opacity: 1;
}

.lazy-placeholder {
    background: linear-gradient(90deg, #f0f0f0 25%, #e0e0e0 50%, #f0f0f0 75%);
    background-size: 200% 100%;
    animation: loading 1.5s infinite;
}

@keyframes loading {
    0% {
        background-position: 200% 0;
    }
    100% {
        background-position: -200% 0;
    }
}

/* Critical CSS for above-the-fold content */
.hero {
    will-change: transform;
}

.hero-content {
    contain: layout style paint;
}

/* Performance optimizations */
.gallery-image img {
    content-visibility: auto;
    contain-intrinsic-size: 300px 200px;
}

.about-venue-image {
    content-visibility: auto;
    contain-intrinsic-size: 400px 300px;
}

/* Menu Page Styles */
.menu-hero {
    height: 60vh;
    min-height: 400px;
    background: linear-gradient(135deg, 
        var(--darker-bg) 0%, 
        var(--dark-bg) 50%, 
        rgba(11, 11, 11, 0.95) 100%),
        url('../assets/images/arka.jpg');
    background-size: cover;
    background-position: center;
    background-attachment: fixed;
    display: flex;
    align-items: center;
    justify-content: center;
    position: relative;
    margin-top: 80px;
}

.menu-hero .hero-background {
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: linear-gradient(135deg, 
        rgba(0, 0, 0, 0.7) 0%, 
        rgba(0, 0, 0, 0.5) 50%, 
        rgba(0, 0, 0, 0.8) 100%);
}

.menu-hero .hero-overlay {
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: rgba(0, 0, 0, 0.3);
}

.menu-hero .hero-content {
    position: relative;
    z-index: 2;
    text-align: center;
    max-width: 800px;
    padding: 0 2rem;
}

.menu-hero-title {
    font-size: var(--font-size-h1);
    color: var(--light-text);
    margin-bottom: 1rem;
    text-shadow: var(--text-shadow);
    font-family: 'Caveat', cursive !important;
}

.menu-hero-subtitle {
    font-size: var(--font-size-body);
    color: var(--gray-text);
    margin-bottom: 2rem;
    line-height: 1.6;
    font-family: 'Dekko', cursive !important;
}

.menu-content {
    padding: var(--section-padding) 0;
}

.menu-category {
    margin-bottom: 5rem;
}

.menu-category:last-child {
    margin-bottom: 3rem;
}

.category-header {
    text-align: center;
    margin-bottom: 3rem;
}

.category-title {
    font-size: var(--font-size-h2);
    color: var(--light-text);
    margin-bottom: 1rem;
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 1rem;
    font-family: 'Caveat', cursive !important;
}

.category-title i {
    color: var(--primary-white);
    font-size: 0.8em;
}

.category-divider {
    width: 100px;
    height: 2px;
    background: linear-gradient(90deg, transparent, var(--light-gray), transparent);
    margin: 0 auto;
}

.menu-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: 2rem;
    margin-top: 2rem;
}

.menu-item {
    background: var(--card-bg);
    border-radius: var(--border-radius);
    padding: 1.5rem;
    border: 1px solid var(--border-color);
    transition: var(--transition);
    position: relative;
    overflow: hidden;
}

.menu-item::before {
    content: '';
    position: absolute;
    top: 0;
    left: -100%;
    width: 100%;
    height: 2px;
    background: linear-gradient(90deg, transparent, var(--light-gray), transparent);
    transition: var(--transition);
}

.menu-item:hover::before {
    left: 0;
}

.menu-item:hover {
    transform: translateY(-2px);
    box-shadow: var(--box-shadow-light);
    border-color: var(--border-white);
}

.menu-item.premium {
    border-color: var(--light-gray);
    background: linear-gradient(135deg, var(--card-bg), rgba(255, 255, 255, 0.02));
}

.menu-item.premium::after {
    content: '★';
    position: absolute;
    top: 1rem;
    right: 1rem;
    color: var(--primary-white);
    font-size: 1.2rem;
    opacity: 0.7;
}

.menu-item.special {
    border-color: var(--medium-gray);
    background: linear-gradient(135deg, var(--card-bg), rgba(255, 255, 255, 0.03));
}

.menu-item.special::after {
    content: '◆';
    position: absolute;
    top: 1rem;
    right: 1rem;
    color: var(--light-gray);
    font-size: 1rem;
    opacity: 0.8;
}

.menu-item-content {
    position: relative;
    z-index: 1;
}

.menu-item-title {
    font-size: 1.4rem;
    color: var(--light-text);
    margin-bottom: 0.5rem;
    font-weight: 500;
    line-height: 1.3;
    font-family: 'Caveat', cursive !important;
}

.menu-item-description {
    font-size: 1rem;
    color: var(--muted-text);
    margin-bottom: 1rem;
    line-height: 1.5;
    font-family: 'Dekko', cursive !important;
}

.menu-item-info {
    display: flex;
    align-items: center;
    justify-content: space-between;
    margin-top: 1rem;
}

.portion-info {
    background: var(--dark-bg);
    color: var(--gray-text);
    padding: 0.3rem 0.8rem;
    border-radius: 20px;
    font-size: 0.85rem;
    border: 1px solid var(--border-color);
    font-family: 'Caveat', cursive !important;
}

.menu-cta {
    background: var(--card-bg);
    padding: var(--section-padding) 0;
    text-align: center;
    border-top: 1px solid var(--border-color);
}

.cta-content h2 {
    font-size: var(--font-size-h2);
    color: var(--light-text);
    margin-bottom: 1rem;
    font-family: 'Caveat', cursive !important;
}

.cta-content p {
    font-size: var(--font-size-body);
    color: var(--gray-text);
    margin-bottom: 2rem;
    max-width: 600px;
    margin-left: auto;
    margin-right: auto;
    font-family: 'Dekko', cursive !important;
}

.cta-buttons {
    display: flex;
    gap: 1rem;
    justify-content: center;
    margin-bottom: 2rem;
    flex-wrap: wrap;
}

.menu-info {
    display: flex;
    gap: 2rem;
    justify-content: center;
    flex-wrap: wrap;
    margin-top: 2rem;
}

.info-item {
    display: flex;
    align-items: center;
    gap: 0.5rem;
    color: var(--gray-text);
    font-size: 1rem;
    font-family: 'Caveat', cursive !important;
}

.info-item i {
    color: var(--light-gray);
    font-size: 1.1rem;
}

/* Navigation active state for menu page */
.nav-link.active {
    color: var(--primary-white) !important;
    background: rgba(255, 255, 255, 0.1);
    border-radius: 20px;
    padding: 0.5rem 1rem;
}

/* Mobile Responsive for Menu */
@media (max-width: 768px) {
    .menu-hero {
        height: 50vh;
        min-height: 300px;
        margin-top: 60px;
    }
    
    .menu-hero-title {
        font-size: clamp(2.5rem, 8vw, 4rem);
    }
    
    .menu-hero-subtitle {
        font-size: clamp(1rem, 3vw, 1.2rem);
    }
    
    .menu-grid {
        grid-template-columns: 1fr;
        gap: 1.5rem;
    }
    
    .menu-item {
        padding: 1.2rem;
    }
    
    .category-title {
        font-size: clamp(1.8rem, 6vw, 2.5rem);
        flex-direction: column;
        gap: 0.5rem;
    }
    
    .cta-buttons {
        flex-direction: column;
        align-items: center;
    }
    
    .menu-info {
        flex-direction: column;
        gap: 1rem;
    }
    
    .menu-content {
        padding: 3rem 0;
    }
    
    .menu-category {
        margin-bottom: 3rem;
    }
}
