:root {
    --primary-red: #d62828;
    --primary-red-dark: #b51a1a;
    --text-dark: #222222;
    --text-muted: #666666;
    --bg-light: #f9fafb;
    --white: #ffffff;
    --black: #000000;
    --font-main: 'Poppins', sans-serif;
    --font-display: 'Brume', serif;
    --radius-lg: 24px;
    --radius-md: 16px;
    --shadow-sm: 0 4px 12px rgba(0, 0, 0, 0.05);
    --shadow-md: 0 20px 40px rgba(0, 0, 0, 0.1);
    --shadow-hover: 0 30px 60px rgba(0, 0, 0, 0.15);
    --transition: all 0.4s cubic-bezier(0.165, 0.84, 0.44, 1);
}

/* Animations */
@keyframes fadeInUp {
    from {
        opacity: 0;
        transform: translateY(30px);
    }

    to {
        opacity: 1;
        transform: translateY(0);
    }
}

@keyframes fadeInRight {
    from {
        opacity: 0;
        transform: translateX(-30px);
    }

    to {
        opacity: 1;
        transform: translateX(0);
    }
}

@keyframes scaleIn {
    from {
        opacity: 0;
        transform: scale(0.95);
    }

    to {
        opacity: 1;
        transform: scale(1);
    }
}

@keyframes pulse {
    0% {
        transform: scale(1);
    }

    50% {
        transform: scale(1.02);
    }

    100% {
        transform: scale(1);
    }
}

@keyframes float {
    0% {
        transform: translateY(0);
    }

    50% {
        transform: translateY(-15px);
    }

    100% {
        transform: translateY(0);
    }
}

@keyframes shimmer {
    0% {
        background-position: -200% 0;
    }

    100% {
        background-position: 200% 0;
    }
}

@keyframes glow {
    0% {
        box-shadow: 0 0 5px rgba(214, 40, 40, 0.2);
    }

    50% {
        box-shadow: 0 0 25px rgba(214, 40, 40, 0.6);
    }

    100% {
        box-shadow: 0 0 5px rgba(214, 40, 40, 0.2);
    }
}

.reveal {
    opacity: 0;
    transition: var(--transition);
}

.reveal.active {
    animation: fadeInUp 0.8s forwards;
}

.reveal-right.active {
    animation: fadeInRight 0.8s forwards;
}

.reveal-scale.active {
    animation: scaleIn 0.8s forwards;
}

html {
    scroll-behavior: smooth;
}

body {
    font-family: var(--font-main);
    color: var(--text-dark);
    background-color: var(--bg-light);
    line-height: 1.6;
    padding-top: 80px;
    /* Space for sticky nav */
}

.container {
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 20px;
}

/* Sticky Navigation Overrides */
.header {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    z-index: 1000;
    background: rgba(255, 255, 255, 0.95);
    backdrop-filter: blur(10px);
    border-bottom: 1px solid rgba(0, 0, 0, 0.05);
    padding: 10px 0;
    transition: var(--transition);
}

/* Hero Section */
.hero {
    position: relative;
    padding: 80px 0 120px;
    background: var(--white);
    overflow: hidden;
}

.hero-content {
    display: grid;
    grid-template-columns: 1fr 1fr;
    align-items: center;
    gap: 60px;
}

.hero-text h1 {
    font-family: var(--font-display);
    font-size: clamp(2.5rem, 5vw, 4rem);
    line-height: 1.1;
    color: var(--primary-red);
    margin-bottom: 20px;
}

.hero-text p {
    font-size: 1.25rem;
    color: var(--text-muted);
    margin-bottom: 35px;
    max-width: 500px;
}

.hero-image {
    position: relative;
    border-radius: var(--radius-lg);
    overflow: hidden;
    box-shadow: var(--shadow-md);
}

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

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

/* Buttons */
.btn-group {
    display: flex;
    gap: 15px;
    flex-wrap: wrap;
}

