/* 
=========================================
  SRI GANESHA GADWAL FOOD COURT (GFC)
  Theme Styling (Vanilla CSS)
=========================================
*/

/* Google Fonts Import */
@import url('https://fonts.googleapis.com/css2?family=Inter:wght@300;400;500;600;700&family=Outfit:wght@300;400;500;600;700;800&display=swap');

/* CSS Variables */
:root {
    --primary-bg: #0A0A0A;
    --secondary-bg: #121212;
    --card-bg: #1A1A1A;
    --card-hover-bg: #222222;
    --primary-brand: #E10600;
    --primary-brand-rgb: 225, 6, 0;
    --accent-white: #FFFFFF;
    --text-main: #F5F5F5;
    --text-muted: #A0A0A0;
    
    --nav-height: 85px;
    --nav-height-collapsed: 70px;
    
    --transition-fast: 0.2s ease;
    --transition-normal: 0.4s cubic-bezier(0.16, 1, 0.3, 1);
    --transition-slow: 0.6s cubic-bezier(0.16, 1, 0.3, 1);
    
    --font-headings: 'Outfit', sans-serif;
    --font-body: 'Inter', sans-serif;
    
    --shadow-soft: 0 10px 30px rgba(0, 0, 0, 0.7);
    --shadow-glow: 0 0 25px rgba(225, 6, 0, 0.25);
    --shadow-glow-intense: 0 0 35px rgba(225, 6, 0, 0.5);
    
    --border-radius-sm: 8px;
    --border-radius-md: 16px;
    --border-radius-lg: 24px;
    --border-radius-circle: 50%;
}

/* Reset Styles */
*, *::before, *::after {
    box-sizing: border-box;
    margin: 0;
    padding: 0;
}

html {
    scroll-behavior: smooth;
    scroll-padding-top: var(--nav-height);
}

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

/* Custom Scrollbar */
::-webkit-scrollbar {
    width: 8px;
}

::-webkit-scrollbar-track {
    background: var(--primary-bg);
}

::-webkit-scrollbar-thumb {
    background: #333;
    border-radius: 4px;
}

::-webkit-scrollbar-thumb:hover {
    background: var(--primary-brand);
}

/* Typography & Headings */
h1, h2, h3, h4, h5, h6 {
    font-family: var(--font-headings);
    font-weight: 700;
    letter-spacing: -0.02em;
    color: var(--accent-white);
}

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

img {
    max-width: 100%;
    height: auto;
    display: block;
}

/* Utility Classes */
.container {
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 24px;
    position: relative;
    width: 100%;
}

.section {
    padding: 100px 0;
}

.section-dark {
    background-color: var(--secondary-bg);
}

.text-center {
    text-align: center;
}

.text-brand {
    color: var(--primary-brand);
}

.section-header {
    margin-bottom: 60px;
    text-align: center;
}

.section-title {
    font-size: 2.5rem;
    margin-bottom: 16px;
    text-transform: uppercase;
    letter-spacing: 0.05em;
    position: relative;
    display: inline-block;
}

.section-title::after {
    content: '';
    display: block;
    width: 60px;
    height: 4px;
    background-color: var(--primary-brand);
    margin: 12px auto 0;
    border-radius: 2px;
    box-shadow: 0 0 10px var(--primary-brand);
}

.section-subtitle {
    color: var(--text-muted);
    font-size: 1.1rem;
    max-width: 600px;
    margin: 0 auto;
    font-weight: 300;
}

/* Scroll Progress Bar */
.scroll-progress-container {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 3px;
    z-index: 1001;
    background: rgba(0,0,0,0.1);
}

.scroll-progress-bar {
    height: 100%;
    width: 0;
    background: var(--primary-brand);
    box-shadow: 0 0 8px var(--primary-brand);
    transition: width 0.1s ease-out;
}

/* Loading Screen */
#loading-screen {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background-color: var(--primary-bg);
    z-index: 9999;
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: center;
    transition: opacity 0.5s ease, visibility 0.5s ease;
}

.loader-logo {
    width: 120px;
    height: auto;
    margin-bottom: 24px;
    animation: pulse 1.8s infinite ease-in-out;
}

.loader-spinner {
    width: 40px;
    height: 40px;
    border: 3px solid rgba(225, 6, 0, 0.1);
    border-radius: 50%;
    border-top-color: var(--primary-brand);
    animation: spin 1s infinite linear;
    box-shadow: 0 0 10px rgba(225, 6, 0, 0.2);
}

@keyframes spin {
    to { transform: rotate(360deg); }
}

@keyframes pulse {
    0%, 100% { transform: scale(1); opacity: 0.8; }
    50% { transform: scale(1.08); opacity: 1; }
}

/* Navbar */
.navbar {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: var(--nav-height);
    display: flex;
    align-items: center;
    z-index: 1000;
    transition: var(--transition-normal);
    border-bottom: 1px solid rgba(255, 255, 255, 0.03);
}

.navbar.scrolled {
    height: var(--nav-height-collapsed);
    background-color: rgba(10, 10, 10, 0.85);
    backdrop-filter: blur(15px);
    -webkit-backdrop-filter: blur(15px);
    border-bottom: 1px solid rgba(255, 255, 255, 0.08);
    box-shadow: var(--shadow-soft);
}

.navbar-container {
    display: flex;
    justify-content: space-between;
    align-items: center;
    width: 100%;
}

.nav-logo {
    display: flex;
    align-items: center;
    gap: 12px;
}

.nav-logo img {
    height: 50px;
    width: auto;
    object-fit: contain;
    transition: var(--transition-normal);
}

.navbar.scrolled .nav-logo img {
    height: 42px;
}

.nav-logo-text {
    font-family: var(--font-headings);
    font-size: 1.3rem;
    font-weight: 800;
    letter-spacing: 0.05em;
    color: var(--accent-white);
    display: flex;
    flex-direction: column;
    line-height: 1;
}

.nav-logo-text span {
    font-size: 0.75rem;
    font-weight: 500;
    color: var(--primary-brand);
    letter-spacing: 0.15em;
    margin-top: 2px;
}

.nav-links {
    display: flex;
    align-items: center;
    list-style: none;
    gap: 32px;
}

.nav-link {
    font-size: 0.95rem;
    font-weight: 500;
    letter-spacing: 0.02em;
    position: relative;
    padding: 8px 0;
    color: var(--text-muted);
}

.nav-link:hover,
.nav-link.active {
    color: var(--accent-white);
}

.nav-link::after {
    content: '';
    position: absolute;
    bottom: 0;
    left: 0;
    width: 0;
    height: 2px;
    background-color: var(--primary-brand);
    transition: var(--transition-normal);
    box-shadow: 0 0 5px var(--primary-brand);
}

.nav-link:hover::after,
.nav-link.active::after {
    width: 100%;
}

/* Call-to-action button in nav */
.nav-btn {
    background-color: var(--primary-brand);
    color: var(--accent-white);
    padding: 10px 22px;
    border-radius: var(--border-radius-sm);
    font-size: 0.9rem;
    font-weight: 600;
    letter-spacing: 0.03em;
    box-shadow: var(--shadow-glow);
    border: 1px solid var(--primary-brand);
}

.nav-btn:hover {
    background-color: transparent;
    border-color: var(--accent-white);
    color: var(--accent-white);
    box-shadow: none;
    transform: translateY(-2px);
}

/* Hamburger Menu Toggle */
.hamburger-toggle {
    display: none;
    background: none;
    border: none;
    cursor: pointer;
    width: 30px;
    height: 24px;
    position: relative;
    z-index: 1010;
}

.hamburger-toggle span {
    display: block;
    width: 100%;
    height: 2px;
    background-color: var(--accent-white);
    position: absolute;
    left: 0;
    transition: var(--transition-normal);
}

.hamburger-toggle span:nth-child(1) { top: 0; }
.hamburger-toggle span:nth-child(2) { top: 11px; }
.hamburger-toggle span:nth-child(3) { top: 22px; }

.hamburger-toggle.active span:nth-child(1) {
    transform: rotate(45deg);
    top: 11px;
}

.hamburger-toggle.active span:nth-child(2) {
    opacity: 0;
    transform: translateX(-10px);
}

.hamburger-toggle.active span:nth-child(3) {
    transform: rotate(-45deg);
    top: 11px;
}

/* Hero Section */
.hero {
    height: 100vh;
    min-height: 650px;
    display: flex;
    align-items: center;
    position: relative;
    overflow: hidden;
    padding-top: var(--nav-height);
}

.hero-bg {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    z-index: 1;
}

.hero-bg img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    object-position: center;
    filter: brightness(0.25) contrast(1.1);
    transform: scale(1.05);
    animation: zoomBackground 20s infinite alternate ease-in-out;
}

@keyframes zoomBackground {
    0% { transform: scale(1.02); }
    100% { transform: scale(1.08); }
}

.hero-overlay {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: radial-gradient(circle at center, rgba(10,10,10,0.2) 0%, rgba(10,10,10,0.9) 80%);
    z-index: 2;
}

.hero-container {
    z-index: 3;
    display: flex;
    flex-direction: column;
    align-items: center;
    text-align: center;
    max-width: 850px;
}

.hero-logo {
    width: 180px;
    height: auto;
    margin-bottom: 24px;
    filter: drop-shadow(0 10px 20px rgba(0,0,0,0.8));
    animation: fadeInUp 1s ease-out;
}

.hero-title {
    font-size: clamp(2.5rem, 6vw, 4.5rem);
    line-height: 1.1;
    font-weight: 800;
    margin-bottom: 20px;
    text-transform: uppercase;
    letter-spacing: -0.01em;
    animation: fadeInUp 1.2s ease-out;
    text-shadow: 0 4px 15px rgba(0,0,0,0.8);
}