.btn-ft {
    display: inline-flex;
    align-items: center;
    padding: 14px 28px;
    border-radius: 50px;
    font-weight: 600;
    text-decoration: none;
    transition: var(--transition);
    cursor: pointer;
}

.btn-ft-primary {
    background: var(--primary-red);
    color: var(--white);
    box-shadow: 0 4px 15px rgba(214, 40, 40, 0.3);
}

.btn-ft-primary:hover {
    background: var(--primary-red-dark);
    transform: translateY(-2px);
    box-shadow: 0 6px 20px rgba(214, 40, 40, 0.4);
}

.btn-ft-secondary {
    background: var(--white);
    color: var(--text-dark);
    border: 1px solid #e2e8f0;
}

.btn-ft-secondary:hover {
    border-color: var(--primary-red);
    color: var(--primary-red);
    transform: translateY(-2px);
}

/* Language Switcher */
.lang-switcher {
    position: relative;
    display: inline-block;
}

.lang-btn {
    display: flex;
    align-items: center;
    gap: 8px;
    padding: 8px 16px;
    border-radius: 50px;
    border: 1px solid #e2e8f0;
    color: var(--text-dark);
    text-decoration: none;
    font-weight: 500;
    font-size: 0.9rem;
    transition: var(--transition);
    background: var(--white);
}

.lang-btn:hover {
    border-color: var(--primary-red);
    color: var(--primary-red);
}

.lang-dropdown {
    position: absolute;
    top: 100%;
    right: 0;
    margin-top: 10px;
    background: var(--white);
    border-radius: 12px;
    box-shadow: var(--shadow-md);
    padding: 10px;
    min-width: 120px;
    opacity: 0;
    visibility: hidden;
    transform: translateY(10px);
    transition: var(--transition);
    z-index: 100;
}

.lang-switcher:hover .lang-dropdown {
    opacity: 1;
    visibility: visible;
    transform: translateY(0);
}

.lang-dropdown a {
    display: block;
    padding: 8px 15px;
    color: var(--text-dark);
    text-decoration: none;
    border-radius: 8px;
    transition: background 0.2s;
}

.lang-dropdown a:hover {
    background: #f8fafc;
    color: var(--primary-red);
}

.lang-dropdown a.active {
    font-weight: 700;
    color: var(--primary-red);
}

/* Streamlined Schedule Highlight */
.next-schedule-highlight {
    background: linear-gradient(135deg, var(--primary-red), #e63946);
    color: var(--white);
    padding: 80px 40px;
    border-radius: var(--radius-lg);
    box-shadow: var(--shadow-md);
    text-align: center;
    position: relative;
    overflow: hidden;
    margin-top: -60px;
    z-index: 10;
    animation: float 6s infinite ease-in-out, glow 4s infinite ease-in-out;
}

.next-schedule-highlight .badge-live {
    background: rgba(255, 255, 255, 0.2);
    padding: 6px 16px;
    border-radius: 50px;
    font-size: 0.85rem;
    text-transform: uppercase;
    letter-spacing: 2px;
    margin-bottom: 25px;
    display: inline-block;
}

.next-schedule-date {
    font-family: var(--font-display);
    font-size: clamp(3.5rem, 10vw, 6rem);
    line-height: 0.9;
    margin-bottom: 20px;
    display: block;
}

.shimmer-btn {
    background: linear-gradient(90deg, rgba(255, 255, 255, 0) 0%, rgba(255, 255, 255, 0.4) 50%, rgba(255, 255, 255, 0) 100%);
    background-size: 200% 100%;
    animation: shimmer 3s infinite linear;
    background-color: var(--white) !important;
    color: var(--primary-red) !important;
}

/* Sections Common */
section {
    padding: 60px 0;
}

.section-title {
    text-align: center;
    margin-bottom: 50px;
}

.section-title h2 {
    font-family: var(--font-display);
    font-size: 2.5rem;
    color: var(--primary-red);
    margin-bottom: 15px;
}

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

/* Weekly Schedule */
.schedule-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
    gap: 20px;
}