.hero-tagline {
    font-size: clamp(1rem, 2.5vw, 1.4rem);
    color: var(--text-muted);
    font-weight: 400;
    margin-bottom: 40px;
    letter-spacing: 0.05em;
    animation: fadeInUp 1.4s ease-out;
    text-shadow: 0 2px 10px rgba(0,0,0,0.8);
}

.hero-ctas {
    display: flex;
    gap: 20px;
    justify-content: center;
    animation: fadeInUp 1.6s ease-out;
}

.btn {
    display: inline-block;
    padding: 16px 36px;
    font-family: var(--font-headings);
    font-size: 1rem;
    font-weight: 700;
    text-transform: uppercase;
    letter-spacing: 0.05em;
    border-radius: var(--border-radius-sm);
    cursor: pointer;
    transition: var(--transition-normal);
}

.btn-primary {
    background-color: var(--primary-brand);
    color: var(--accent-white);
    border: 2px solid var(--primary-brand);
    box-shadow: var(--shadow-glow);
}

.btn-primary:hover {
    background-color: transparent;
    color: var(--accent-white);
    border-color: var(--accent-white);
    box-shadow: none;
    transform: translateY(-3px);
}

.btn-secondary {
    background-color: transparent;
    color: var(--accent-white);
    border: 2px solid var(--accent-white);
}

.btn-secondary:hover {
    background-color: var(--accent-white);
    color: var(--primary-bg);
    transform: translateY(-3px);
}

/* Scroll Down Indicator */
.hero-scroll-indicator {
    position: absolute;
    bottom: 40px;
    left: 50%;
    transform: translateX(-50%);
    z-index: 3;
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 10px;
    color: var(--text-muted);
    font-size: 0.75rem;
    letter-spacing: 0.2em;
    text-transform: uppercase;
    opacity: 0.8;
}

.hero-scroll-indicator::after {
    content: '';
    width: 2px;
    height: 40px;
    background: linear-gradient(to bottom, var(--primary-brand), transparent);
    animation: scrollLine 2s infinite ease-in-out;
}

@keyframes scrollLine {
    0% { transform: scaleY(0); transform-origin: top; }
    50% { transform: scaleY(1); transform-origin: top; }
    50.1% { transform: scaleY(1); transform-origin: bottom; }
    100% { transform: scaleY(0); transform-origin: bottom; }
}

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

.about-img-container {
    position: relative;
}

.about-img-frame {
    position: relative;
    border-radius: var(--border-radius-md);
    overflow: hidden;
    box-shadow: var(--shadow-soft);
    border: 2px solid rgba(255, 255, 255, 0.05);
}

.about-img-frame img {
    width: 100%;
    height: 450px;
    object-fit: cover;
    transition: var(--transition-slow);
}

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

.about-img-accent {
    position: absolute;
    width: 150px;
    height: 150px;
    background-color: var(--primary-brand);
    border-radius: var(--border-radius-md);
    z-index: -1;
    bottom: -20px;
    right: -20px;
    opacity: 0.3;
    filter: blur(20px);
    transition: var(--transition-normal);
}

.about-img-badge {
    position: absolute;
    top: -20px;
    left: -20px;
    background: var(--primary-brand);
    color: var(--accent-white);
    padding: 16px 24px;
    border-radius: var(--border-radius-sm);
    box-shadow: var(--shadow-glow-intense);
    z-index: 10;
    text-align: center;
    border: 1px solid rgba(255, 255, 255, 0.1);
}

.about-img-badge .number {
    display: block;
    font-size: 2rem;
    font-family: var(--font-headings);
    font-weight: 800;
    line-height: 1;
}

.about-img-badge .label {
    font-size: 0.7rem;
    text-transform: uppercase;
    letter-spacing: 0.1em;
    font-weight: 600;
}

.about-text h3 {
    font-size: 2rem;
    margin-bottom: 24px;
    line-height: 1.3;
}

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

.about-features {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 20px;
}

.about-feature-item {
    display: flex;
    align-items: center;
    gap: 12px;
}

.about-feature-icon {
    width: 24px;
    height: 24px;
    color: var(--primary-brand);
    flex-shrink: 0;
}

.about-feature-item span {
    font-size: 0.95rem;
    font-weight: 500;
    color: var(--text-main);
}

/* Specialities Section */
.specialties-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 30px;
}

.specialty-card {
    background-color: var(--card-bg);
    border-radius: var(--border-radius-md);
    overflow: hidden;
    box-shadow: var(--shadow-soft);
    border: 1px solid rgba(255, 255, 255, 0.03);
    transition: var(--transition-normal);
    position: relative;
}

.specialty-card-img {
    height: 220px;
    overflow: hidden;
    position: relative;
}

.specialty-card-img img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: var(--transition-slow);
}

.specialty-card-overlay {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: linear-gradient(to bottom, transparent 40%, rgba(10,10,10,0.95));
}

.specialty-icon-wrapper {
    position: absolute;
    bottom: 16px;
    left: 24px;
    background-color: var(--primary-brand);
    width: 50px;
    height: 50px;
    border-radius: var(--border-radius-circle);
    display: flex;
    align-items: center;
    justify-content: center;
    color: var(--accent-white);
    box-shadow: var(--shadow-glow);
    z-index: 1;
}

.specialty-icon-wrapper svg {
    width: 24px;
    height: 24px;
}

.specialty-card-content {
    padding: 30px 24px;
}

.specialty-card-title {
    font-size: 1.4rem;
    margin-bottom: 12px;
}

.specialty-card-desc {
    color: var(--text-muted);
    font-size: 0.95rem;
    font-weight: 300;
}

.specialty-card:hover {
    transform: translateY(-8px);
    background-color: var(--card-hover-bg);
    border-color: rgba(225, 6, 0, 0.3);
    box-shadow: var(--shadow-glow);
}

.specialty-card:hover .specialty-card-img img {
    transform: scale(1.08);
}

/* Menu Highlights Section */
.menu-tabs {
    display: flex;
    justify-content: center;
    gap: 12px;
    margin-bottom: 48px;
    flex-wrap: wrap;
}

.menu-tab-btn {
    background: rgba(255, 255, 255, 0.03);
    border: 1px solid rgba(255, 255, 255, 0.05);
    color: var(--text-muted);
    padding: 12px 24px;
    border-radius: 30px;
    font-family: var(--font-headings);
    font-size: 0.95rem;
    font-weight: 600;
    cursor: pointer;
    transition: var(--transition-normal);
}

.menu-tab-btn:hover {
    color: var(--accent-white);
    background: rgba(255, 255, 255, 0.08);
}

.menu-tab-btn.active {
    background: var(--primary-brand);
    color: var(--accent-white);
    border-color: var(--primary-brand);
    box-shadow: var(--shadow-glow);
}

.menu-grid {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 30px;
    transition: var(--transition-normal);
}

.menu-item-card {
    background-color: var(--card-bg);
    border-radius: var(--border-radius-md);
    padding: 24px;
    display: flex;
    gap: 20px;
    align-items: center;
    border: 1px solid rgba(255, 255, 255, 0.03);
    transition: var(--transition-normal);
    position: relative;
    overflow: hidden;
}

.menu-item-card::before {
    content: '';
    position: absolute;
    left: 0;
    top: 0;
    height: 100%;
    width: 4px;
    background-color: var(--primary-brand);
    opacity: 0;
    transition: var(--transition-fast);
}

.menu-item-card:hover {
    background-color: var(--card-hover-bg);
    border-color: rgba(255, 255, 255, 0.08);
    transform: translateY(-3px);
    box-shadow: var(--shadow-soft);
}

.menu-item-card:hover::before {
    opacity: 1;
}

.menu-item-details {
    flex-grow: 1;
}

.menu-item-header {
    display: flex;
    justify-content: space-between;
    align-items: baseline;
    margin-bottom: 8px;
    gap: 12px;
}

.menu-item-name {
    font-size: 1.25rem;
    font-weight: 600;
}

.menu-item-price {
    font-family: var(--font-headings);
    font-weight: 700;
    color: var(--primary-brand);
    font-size: 1.15rem;
}

.menu-item-desc {
    color: var(--text-muted);
    font-size: 0.9rem;
    font-weight: 300;
    line-height: 1.5;
}

/* Why Choose Us Section */
.why-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 30px;
}

.why-card {
    background-color: var(--card-bg);
    border-radius: var(--border-radius-md);
    padding: 40px 30px;
    text-align: center;
    border: 1px solid rgba(255, 255, 255, 0.03);
    transition: var(--transition-normal);
    position: relative;
    z-index: 1;
    overflow: hidden;
}

.why-card::after {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: radial-gradient(circle at center, rgba(225, 6, 0, 0.1) 0%, transparent 70%);
    opacity: 0;
    transition: var(--transition-normal);
    z-index: -1;
}

.why-card-icon {
    width: 64px;
    height: 64px;
    background-color: rgba(225, 6, 0, 0.08);
    border-radius: var(--border-radius-sm);
    display: flex;
    align-items: center;
    justify-content: center;
    color: var(--primary-brand);
    margin: 0 auto 24px;
    transition: var(--transition-normal);
    border: 1px solid rgba(225, 6, 0, 0.15);
}

.why-card-icon svg {
    width: 32px;
    height: 32px;
}

.why-card-title {
    font-size: 1.3rem;
    margin-bottom: 12px;
}

.why-card-desc {
    color: var(--text-muted);
    font-size: 0.95rem;
    font-weight: 300;
}

.why-card:hover {
    transform: translateY(-8px);
    border-color: rgba(225, 6, 0, 0.25);
    box-shadow: var(--shadow-glow);
}

.why-card:hover::after {
    opacity: 1;
}