.schedule-card {
    background: var(--white);
    padding: 30px;
    border-radius: var(--radius-md);
    box-shadow: var(--shadow-sm);
    border: 1px solid rgba(0, 0, 0, 0.03);
    transition: var(--transition);
    text-align: center;
}

.schedule-card:hover {
    transform: translateY(-8px);
    box-shadow: var(--shadow-hover);
    border-color: var(--primary-red);
}

.schedule-card .day {
    font-weight: 700;
    color: var(--primary-red);
    font-size: 1.25rem;
    margin-bottom: 10px;
    display: block;
}

.schedule-card .location {
    font-size: 1.1rem;
    font-weight: 500;
    margin-bottom: 5px;
    display: block;
}

.schedule-card .time {
    color: var(--text-muted);
    font-size: 0.9rem;
}

/* Menu Section */
.menu-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(350px, 1fr));
    gap: 40px;
}

/* Premium Menu Card Style */
.menu-card {
    background: var(--white);
    border-radius: 30px;
    overflow: hidden;
    box-shadow: var(--shadow-md);
    transition: var(--transition);
    display: flex;
    flex-direction: column;
    height: 100%;
    border: 1px solid rgba(0, 0, 0, 0.05);
    position: relative;
    transform-style: preserve-3d;
}

.menu-card:hover {
    box-shadow: var(--shadow-hover);
    border-color: rgba(214, 40, 40, 0.15);
    transform: translateY(-10px);
}

.menu-card-img-wrapper {
    overflow: hidden;
    height: 250px;
}

.menu-card-img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: transform 0.8s cubic-bezier(0.165, 0.84, 0.44, 1);
}

.menu-card:hover .menu-card-img {
    transform: scale(1.1);
}

.menu-card-content {
    padding: 2rem;
    flex-grow: 1;
}

.menu-card-tag {
    background: #f4b41a;
    color: #cc0605;
    padding: 0.3rem 1rem;
    border-radius: 50px;
    font-weight: 800;
    font-size: 0.7rem;
    text-transform: uppercase;
    display: inline-block;
    margin-bottom: 0.5rem;
}

.menu-card h3 {
    font-size: 1.4rem;
    color: var(--primary-red);
    margin: 0.5rem 0 1rem;
    line-height: 1.2;
    font-weight: 700;
}

/* Dietary Badges */
.dietary-badge {
    display: inline-flex;
    align-items: center;
    gap: 0.5rem;
    font-size: 0.7rem;
    font-weight: 700;
    text-transform: uppercase;
    padding: 0.2rem 0.5rem;
    border-radius: 4px;
    margin-bottom: 0.5rem;
    letter-spacing: 0.5px;
}

.dietary-badge i {
    width: 8px;
    height: 8px;
    border-radius: 2px;
}

.veg {
    background: rgba(46, 125, 50, 0.1);
    color: #2e7d32;
    border: 1px solid rgba(46, 125, 50, 0.2);
}

.veg i {
    background: #2e7d32;
    border: 1px solid #1b5e20;
    position: relative;
}

.veg i::after {
    content: '';
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    width: 3px;
    height: 3px;
    background: white;
    border-radius: 50%;
}

.non-veg {
    background: rgba(198, 40, 40, 0.1);
    color: #c62828;
    border: 1px solid rgba(198, 40, 40, 0.2);
}

.non-veg i {
    background: #c62828;
    border: 1px solid #b71c1c;
    position: relative;
}

.non-veg i::after {
    content: '';
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    width: 3px;
    height: 3px;
    background: white;
    border-radius: 50%;
}

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

/* AOS-like Simple Animation */
[data-aos] {
    opacity: 0;
    transform: translateY(30px);
    transition: all 0.6s cubic-bezier(0.165, 0.84, 0.44, 1);
}

[data-aos].aos-animate {
    opacity: 1;
    transform: translateY(0);
}