.why-card:hover .why-card-icon {
    background-color: var(--primary-brand);
    color: var(--accent-white);
    transform: scale(1.1) rotate(5deg);
    box-shadow: var(--shadow-glow);
}

/* Party Hall Section */
.party-hall-grid {
    display: grid;
    grid-template-columns: 1.1fr 0.9fr;
    gap: 60px;
    align-items: center;
}

.party-hall-features {
    list-style: none;
    margin: 30px 0;
    padding: 0;
}

.party-hall-features li {
    display: flex;
    align-items: center;
    gap: 15px;
    margin-bottom: 16px;
    font-size: 1.05rem;
    color: var(--text-muted);
}

.party-hall-features li svg {
    width: 20px;
    height: 20px;
    color: var(--primary-brand);
    flex-shrink: 0;
}

.party-hall-pricing {
    display: inline-flex;
    flex-direction: column;
    background-color: rgba(225, 6, 0, 0.05);
    border: 1px dashed rgba(225, 6, 0, 0.3);
    padding: 15px 25px;
    border-radius: var(--border-radius-md);
    margin-top: 15px;
}

.party-hall-pricing .price-label {
    font-size: 0.75rem;
    text-transform: uppercase;
    letter-spacing: 2px;
    color: var(--text-muted);
    margin-bottom: 5px;
}

.party-hall-pricing .price-val {
    font-size: 2.2rem;
    font-weight: 800;
    color: var(--accent-white);
    font-family: var(--font-headings);
}

.party-hall-pricing .price-val small {
    font-size: 1.1rem;
    color: var(--text-muted);
    font-weight: 400;
}

.party-hall-visual {
    position: relative;
    width: 100%;
    display: flex;
    justify-content: center;
    align-items: center;
}

.visual-card {
    position: relative;
    width: 100%;
    max-width: 440px;
    height: 380px;
    background-color: var(--card-bg);
    border: 1px solid rgba(255, 255, 255, 0.03);
    border-radius: var(--border-radius-lg);
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: center;
    padding: 40px;
    box-shadow: var(--shadow-soft);
    overflow: hidden;
}

.visual-glow {
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    width: 250px;
    height: 250px;
    background: radial-gradient(circle, rgba(225, 6, 0, 0.15) 0%, transparent 70%);
    filter: blur(40px);
    pointer-events: none;
}

.theater-screen {
    width: 100%;
    height: 180px;
    background-color: #080808;
    border: 4px solid #1a1a1a;
    border-radius: var(--border-radius-sm);
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.6), inset 0 0 20px rgba(225, 6, 0, 0.2);
    position: relative;
    display: flex;
    justify-content: center;
    align-items: center;
    overflow: hidden;
}

.screen-glow {
    position: absolute;
    bottom: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: linear-gradient(to top, rgba(225, 6, 0, 0.2), transparent);
    pointer-events: none;
}

.screen-content {
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 12px;
    z-index: 2;
}

.screen-play-icon {
    width: 44px;
    height: 44px;
    color: var(--primary-brand);
    filter: drop-shadow(0 0 8px rgba(225, 6, 0, 0.6));
    animation: playPulse 2s infinite ease-in-out;
}

.screen-content span {
    font-size: 0.8rem;
    font-weight: 700;
    letter-spacing: 3px;
    color: var(--text-muted);
    font-family: var(--font-headings);
}

.party-decoration {
    display: flex;
    gap: 16px;
    margin-top: 30px;
    font-size: 1.8rem;
    z-index: 2;
}

.setup-badge {
    position: absolute;
    top: 20px;
    right: 20px;
    background-color: var(--primary-brand);
    color: var(--accent-white);
    font-size: 0.7rem;
    font-weight: 700;
    text-transform: uppercase;
    letter-spacing: 2px;
    padding: 6px 12px;
    border-radius: 30px;
    box-shadow: var(--shadow-glow);
    z-index: 2;
}

@keyframes playPulse {
    0%, 100% {
        transform: scale(1);
        filter: drop-shadow(0 0 8px rgba(225, 6, 0, 0.6));
    }
    50% {
        transform: scale(1.1);
        filter: drop-shadow(0 0 16px rgba(225, 6, 0, 0.9));
    }
}

/* Gallery Section */
.gallery-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 20px;
}

.gallery-item {
    position: relative;
    border-radius: var(--border-radius-md);
    overflow: hidden;
    aspect-ratio: 1 / 1;
    cursor: pointer;
    box-shadow: var(--shadow-soft);
    border: 1px solid rgba(255, 255, 255, 0.05);
}

.gallery-item img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: var(--transition-slow);
}

.gallery-item-overlay {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background-color: rgba(225, 6, 0, 0.85);
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: center;
    opacity: 0;
    transition: var(--transition-normal);
    padding: 20px;
    text-align: center;
}

.gallery-item-icon {
    width: 48px;
    height: 48px;
    border-radius: 50%;
    background-color: var(--accent-white);
    color: var(--primary-brand);
    display: flex;
    align-items: center;
    justify-content: center;
    margin-bottom: 12px;
    transform: scale(0.7);
    transition: var(--transition-normal);
    box-shadow: 0 4px 10px rgba(0,0,0,0.3);
}

.gallery-item-icon svg {
    width: 20px;
    height: 20px;
}

.gallery-item-title {
    font-size: 1.15rem;
    font-weight: 700;
    color: var(--accent-white);
    transform: translateY(10px);
    transition: var(--transition-normal);
}

.gallery-item:hover .gallery-item-overlay {
    opacity: 1;
}

.gallery-item:hover .gallery-item-icon {
    transform: scale(1);
}

.gallery-item:hover .gallery-item-title {
    transform: translateY(0);
}

.gallery-item:hover img {
    transform: scale(1.08);
}

/* Lightbox Modal */
.lightbox {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background-color: rgba(10, 10, 10, 0.95);
    z-index: 2000;
    display: none;
    justify-content: center;
    align-items: center;
    opacity: 0;
    transition: opacity var(--transition-normal);
}

.lightbox.active {
    display: flex;
    opacity: 1;
}

.lightbox-content {
    position: relative;
    max-width: 90%;
    max-height: 80%;
    display: flex;
    flex-direction: column;
    align-items: center;
}

.lightbox-img {
    max-width: 100%;
    max-height: 70vh;
    object-fit: contain;
    border-radius: var(--border-radius-sm);
    box-shadow: 0 0 40px rgba(0,0,0,0.8);
    transform: scale(0.95);
    transition: transform var(--transition-normal);
}

.lightbox.active .lightbox-img {
    transform: scale(1);
}

.lightbox-caption {
    color: var(--accent-white);
    font-family: var(--font-headings);
    font-size: 1.25rem;
    font-weight: 600;
    margin-top: 20px;
    text-align: center;
}

.lightbox-close {
    position: absolute;
    top: -50px;
    right: 0;
    background: none;
    border: none;
    color: var(--accent-white);
    cursor: pointer;
    font-size: 2rem;
    transition: var(--transition-fast);
}

.lightbox-close:hover {
    color: var(--primary-brand);
    transform: scale(1.1);
}

.lightbox-nav {
    position: absolute;
    top: 50%;
    transform: translateY(-50%);
    background: rgba(255,255,255,0.05);
    border: 1px solid rgba(255,255,255,0.1);
    color: var(--accent-white);
    width: 50px;
    height: 50px;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    cursor: pointer;
    transition: var(--transition-normal);
    z-index: 10;
}

.lightbox-nav:hover {
    background: var(--primary-brand);
    border-color: var(--primary-brand);
    box-shadow: var(--shadow-glow);
}

.lightbox-prev {
    left: -80px;
}

.lightbox-next {
    right: -80px;
}

.lightbox-nav svg {
    width: 20px;
    height: 20px;
}

/* Instagram Section */
.instagram-banner {
    background-color: var(--card-bg);
    border-radius: var(--border-radius-lg);
    border: 1px solid rgba(255, 255, 255, 0.03);
    padding: 60px;
    display: flex;
    align-items: center;
    gap: 60px;
    box-shadow: var(--shadow-soft);
    position: relative;
    overflow: hidden;
}

.instagram-banner::before {
    content: '';
    position: absolute;
    top: -50%;
    right: -20%;
    width: 500px;
    height: 500px;
    background: radial-gradient(circle, rgba(225, 6, 0, 0.08) 0%, transparent 60%);
    border-radius: 50%;
    pointer-events: none;
}

.instagram-content {
    flex-grow: 1;
}

.insta-icon-main {
    width: 60px;
    height: 60px;
    color: var(--primary-brand);
    margin-bottom: 24px;
}

.instagram-content h3 {
    font-size: 2rem;
    margin-bottom: 12px;
}

.instagram-content p {
    color: var(--text-muted);
    font-size: 1.05rem;
    margin-bottom: 30px;
    max-width: 500px;
}

.instagram-handle {
    font-family: var(--font-headings);
    font-size: 1.4rem;
    font-weight: 700;
    margin-bottom: 24px;
    display: flex;
    align-items: center;
    gap: 8px;
}

.instagram-handle span {
    color: var(--primary-brand);
}

.instagram-qr-container {
    width: 220px;
    background-color: var(--primary-bg);
    padding: 20px;
    border-radius: var(--border-radius-md);
    border: 1px solid rgba(255, 255, 255, 0.06);
    text-align: center;
    box-shadow: inset 0 2px 10px rgba(0,0,0,0.5);
    flex-shrink: 0;
}

.instagram-qr-container img {
    width: 100%;
    aspect-ratio: 1/1;
    border-radius: var(--border-radius-sm);
    margin-bottom: 12px;
    object-fit: cover;
}