/* CTA Section */
.cta-banner {
    background: var(--white);
    border-radius: var(--radius-lg);
    padding: 60px;
    text-align: center;
    box-shadow: var(--shadow-md);
    margin: 0 auto;
    max-width: 900px;
}

.cta-banner h2 {
    font-family: var(--font-display);
    font-size: 2.5rem;
    margin-bottom: 20px;
    color: var(--primary-red);
}

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

/* Premium Collage Gallery */
.gallery-grid {
    display: grid;
    grid-template-columns: repeat(auto-fill, minmax(200px, 1fr));
    grid-auto-rows: 200px;
    grid-auto-flow: dense;
    gap: 15px;
}

.gallery-item {
    position: relative;
    overflow: hidden;
    border-radius: var(--radius-md);
    cursor: pointer;
    box-shadow: var(--shadow-sm);
    transition: all 0.5s cubic-bezier(0.165, 0.84, 0.44, 1);
}

.gallery-item.large {
    grid-column: span 2;
    grid-row: span 2;
}

.gallery-item.wide {
    grid-column: span 2;
}

.gallery-item.tall {
    grid-row: span 2;
}

.gallery-item img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: transform 1.2s cubic-bezier(0.165, 0.84, 0.44, 1);
}

.gallery-item:hover {
    transform: translateY(-5px);
    box-shadow: var(--shadow-md);
    z-index: 2;
}

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

.gallery-item::after {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: linear-gradient(to bottom, transparent, rgba(0, 0, 0, 0.3));
    opacity: 0;
    transition: opacity 0.3s ease;
}

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

/* Mobile Adjustments for Collage */
@media (max-width: 600px) {
    .gallery-grid {
        grid-template-columns: repeat(2, 1fr);
        grid-auto-rows: 150px;
    }

    .gallery-item.large,
    .gallery-item.wide {
        grid-column: span 2;
    }
}

/* Testimonials */
.testimonial-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: 30px;
}

.testimonial-card {
    background: var(--white);
    padding: 30px;
    border-radius: var(--radius-md);
    box-shadow: var(--shadow-sm);
    position: relative;
    border-left: 4px solid var(--primary-red);
}

.testimonial-card p {
    font-style: italic;
    margin-bottom: 15px;
    color: var(--text-dark);
}

.testimonial-card span {
    font-weight: 700;
    color: var(--primary-red);
}

/* Responsive Overrides */
@media (max-width: 992px) {
    .hero-content {
        grid-template-columns: 1fr;
        text-align: center;
    }

    .hero-text p {
        margin-left: auto;
        margin-right: auto;
    }

    .btn-group {
        justify-content: center;
    }
}

@media (max-width: 768px) {
    section {
        padding: 50px 0;
    }

    .hero-text h1 {
        font-size: 2.5rem;
    }

    .cta-banner {
        padding: 30px;
    }
}

/* Professional Social Buttons */
.social-icons {
    margin: 2rem 0;
}

.social-btn {
    width: 45px;
    height: 45px;
    display: flex;
    align-items: center;
    justify-content: center;
    border-radius: 50%;
    color: white !important;
    font-size: 1.2rem;
    background: rgba(255, 255, 255, 0.1);
    backdrop-filter: blur(10px);
    border: 1px solid rgba(255, 255, 255, 0.2);
    transition: all 0.4s cubic-bezier(0.165, 0.84, 0.44, 1);
    text-decoration: none !important;
}

.social-btn:hover {
    transform: translateY(-5px) scale(1.1);
    box-shadow: 0 10px 20px rgba(0, 0, 0, 0.3);
    border-color: rgba(255, 255, 255, 0.5);
}

.social-btn.instagram:hover {
    background: linear-gradient(45deg, #f09433, #e6683c, #dc2743, #cc2366, #bc1888);
}

.social-btn.facebook:hover {
    background: #1877f2;
}

.social-btn.youtube:hover {
    background: #ff0000;
}