.instagram-qr-container span {
    font-size: 0.75rem;
    color: var(--text-muted);
    letter-spacing: 0.05em;
    text-transform: uppercase;
}

/* Contact Section */
.contact-grid {
    display: grid;
    grid-template-columns: 1fr 1.2fr;
    gap: 60px;
    align-items: stretch;
}

.contact-info {
    display: flex;
    flex-direction: column;
    justify-content: space-between;
}

.contact-info-header h3 {
    font-size: 2rem;
    margin-bottom: 16px;
}

.contact-info-header p {
    color: var(--text-muted);
    margin-bottom: 36px;
}

.contact-details {
    display: flex;
    flex-direction: column;
    gap: 30px;
}

.contact-detail-item {
    display: flex;
    gap: 20px;
}

.contact-detail-icon {
    width: 50px;
    height: 50px;
    border-radius: var(--border-radius-sm);
    background-color: rgba(225, 6, 0, 0.08);
    border: 1px solid rgba(225, 6, 0, 0.15);
    display: flex;
    align-items: center;
    justify-content: center;
    color: var(--primary-brand);
    flex-shrink: 0;
}

.contact-detail-icon svg {
    width: 22px;
    height: 22px;
}

.contact-detail-text h4 {
    font-size: 1.1rem;
    margin-bottom: 6px;
}

.contact-detail-text p {
    color: var(--text-muted);
    font-size: 0.95rem;
}

.map-container {
    width: 100%;
    height: 480px;
    border-radius: var(--border-radius-md);
    overflow: hidden;
    box-shadow: var(--shadow-soft);
    border: 1px solid rgba(255,255,255,0.06);
}

.map-container iframe {
    width: 100%;
    height: 100%;
    border: 0;
    filter: invert(90%) hue-rotate(180deg) brightness(0.9) contrast(1.2);
}

/* Footer */
.footer {
    background-color: #050505;
    padding: 80px 0 40px;
    border-top: 1px solid rgba(255, 255, 255, 0.03);
}

.footer-grid {
    display: grid;
    grid-template-columns: 1.5fr 1fr 1fr;
    gap: 60px;
    margin-bottom: 60px;
}

.footer-brand .footer-logo {
    width: 140px;
    height: auto;
    margin-bottom: 20px;
}

.footer-brand p {
    color: var(--text-muted);
    font-size: 0.95rem;
    margin-bottom: 24px;
    max-width: 320px;
}

.social-links {
    display: flex;
    gap: 16px;
}

.social-link {
    width: 40px;
    height: 40px;
    border-radius: 50%;
    background-color: rgba(255, 255, 255, 0.03);
    border: 1px solid rgba(255, 255, 255, 0.05);
    display: flex;
    align-items: center;
    justify-content: center;
    color: var(--text-muted);
    transition: var(--transition-normal);
}

.social-link:hover {
    background-color: var(--primary-brand);
    border-color: var(--primary-brand);
    color: var(--accent-white);
    box-shadow: var(--shadow-glow);
    transform: translateY(-3px);
}

.social-link svg {
    width: 18px;
    height: 18px;
}

.footer-nav-title {
    font-size: 1.15rem;
    margin-bottom: 24px;
    text-transform: uppercase;
    letter-spacing: 0.05em;
    position: relative;
    padding-bottom: 8px;
}

.footer-nav-title::after {
    content: '';
    position: absolute;
    bottom: 0;
    left: 0;
    width: 30px;
    height: 2px;
    background-color: var(--primary-brand);
}

.footer-nav-links {
    list-style: none;
    display: flex;
    flex-direction: column;
    gap: 14px;
}

.footer-nav-links a {
    color: var(--text-muted);
    font-size: 0.95rem;
}

.footer-nav-links a:hover {
    color: var(--accent-white);
    padding-left: 6px;
}

.footer-bottom {
    padding-top: 40px;
    border-top: 1px solid rgba(255, 255, 255, 0.05);
    display: flex;
    justify-content: space-between;
    align-items: center;
    flex-wrap: wrap;
    gap: 20px;
}

.footer-bottom p {
    color: var(--text-muted);
    font-size: 0.85rem;
}

/* Floating Widgets */
.scroll-to-top {
    position: fixed;
    bottom: 30px;
    right: 30px;
    width: 50px;
    height: 50px;
    border-radius: var(--border-radius-circle);
    background-color: var(--primary-brand);
    color: var(--accent-white);
    border: none;
    cursor: pointer;
    box-shadow: var(--shadow-glow);
    display: flex;
    align-items: center;
    justify-content: center;
    opacity: 0;
    visibility: hidden;
    transform: translateY(15px);
    transition: var(--transition-normal);
    z-index: 999;
}

.scroll-to-top.visible {
    opacity: 1;
    visibility: visible;
    transform: translateY(0);
}

.scroll-to-top:hover {
    background-color: var(--accent-white);
    color: var(--primary-bg);
    box-shadow: 0 5px 15px rgba(255, 255, 255, 0.3);
    transform: translateY(-3px);
}

.scroll-to-top svg {
    width: 20px;
    height: 20px;
}

/* Scroll Reveal Animations */
.reveal {
    opacity: 0;
    transition: opacity var(--transition-slow), transform var(--transition-slow);
}

.reveal-fade {
    transform: translateY(0);
}

.reveal-slide-up {
    transform: translateY(40px);
}

.reveal-slide-left {
    transform: translateX(-40px);
}

.reveal-slide-right {
    transform: translateX(40px);
}

.reveal.active {
    opacity: 1;
    transform: translate(0, 0);
}

/* Animation Delays */
.delay-100 { transition-delay: 0.1s; }
.delay-200 { transition-delay: 0.2s; }
.delay-300 { transition-delay: 0.3s; }
.delay-400 { transition-delay: 0.4s; }
.delay-500 { transition-delay: 0.5s; }

/* CSS Keyframes */
@keyframes fadeInUp {
    from {
        opacity: 0;
        transform: translateY(30px);
    }
    to {
        opacity: 1;
        transform: translateY(0);
    }
}

/* =========================================
  MEDIA QUERIES (Mobile-First responsive)
========================================= */

@media (max-width: 1024px) {
    .section {
        padding: 80px 0;
    }
    
    .about-grid {
        gap: 40px;
    }
    
    .party-hall-grid {
        gap: 40px;
    }
    
    .about-img-frame img {
        height: 380px;
    }
    
    .specialties-grid {
        grid-template-columns: repeat(2, 1fr);
    }
    
    .why-grid {
        grid-template-columns: repeat(2, 1fr);
    }
    
    .gallery-grid {
        grid-template-columns: repeat(2, 1fr);
    }
    
    .contact-grid {
        gap: 40px;
    }
    
    .map-container {
        height: 400px;
    }
    
    .instagram-banner {
        padding: 40px;
        gap: 40px;
    }
}

@media (max-width: 768px) {
    .navbar {
        height: var(--nav-height-collapsed);
    }
    
    .nav-links {
        position: fixed;
        top: 0;
        right: -100%;
        width: 300px;
        height: 100vh;
        background-color: var(--primary-bg);
        border-left: 1px solid rgba(255,255,255,0.05);
        flex-direction: column;
        justify-content: center;
        gap: 40px;
        padding: 40px;
        transition: var(--transition-normal);
        z-index: 1005;
        box-shadow: -10px 0 30px rgba(0,0,0,0.8);
    }
    
    .nav-links.active {
        right: 0;
    }
    
    .hamburger-toggle {
        display: block;
    }
    
    .about-grid {
        grid-template-columns: 1fr;
        gap: 50px;
    }
    
    .party-hall-grid {
        grid-template-columns: 1fr;
        gap: 50px;
        text-align: center;
    }
    
    .party-hall-features li {
        justify-content: center;
    }
    
    .party-hall-pricing {
        margin-left: auto;
        margin-right: auto;
    }
    
    .about-img-container {
        order: 2;
        max-width: 500px;
        margin: 0 auto;
    }
    
    .menu-grid {
        grid-template-columns: 1fr;
    }
    
    .instagram-banner {
        flex-direction: column;
        text-align: center;
    }
    
    .instagram-content p {
        margin-left: auto;
        margin-right: auto;
    }
    
    .instagram-handle {
        justify-content: center;
    }
    
    .contact-grid {
        grid-template-columns: 1fr;
    }
    
    .footer-grid {
        grid-template-columns: 1fr;
        gap: 40px;
    }
    
    .lightbox-nav {
        width: 40px;
        height: 40px;
    }
    
    .lightbox-prev {
        left: -50px;
    }
    
    .lightbox-next {
        right: -50px;
    }
}

@media (max-width: 576px) {
    .section-title {
        font-size: 2rem;
    }
    
    .hero-ctas {
        flex-direction: column;
        gap: 12px;
        width: 100%;
        max-width: 300px;
    }
    
    .btn {
        width: 100%;
        padding: 14px 28px;
    }
    
    .specialties-grid {
        grid-template-columns: 1fr;
    }
    
    .why-grid {
        grid-template-columns: 1fr;
    }
    
    .gallery-grid {
        grid-template-columns: 1fr;
    }
    
    .about-features {
        grid-template-columns: 1fr;
    }
    
    .menu-item-card {
        flex-direction: column;
        text-align: center;
        padding: 20px;
    }
    
    .menu-item-header {
        flex-direction: column;
        align-items: center;
        gap: 4px;
    }
    
    .lightbox-prev {
        left: 10px;
        top: auto;
        bottom: -60px;
        transform: none;
    }
    
    .lightbox-next {
        right: 10px;
        top: auto;
        bottom: -60px;
        transform: none;
    }
    
    .lightbox-caption {
        margin-top: 30px;
        margin-bottom: 40px;
    }
    
    .footer-bottom {
        flex-direction: column;
        text-align: center;
    }
}
