/* Modern Color Scheme Based on Signature Color #a886b7 */
/* ADD THIS AT THE VERY TOP of style.css */
@import url('https://fonts.googleapis.com/css2?family=Inter:wght@300;400;500;600;700&family=Playfair+Display:ital,wght@0,400..900;1,400..900&display=swap');

/* Your :root {} styles should come after this */
:root {
    --primary: #a886b7;
    --primary-light: #c5a9d4;
    --primary-dark: #8c6a9c;
    --primary-rgb: 168, 134, 183;
    
    --secondary: #FF9E6D;
    --accent: #4ECDC4;
    --success: #06D6A0;
    --vibrant-1: #FF6B6B;
    --vibrant-2: #FFD166;
    --vibrant-3: #4ECDC4;
    --vibrant-4: #FF9E6D;
    --vibrant-5: #A886B7;
    
    --white: #FFFFFF;
    --light: #F8F9FA;
    --dark: #2D3047;
    --text: #333333;
    --text-light: #6C757D;
    
    --glass-bg: rgba(255, 255, 255, 0.15);
    --glass-border: rgba(255, 255, 255, 0.25);
    --glass-shadow: 0 8px 32px rgba(0, 0, 0, 0.1);
    
    --transition: all 0.3s cubic-bezier(0.4, 0, 0.2, 1);
    --radius: 20px;
    --blur: blur(12px);
}

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

html {
    scroll-behavior: smooth;
}

body {
    font-family: 'Inter', sans-serif;
    background: linear-gradient(135deg, #667eea 0%, #764ba2 50%, #a886b7 100%);
    color: var(--text);
    line-height: 1.6;
    overflow-x: hidden;
    min-height: 100vh;
    position: relative;
}

/* Animated Gradient Background */
body::before {
    content: '';
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: 
        radial-gradient(circle at 20% 80%, rgba(255, 107, 107, 0.15) 0%, transparent 50%),
        radial-gradient(circle at 80% 20%, rgba(255, 209, 102, 0.15) 0%, transparent 50%),
        radial-gradient(circle at 40% 40%, rgba(78, 205, 196, 0.1) 0%, transparent 50%),
        radial-gradient(circle at 60% 60%, rgba(168, 134, 183, 0.2) 0%, transparent 50%);
    z-index: -2;
    animation: gradientShift 15s ease-in-out infinite;
}

@keyframes gradientShift {
    0%, 100% {
        background: 
            radial-gradient(circle at 20% 80%, rgba(255, 107, 107, 0.15) 0%, transparent 50%),
            radial-gradient(circle at 80% 20%, rgba(255, 209, 102, 0.15) 0%, transparent 50%),
            radial-gradient(circle at 40% 40%, rgba(78, 205, 196, 0.1) 0%, transparent 50%),
            radial-gradient(circle at 60% 60%, rgba(168, 134, 183, 0.2) 0%, transparent 50%);
    }
    25% {
        background: 
            radial-gradient(circle at 30% 70%, rgba(255, 107, 107, 0.15) 0%, transparent 50%),
            radial-gradient(circle at 70% 30%, rgba(255, 209, 102, 0.15) 0%, transparent 50%),
            radial-gradient(circle at 50% 50%, rgba(78, 205, 196, 0.1) 0%, transparent 50%),
            radial-gradient(circle at 40% 40%, rgba(168, 134, 183, 0.2) 0%, transparent 50%);
    }
    50% {
        background: 
            radial-gradient(circle at 40% 60%, rgba(255, 107, 107, 0.15) 0%, transparent 50%),
            radial-gradient(circle at 60% 40%, rgba(255, 209, 102, 0.15) 0%, transparent 50%),
            radial-gradient(circle at 60% 60%, rgba(78, 205, 196, 0.1) 0%, transparent 50%),
            radial-gradient(circle at 20% 20%, rgba(168, 134, 183, 0.2) 0%, transparent 50%);
    }
    75% {
        background: 
            radial-gradient(circle at 50% 50%, rgba(255, 107, 107, 0.15) 0%, transparent 50%),
            radial-gradient(circle at 50% 50%, rgba(255, 209, 102, 0.15) 0%, transparent 50%),
            radial-gradient(circle at 30% 70%, rgba(78, 205, 196, 0.1) 0%, transparent 50%),
            radial-gradient(circle at 70% 30%, rgba(168, 134, 183, 0.2) 0%, transparent 50%);
    }
}

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

/* Video Intro Only - Clean and Simple */
.video-intro {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: #000;
    z-index: 9999;
}

#introVideo {
    width: 100%;
    height: 100%;
    object-fit: cover;
    object-position: center;
}

.skip-btn {
    position: absolute;
    bottom: 30px;
    right: 30px;
    background: rgba(255, 255, 255, 0.2);
    backdrop-filter: blur(10px);
    border: 1px solid rgba(255, 255, 255, 0.3);
    color: var(--white);
    padding: 10px 20px;
    border-radius: 25px;
    cursor: pointer;
    transition: var(--transition);
    font-weight: 500;
    border: none;
}

.skip-btn:hover {
    background: rgba(255, 255, 255, 0.3);
    transform: translateY(-2px);
}

/* Background Elements (Blobs) */
.background-elements {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    z-index: -1;
    overflow: hidden;
}

.bg-circle {
    position: absolute;
    opacity: 0.8; /* Made them more visible */
    animation: float 25s infinite ease-in-out;
    filter: blur(50px); /* Soft blur */
    z-index: -1;
}

.circle-1 {
    width: 400px;
    height: 400px;
    top: -100px;
    left: -100px;
    background: linear-gradient(135deg, #FF6B6B, #FF9E6D);
    border-radius: 40% 60% 70% 30% / 40% 50% 60% 50%;
}

.circle-2 {
    width: 300px;
    height: 300px;
    top: 20%;
    right: -50px;
    animation-delay: 3s;
    background: linear-gradient(135deg, #4ECDC4, #06D6A0);
    border-radius: 60% 40% 30% 70% / 50% 60% 40% 50%;
}

.circle-3 {
    width: 250px;
    height: 250px;
    bottom: -50px;
    left: 20%;
    animation-delay: 6s;
    background: linear-gradient(135deg, #FFD166, #FF9E6D);
    border-radius: 30% 70% 50% 50% / 60% 40% 50% 40%;
}

.circle-4 {
    width: 350px;
    height: 350px;
    bottom: -100px;
    right: 10%;
    animation-delay: 9s;
    background: linear-gradient(135deg, #A886B7, #8c6a9c);
    border-radius: 50% 50% 30% 70% / 40% 60% 30% 60%;
}

@keyframes float {
    0%, 100% { 
        transform: translateY(0) rotate(0deg) scale(1);
    }
    33% { 
        transform: translateY(-30px) rotate(120deg) scale(1.1);
    }
    66% { 
        transform: translateY(15px) rotate(240deg) scale(0.9);
    }
}

/* Glass Morphism Base Styles */
.glass-card {
    background: var(--glass-bg);
    backdrop-filter: var(--blur);
    -webkit-backdrop-filter: var(--blur);
    border: 1px solid var(--glass-border);
    border-radius: var(--radius);
    box-shadow: 
        var(--glass-shadow),
        inset 0 1px 0 rgba(255, 255, 255, 0.2);
    transition: var(--transition);
    position: relative;
    overflow: hidden;
}

.glass-card::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.6s ease;
}

.glass-card:hover::before {
    left: 100%;
}

.glass-button {
    background: var(--glass-bg);
    backdrop-filter: var(--blur);
    -webkit-backdrop-filter: var(--blur);
    border: 1px solid var(--glass-border);
    border-radius: 50px;
    padding: 12px 24px;
    color: var(--text);
    text-decoration: none;
    font-weight: 500;
    display: inline-flex;
    align-items: center;
    gap: 8px;
    transition: var(--transition);
    cursor: pointer;
    font-size: 0.95rem;
    border: none;
    position: relative;
    overflow: hidden;
}

.glass-button::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.6s ease;
}

.glass-button:hover::before {
    left: 100%;
}

.glass-button:hover {
    transform: translateY(-2px);
    box-shadow: 
        0 12px 40px rgba(0, 0, 0, 0.15),
        0 4px 15px rgba(168, 134, 183, 0.2);
    border-color: var(--primary-light);
}

.primary-btn {
    background: linear-gradient(135deg, var(--primary), var(--primary-dark));
    color: var(--white);
    border: 1px solid var(--primary);
}

.secondary-btn {
    background: transparent;
    color: var(--primary);
    border: 1px solid var(--primary);
}

.large {
    padding: 16px 32px;
    font-size: 1.1rem;
}

/* Header */
.glass-header {
    background: var(--glass-bg);
    backdrop-filter: var(--blur);
    -webkit-backdrop-filter: var(--blur);
    border-bottom: 1px solid var(--glass-border);
    position: fixed;
    top: 0;
    left: 0;
    right: 0;
    z-index: 1000;
    transition: var(--transition);
}

.header-content {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 1rem 0;
}

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

.logo-image .logo-img {
    max-height: 70px;
    width: auto;
}

.logo-icon {
    width: 50px;
    height: 50px;
    background: linear-gradient(135deg, var(--primary), var(--primary-dark));
    border-radius: 12px;
    display: flex;
    align-items: center;
    justify-content: center;
    color: var(--white);
    font-size: 1.5rem;
    box-shadow: 0 4px 15px rgba(168, 134, 183, 0.3);
}

.logo-text h1 {
    font-size: 1.5rem;
    margin: 0;
    color: var(--white);
    font-weight: 600;
    text-shadow: 0 2px 4px rgba(0, 0, 0, 0.3);
}

.logo-text p {
    font-size: 0.8rem;
    margin: 0;
    color: rgba(255, 255, 255, 0.8);
}

.nav-menu {
    display: flex;
    align-items: center;
    gap: 0.5rem; 
    background: rgba(45, 48, 71, 0.25); 
    border: 1px solid var(--glass-border);
    border-radius: 50px; 
    padding: 0.5rem; 
    transition: var(--transition);
}

.nav-link {
    text-decoration: none;
    color: rgba(255, 255, 255, 0.8); 
    font-weight: 500;
    transition: var(--transition);
    position: relative;
    padding: 8px 16px;
    border-radius: 25px; 
    background: transparent; 
}

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

.nav-link.active {
    background: var(--primary-dark); 
    color: var(--white);
    box-shadow: 0 2px 10px rgba(0, 0, 0, 0.2);
}

.nav-cta {
    background: linear-gradient(135deg, var(--vibrant-1), var(--vibrant-4));
    color: var(--white);
    padding: 10px 20px;
    border-radius: 25px;
    text-decoration: none;
    font-weight: 500;
    transition: var(--transition);
    box-shadow: 0 4px 15px rgba(255, 107, 107, 0.3);
}

.nav-cta:hover {
    transform: translateY(-2px);
    box-shadow: 0 8px 25px rgba(255, 107, 107, 0.4);
}

.menu-toggle {
    display: none;
    flex-direction: column;
    background: none;
    border: none;
    cursor: pointer;
    gap: 4px;
    padding: 8px;
}

.menu-toggle span {
    width: 25px;
    height: 2px;
    background: var(--white);
    transition: var(--transition);
    border-radius: 2px;
}

/* Hero Section */
.hero {
    padding: 140px 0 80px;
    min-height: 100vh;
    display: flex;
    align-items: center;
    position: relative;
}

.hero::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: linear-gradient(
        135deg,
        rgba(102, 126, 234, 0.1) 0%,
        rgba(118, 75, 162, 0.1) 50%,
        rgba(168, 134, 183, 0.1) 100%
    );
    z-index: -1;
}

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

.hero-logo-img {
    max-width: 400px;
    width: 100%;
    height: auto;
    margin-bottom: 1.5rem;
}

.hero-title {
    font-size: 3.5rem;
    font-weight: 700;
    line-height: 1.1;
    margin-bottom: 1.5rem;
    color: var(--white);
    text-shadow: 0 4px 8px rgba(0, 0, 0, 0.3);
}

.accent-text {
    background: linear-gradient(135deg, var(--vibrant-2), var(--vibrant-4));
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
}

.hero-description {
    font-size: 1.2rem;
    color: rgba(255, 255, 255, 0.9);
    margin-bottom: 2.5rem;
    line-height: 1.7;
    text-shadow: 0 2px 4px rgba(0, 0, 0, 0.2);
}

.hero-buttons {
    display: flex;
    gap: 1rem;
    margin-bottom: 3rem;
}

/* Features Section */
.features {
    padding: 80px 0;
    position: relative;
}

.features::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: linear-gradient(
        135deg,
        rgba(78, 205, 196, 0.05) 0%,
        rgba(6, 214, 160, 0.05) 100%
    );
    z-index: -1;
}

.section-header {
    text-align: center;
    margin-bottom: 3rem;
}

.section-header h2 {
    font-size: 2.5rem;
    margin-bottom: 1rem;
    color: var(--white);
    text-shadow: 0 2px 4px rgba(0, 0, 0, 0.3);
}

.section-header p {
    font-size: 1.1rem;
    color: rgba(255, 255, 255, 0.9);
    max-width: 600px;
    margin: 0 auto;
    text-shadow: 0 1px 2px rgba(0, 0, 0, 0.2);
}

.features-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: 2rem;
}

.feature-card {
    padding: 2.5rem 2rem;
    text-align: center;
    transition: var(--transition);
    background: linear-gradient(135deg, rgba(255, 255, 255, 0.15), rgba(255, 255, 255, 0.1));
    border: 1px solid rgba(255, 255, 255, 0.2);
}

.feature-card:hover {
    transform: translateY(-10px);
    box-shadow: 
        0 20px 40px rgba(0, 0, 0, 0.15),
        0 8px 25px rgba(168, 134, 183, 0.2);
}

.feature-icon {
    width: 80px;
    height: 80px;
    background: linear-gradient(135deg, var(--vibrant-3), var(--vibrant-1));
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    margin: 0 auto 1.5rem;
    color: var(--white);
    font-size: 2rem;
    box-shadow: 0 8px 25px rgba(78, 205, 196, 0.3);
}

.feature-card h3 {
    margin-bottom: 1rem;
    color: var(--white);
}

.feature-card p {
    color: rgba(255, 255, 255, 0.8);
}

/* =======================================================
NEW BANNER CAROUSEL STYLES
=======================================================
*/

.menu-section {
    padding: 80px 0;
    position: relative;
}

.menu-section::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: linear-gradient(
        135deg,
        rgba(255, 107, 107, 0.05) 0%,
        rgba(255, 209, 102, 0.05) 100%
    );
    z-index: -1;
}

/* Carousel Styles */
.carousel-container {
    position: relative;
    overflow: hidden;
    border-radius: var(--radius); /* Keeps the rounded corners */
    margin: 0 auto;
}

.carousel-track {
    display: flex;
    transition: transform 0.5s ease-in-out;
}

.carousel-slide {
    flex: 0 0 100%; /* This is the key change: 1 slide takes 100% width */
    min-width: 0;
}

/* This styles your new banner images */
.menu-banner-img {
    width: 100%;
    height: auto;
    display: block; /* Removes any extra space below the image */
    border-radius: var(--radius); /* Match container's rounded corners */
}

.carousel-btn {
    position: absolute;
    top: 50%;
    transform: translateY(-50%);
    background: var(--glass-bg);
    backdrop-filter: var(--blur);
    border: 1px solid var(--glass-border);
    border-radius: 50%;
    width: 50px;
    height: 50px;
    display: flex;
    align-items: center;
    justify-content: center;
    color: var(--white);
    cursor: pointer;
    transition: var(--transition);
    z-index: 10;
    border: none;
}

.carousel-btn:hover {
    background: linear-gradient(135deg, var(--vibrant-1), var(--vibrant-4));
    color: var(--white);
    transform: translateY(-50%) scale(1.1);
    box-shadow: 0 4px 15px rgba(255, 107, 107, 0.3);
}

.carousel-prev {
    left: 20px;
}

.carousel-next {
    right: 20px;
}

.carousel-indicators {
    display: flex;
    justify-content: center;
    gap: 10px;
    margin-top: 2rem;
}

.indicator {
    width: 12px;
    height: 12px;
    border-radius: 50%;
    background: var(--glass-bg);
    border: 1px solid var(--glass-border);
    cursor: pointer;
    transition: var(--transition);
    border: none;
}

.indicator.active {
    background: linear-gradient(135deg, var(--vibrant-1), var(--vibrant-4));
    border-color: var(--vibrant-1);
}
/* =======================================================
END OF NEW BANNER STYLES
=======================================================
*/

/* About Section */
.about {
    padding: 80px 0;
    position: relative;
}

.about::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: linear-gradient(
        135deg,
        rgba(168, 134, 183, 0.05) 0%,
        rgba(140, 106, 156, 0.05) 100%
    );
    z-index: -1;
}

.about-content {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 4rem;
    align-items: center;
}

.about-text h2 {
    margin-bottom: 1.5rem;
    color: var(--white);
    text-shadow: 0 2px 4px rgba(0, 0, 0, 0.3);
}

.about-text p {
    margin-bottom: 2rem;
    color: rgba(255, 255, 255, 0.9);
    line-height: 1.7;
}

.about-features {
    margin-bottom: 2rem;
}

.about-feature {
    display: flex;
    align-items: flex-start;
    gap: 1rem;
    margin-bottom: 1.5rem;
}

.about-feature i {
    background: linear-gradient(135deg, var(--vibrant-2), var(--vibrant-4));
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
    font-size: 1.5rem;
    margin-top: 0.25rem;
    flex-shrink: 0;
}

.about-feature h4 {
    margin-bottom: 0.5rem;
    color: var(--white);
}

.about-feature p {
    margin: 0;
    font-size: 0.9rem;
    color: rgba(255, 255, 255, 0.8);
}

.stats-card {
    padding: 2rem;
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 1.5rem;
    background: linear-gradient(135deg, rgba(255, 255, 255, 0.15), rgba(255, 255, 255, 0.1));
    border: 1px solid rgba(255, 255, 255, 0.2);
}

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

.stat-item h3 {
    font-size: 2rem;
    color: var(--vibrant-2);
    margin-bottom: 0.5rem;
    text-shadow: 0 2px 4px rgba(0, 0, 0, 0.3);
}

.stat-item p {
    color: rgba(255, 255, 255, 0.8);
    margin: 0;
    font-size: 0.9rem;
}

/* CTA Section */
.cta {
    padding: 80px 0;
    position: relative;
}

.cta::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: linear-gradient(
        135deg,
        rgba(255, 209, 102, 0.1) 0%,
        rgba(255, 158, 109, 0.1) 100%
    );
    z-index: -1;
}

.cta-content {
    padding: 4rem 2rem;
    text-align: center;
    max-width: 800px;
    margin: 0 auto;
    background: linear-gradient(135deg, rgba(255, 255, 255, 0.2), rgba(255, 255, 255, 0.1));
    border: 1px solid rgba(255, 255, 255, 0.3);
}

.cta-content h2 {
    margin-bottom: 1rem;
    color: var(--white);
    text-shadow: 0 2px 4px rgba(0, 0, 0, 0.3);
}

.cta-content p {
    margin-bottom: 2rem;
    color: rgba(255, 255, 255, 0.9);
    font-size: 1.1rem;
}

.cta-buttons {
    display: flex;
    gap: 1rem;
    justify-content: center;
    flex-wrap: wrap;
}

/* Footer */
footer {
    background: linear-gradient(135deg, var(--dark), #1a1c2e);
    color: var(--white);
    padding: 60px 0 20px;
    position: relative;
}

footer::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: 
        radial-gradient(circle at 20% 80%, rgba(168, 134, 183, 0.1) 0%, transparent 50%),
        radial-gradient(circle at 80% 20%, rgba(255, 107, 107, 0.1) 0%, transparent 50%);
}

.footer-content {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
    gap: 3rem;
    margin-bottom: 3rem;
    position: relative;
    z-index: 1;
}

.footer-logo {
    display: flex;
    align-items: center;
    gap: 12px;
    margin-bottom: 1rem;
}

/* Footer Logo Fix */
.footer-logo-img {
    max-width: 200px;
    height: auto;
}

.footer-logo i {
    font-size: 2rem;
    color: var(--vibrant-2);
}

.footer-logo h3 {
    color: var(--white);
    margin: 0;
}

.footer-logo p {
    color: rgba(255, 255, 255, 0.7);
    margin: 0;
}

.footer-description {
    color: rgba(255, 255, 255, 0.7);
    margin-bottom: 1.5rem;
}

.social-links {
    display: flex;
    gap: 1rem;
}

.social-link {
    width: 40px;
    height: 40px;
    background: rgba(255, 255, 255, 0.1);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    color: var(--white);
    text-decoration: none;
    transition: var(--transition);
}

.social-link:hover {
    background: var(--vibrant-1);
    transform: translateY(-2px);
    box-shadow: 0 4px 15px rgba(255, 107, 107, 0.3);
}

.footer-section h4 {
    color: var(--white);
    margin-bottom: 1.5rem;
}

.footer-section a {
    display: block;
    color: rgba(255, 255, 255, 0.7);
    text-decoration: none;
    margin-bottom: 0.8rem;
    transition: var(--transition);
}

.footer-section a:hover {
    color: var(--vibrant-2);
}

.contact-info p {
    display: flex;
    align-items: center;
    gap: 10px;
    margin-bottom: 1rem;
    color: rgba(255, 255, 255, 0.7);
}

.contact-info i {
    color: var(--vibrant-2);
    width: 20px;
}

.business-hours p {
    color: rgba(255, 255, 255, 0.7);
    margin-bottom: 0.5rem;
}

.footer-bottom {
    border-top: 1px solid rgba(255, 255, 255, 0.1);
    padding-top: 2rem;
    text-align: center;
    color: rgba(255, 255, 255, 0.5);
    position: relative;
    z-index: 1;
}

/* Notifications */
.notification {
    position: fixed;
    top: 100px;
    right: 20px;
    padding: 1rem 1.5rem;
    display: flex;
    align-items: center;
    gap: 10px;
    z-index: 1001;
    transform: translateX(100%);
    opacity: 0;
    transition: var(--transition);
    background: linear-gradient(135deg, var(--success), #05b388);
    color: var(--white);
    border-radius: var(--radius);
    box-shadow: 0 8px 25px rgba(6, 214, 160, 0.3);
}

.notification.show {
    transform: translateX(0);
    opacity: 1;
}

.notification i {
    color: var(--white);
    font-size: 1.2rem;
}

/* Responsive Design */
@media (max-width: 768px) {
    .container {
        padding: 0 15px;
    }
    
    h1 {
        font-size: 2.5rem;
    }
    
    h2 {
        font-size: 2rem;
    }
    
    .menu-toggle {
        display: flex;
    }
    
    .nav-menu {
        position: fixed;
        top: 80px;
        left: 0;
        right: 0;
        background: var(--glass-bg);
        backdrop-filter: var(--blur);
        -webkit-backdrop-filter: var(--blur);
        border-bottom: 1px solid var(--glass-border);
        flex-direction: column;
        padding: 2rem;
        gap: 1rem;
        transform: translateY(-100%);
        opacity: 0;
        visibility: hidden;
        transition: var(--transition);
        /* Remove pill bar styles on mobile */
        background: var(--glass-bg);
        border-radius: 0;
        padding: 2rem;
    }

    .nav-link {
        padding: 8px 0; /* Adjust padding for mobile */
        border-radius: 0;
    }
    
    .nav-link.active {
        background: transparent;
        color: var(--vibrant-2); /* Revert to a simpler active state */
    }
    
    .nav-menu.active {
        transform: translateY(0);
        opacity: 1;
        visibility: visible;
    }
    
    .hero-content {
        grid-template-columns: 1fr;
        text-align: center;
        gap: 2rem;
    }
    
    .hero-title {
        font-size: 2.5rem;
    }

    .hero-logo-img {
        margin: 0 auto 1.5rem;
    }
    
    .hero-buttons {
        justify-content: center;
        flex-wrap: wrap;
    }
    
    .about-content {
        grid-template-columns: 1fr;
        gap: 2rem;
    }
    
    .cta-buttons {
        flex-direction: column;
        align-items: center;
    }
    
    /* This rule is now used for the banner carousel */
    .carousel-slide {
        flex: 0 0 100%;
    }
    
    .carousel-btn {
        width: 40px;
        height: 40px;
    }
    
    .carousel-prev {
        left: 10px;
    }
    
    .carousel-next {
        right: 10px;
    }
    
    .stats-card {
        grid-template-columns: 1fr;
    }
    
    .skip-btn {
        bottom: 20px;
        right: 20px;
        font-size: 0.9rem;
        padding: 8px 16px;
    }
}

/* Hero Product Card Styles */
.hero-visual .product-card {
    max-width: 370px; /* Made bigger */
    margin: 0 0 0 auto; /* Aligned to the right */
    padding: 1rem;
    background: linear-gradient(135deg, rgba(255, 255, 255, 0.15), rgba(255, 255, 255, 0.1));
    text-align: center;
}

.product-image-main-container {
    width: 100%;
    border-radius: var(--radius);
    overflow: hidden;
    margin-bottom: 1rem;
    box-shadow: 0 4px 15px rgba(0, 0, 0, 0.1);
}

.product-card-img {
    width: 100%;
    height: auto;
    display: block;
}

.product-card .product-title {
    color: var(--white);
    font-size: 1.25rem;
    margin-bottom: 0.5rem;
}

.product-card .product-description {
    color: rgba(255, 255, 255, 0.8);
    font-size: 0.9rem;
    margin-bottom: 1rem;
}

.product-card .product-price {
    color: var(--vibrant-2);
    font-size: 1.5rem;
    font-weight: 600;
}
/* ADD THIS TO THE END OF style.css to make the "Features" section smaller */

/* Reduce padding around the entire section */
.features {
    padding: 50px 0; /* Was 80px 0 */
}

/* Reduce padding inside each feature card */
.feature-card {
    padding: 1.5rem 1.25rem; /* Was 2.5rem 2rem */
}

/* Make the icon smaller */
.feature-icon {
    width: 60px; /* Was 80px */
    height: 60px; /* Was 80px */
    font-size: 1.5rem; /* Was 2rem */
    margin: 0 auto 1rem; /* Reduced bottom margin */
    box-shadow: 0 6px 15px rgba(78, 205, 196, 0.25); /* Adjusted shadow */
}

/* Reduce space below the heading */
.feature-card h3 {
    margin-bottom: 0.5rem; /* Was 1rem */
    font-size: 1.1rem; /* Optional: Slightly smaller font */
}

/* Optional: Slightly smaller description text */
.feature-card p {
    font-size: 0.9rem; 
}
/* Add to your CSS */
.floating-milkshake {
    position: absolute;
    font-size: 2rem;
    opacity: 0.7;
    animation: floatUpDown 3s ease-in-out infinite;
}
/* ======================================================= */
/* NEW STYLES FOR CONTACT PAGE (add to end of style.css) */
/* ======================================================= */

.contact-section {
    padding: 140px 0 80px; /* Add padding similar to hero section */
    min-height: calc(100vh - 80px - 200px); /* Adjust to fit between header/footer */
    display: flex;
    align-items: center; /* Vertically center content if needed */
    position: relative;
    z-index: 1; /* Ensure content is above background elements */
}

/* Container for the form with glass effect */
.contact-form-container {
    max-width: 700px;
    margin: 2rem auto 0; /* Add margin below the section header */
    padding: 2.5rem;
    background: linear-gradient(135deg, rgba(255, 255, 255, 0.1), rgba(255, 255, 255, 0.05));
    border: 1px solid var(--glass-border);
}

.form-group {
    margin-bottom: 1.5rem;
}

.form-group label {
    display: block;
    margin-bottom: 0.5rem;
    color: var(--white);
    font-weight: 500;
    font-size: 0.9rem;
}

.required {
    color: var(--vibrant-1); /* Red asterisk */
    margin-left: 2px;
}

/* Style for input fields and textarea */
.glass-effect-input {
    width: 100%;
    padding: 12px 15px;
    background: rgba(255, 255, 255, 0.1);
    border: 1px solid rgba(255, 255, 255, 0.2);
    border-radius: 10px;
    color: var(--white);
    font-size: 1rem;
    font-family: inherit;
    transition: var(--transition);
    backdrop-filter: blur(5px);
    -webkit-backdrop-filter: blur(5px);
}

.glass-effect-input::placeholder {
    color: rgba(255, 255, 255, 0.5);
}

.glass-effect-input:focus {
    outline: none;
    border-color: var(--primary-light);
    background: rgba(255, 255, 255, 0.15);
    box-shadow: 0 0 15px rgba(var(--primary-rgb), 0.2);
}

.form-textarea {
    resize: vertical; /* Allow vertical resizing only */
    min-height: 100px;
}

.form-submit-btn {
    display: block; /* Make button full width */
    width: 100%;
    margin-top: 1rem;
    font-size: 1.1rem;
    padding: 14px 20px;
}

/* Responsive adjustments for the contact form */
@media (max-width: 768px) {
    .contact-form-container {
        padding: 1.5rem;
    }
    .contact-section {
        padding: 100px 0 60px;
    }
}

/* ======================================================= */
/* END OF NEW CONTACT PAGE STYLES                      */
/* ======================================================= */
/* ======================================================= */
/* REVISED STYLES FOR TEXT-ONLY MENU PAGE                */
/* ======================================================= */

.menu-page-section {
    padding: 140px 0 80px; 
    position: relative;
    z-index: 1;
}

/* Category Title Styling */
.menu-category-title {
    color: var(--white);
    font-family: 'Playfair Display', serif; /* Use the elegant font */
    font-size: 2.2rem; /* Larger size */
    font-weight: 700;
    margin-top: 3.5rem; 
    margin-bottom: 2rem;
    padding-bottom: 0.75rem;
    border-bottom: 3px solid var(--primary-light);
    display: inline-block; 
    text-shadow: 1px 1px 3px rgba(0,0,0,0.2);
}

/* Grid layout adjustments */
.menu-grid.text-only-menu {
    display: grid;
    /* More columns for text items */
    grid-template-columns: repeat(auto-fit, minmax(250px, 1fr)); 
    gap: 1.5rem; 
}

/* Styling for text-only menu item cards */
.menu-item-card.text-only {
    padding: 1.5rem; /* More padding */
    display: flex; /* Use flex to align content */
    flex-direction: column; 
    background: linear-gradient(135deg, rgba(255, 255, 255, 0.08), rgba(255, 255, 255, 0.03)); /* Slightly less visible */
    border: 1px solid var(--glass-border);
    min-height: 180px; /* Ensure cards have some minimum height */
}

/* REMOVED .menu-item-image and .menu-item-photo styles */

.menu-item-content {
    display: flex;
    flex-direction: column;
    height: 100%; /* Make content fill the card */
}

/* Item Name Styling */
.menu-item-content h4 {
    font-family: 'Playfair Display', serif; /* Use the elegant font */
    color: var(--white);
    font-size: 1.35rem; /* Slightly larger */
    font-weight: 600;
    margin-bottom: 0.75rem; /* More space below name */
}

/* Description Styling */
.menu-item-content .item-description {
    color: rgba(255, 255, 255, 0.85);
    font-size: 0.9rem; /* Slightly larger */
    line-height: 1.5; /* Better readability */
    margin-bottom: 1.25rem; 
    flex-grow: 1; /* Pushes footer down */
}

/* Footer Styling */
.menu-item-content .item-footer {
    display: flex;
    justify-content: space-between;
    align-items: center;
    margin-top: auto; /* Pushes footer to bottom */
    border-top: 1px solid rgba(255, 255, 255, 0.1); /* Subtle separator */
    padding-top: 0.75rem; /* Space above footer */
}

/* Price Styling */
.menu-item-content .price {
    font-size: 1.4rem; 
    font-weight: 700; /* Bolder price */
    color: var(--vibrant-2);
}

/* Button Styling (already defined, but ensure small class works) */
.add-to-cart.small {
    padding: 8px 16px;
    font-size: 0.85rem;
}

/* Space below the last menu grid */
.menu-grid:last-of-type {
    margin-bottom: 2rem;
}

/* ======================================================= */
/* END OF REVISED MENU PAGE STYLES                     */
/* ======================================================= */
/* =======================================================
   PREMIUM STYLE OVERRIDES - Replace sections in style.css
   ======================================================= */

/* Better Background - Less busy, more professional */
body {
    font-family: 'Inter', sans-serif;
    background: linear-gradient(135deg, #1a1a2e 0%, #16213e 50%, #0f3460 100%);
    color: var(--text);
    line-height: 1.6;
    overflow-x: hidden;
    min-height: 100vh;
    position: relative;
}

body::before {
    content: '';
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: 
        radial-gradient(circle at 20% 80%, rgba(168, 134, 183, 0.15) 0%, transparent 50%),
        radial-gradient(circle at 80% 20%, rgba(78, 205, 196, 0.1) 0%, transparent 50%);
    z-index: -2;
    animation: gradientShift 20s ease-in-out infinite;
}

/* Stronger Glass Cards - More visible, better depth */
.glass-card {
    background: rgba(255, 255, 255, 0.12);
    backdrop-filter: blur(20px);
    -webkit-backdrop-filter: blur(20px);
    border: 1.5px solid rgba(255, 255, 255, 0.18);
    border-radius: var(--radius);
    box-shadow: 
        0 8px 32px rgba(0, 0, 0, 0.3),
        inset 0 1px 0 rgba(255, 255, 255, 0.25);
    transition: var(--transition);
    position: relative;
    overflow: hidden;
}

.glass-card:hover {
    background: rgba(255, 255, 255, 0.15);
    border-color: rgba(255, 255, 255, 0.25);
    box-shadow: 
        0 12px 40px rgba(0, 0, 0, 0.4),
        inset 0 1px 0 rgba(255, 255, 255, 0.3);
    transform: translateY(-3px);
}

/* Better Glass Buttons */
.glass-button {
    background: rgba(255, 255, 255, 0.15);
    backdrop-filter: blur(15px);
    -webkit-backdrop-filter: blur(15px);
    border: 1.5px solid rgba(255, 255, 255, 0.2);
    border-radius: 50px;
    padding: 12px 24px;
    color: var(--white);
    text-decoration: none;
    font-weight: 600;
    display: inline-flex;
    align-items: center;
    gap: 8px;
    transition: var(--transition);
    cursor: pointer;
    font-size: 0.95rem;
    text-shadow: 0 1px 3px rgba(0, 0, 0, 0.3);
    box-shadow: 0 4px 15px rgba(0, 0, 0, 0.2);
}

.glass-button:hover {
    background: rgba(255, 255, 255, 0.25);
    border-color: rgba(255, 255, 255, 0.35);
    transform: translateY(-2px);
    box-shadow: 0 8px 25px rgba(0, 0, 0, 0.3);
}

.primary-btn {
    background: linear-gradient(135deg, #a886b7 0%, #8c6a9c 100%);
    border: 1.5px solid rgba(168, 134, 183, 0.5);
    box-shadow: 0 6px 20px rgba(168, 134, 183, 0.4);
}

.primary-btn:hover {
    background: linear-gradient(135deg, #b798c7 0%, #9d7aac 100%);
    box-shadow: 0 10px 30px rgba(168, 134, 183, 0.5);
}

.secondary-btn {
    background: rgba(255, 255, 255, 0.1);
    border: 1.5px solid rgba(168, 134, 183, 0.5);
}

.secondary-btn:hover {
    background: rgba(168, 134, 183, 0.2);
    border-color: rgba(168, 134, 183, 0.7);
}

/* Improved Section Headers */
.section-header h2 {
    font-size: 3rem;
    margin-bottom: 1rem;
    color: var(--white);
    text-shadow: 0 3px 10px rgba(0, 0, 0, 0.5);
    font-weight: 700;
}

.section-header p {
    font-size: 1.2rem;
    color: rgba(255, 255, 255, 0.9);
    max-width: 600px;
    margin: 0 auto;
    text-shadow: 0 2px 5px rgba(0, 0, 0, 0.3);
}

/* Better Process Cards */
.process-step {
    flex: 1;
    min-width: 200px;
    padding: 2.5rem 2rem;
    text-align: center;
    position: relative;
    background: rgba(255, 255, 255, 0.12);
    backdrop-filter: blur(20px);
    border: 1.5px solid rgba(255, 255, 255, 0.18);
    border-radius: var(--radius);
    box-shadow: 0 8px 32px rgba(0, 0, 0, 0.3);
    transition: var(--transition);
}

.process-step:hover {
    transform: translateY(-10px);
    background: rgba(255, 255, 255, 0.18);
    box-shadow: 0 15px 45px rgba(0, 0, 0, 0.4);
}

.process-step h3 {
    color: var(--white);
    margin-bottom: 1rem;
    font-size: 1.3rem;
    font-weight: 600;
    text-shadow: 0 2px 5px rgba(0, 0, 0, 0.3);
}

.process-step p {
    color: rgba(255, 255, 255, 0.85);
    font-size: 0.95rem;
    line-height: 1.6;
}

/* Better Menu Item Cards */
.menu-item-card {
    padding: 2rem 1.5rem;
    display: flex;
    flex-direction: column;
    background: rgba(255, 255, 255, 0.12);
    backdrop-filter: blur(20px);
    border: 1.5px solid rgba(255, 255, 255, 0.18);
    min-height: 200px;
    box-shadow: 0 8px 32px rgba(0, 0, 0, 0.3);
}

.menu-item-card:hover {
    background: rgba(255, 255, 255, 0.18);
    transform: translateY(-5px);
    box-shadow: 0 12px 40px rgba(0, 0, 0, 0.4);
}

.menu-item-content h4 {
    font-family: 'Playfair Display', serif;
    color: var(--white);
    font-size: 1.5rem;
    font-weight: 600;
    margin-bottom: 0.75rem;
    text-shadow: 0 2px 5px rgba(0, 0, 0, 0.3);
}

.menu-item-content .item-description {
    color: rgba(255, 255, 255, 0.85);
    font-size: 0.95rem;
    line-height: 1.6;
    margin-bottom: 1.25rem;
}

.menu-item-content .price {
    font-size: 1.6rem;
    font-weight: 700;
    color: #FFD166;
    text-shadow: 0 2px 5px rgba(0, 0, 0, 0.3);
}

/* Better Category Headers */
.menu-category-header {
    display: flex;
    align-items: center;
    gap: 1.5rem;
    margin-top: 4rem;
    margin-bottom: 2.5rem;
    padding: 2rem 2.5rem;
    background: rgba(255, 255, 255, 0.12);
    backdrop-filter: blur(20px);
    border: 1.5px solid rgba(255, 255, 255, 0.18);
    border-radius: var(--radius);
    box-shadow: 0 8px 32px rgba(0, 0, 0, 0.3);
    transition: var(--transition);
}

.menu-category-header:hover {
    transform: translateX(10px);
    background: rgba(255, 255, 255, 0.18);
    box-shadow: 0 12px 40px rgba(0, 0, 0, 0.4);
}

.menu-category-title {
    color: var(--white);
    font-family: 'Playfair Display', serif;
    font-size: 2.2rem;
    font-weight: 700;
    margin: 0 0 0.5rem 0;
    text-shadow: 0 3px 8px rgba(0, 0, 0, 0.4);
}

.category-description {
    color: rgba(255, 255, 255, 0.85);
    font-size: 1.05rem;
    margin: 0;
}

/* Better Contact Info Cards */
.contact-info-card {
    padding: 2.5rem 2rem;
    text-align: center;
    background: rgba(255, 255, 255, 0.12);
    backdrop-filter: blur(20px);
    border: 1.5px solid rgba(255, 255, 255, 0.18);
    box-shadow: 0 8px 32px rgba(0, 0, 0, 0.3);
    transition: var(--transition);
}

.contact-info-card:hover {
    transform: translateY(-8px);
    background: rgba(255, 255, 255, 0.18);
    box-shadow: 0 15px 45px rgba(0, 0, 0, 0.4);
}

.contact-info-card h3 {
    color: var(--white);
    margin-bottom: 1rem;
    font-size: 1.4rem;
    font-weight: 600;
    text-shadow: 0 2px 5px rgba(0, 0, 0, 0.3);
}

.contact-info-card p {
    color: rgba(255, 255, 255, 0.85);
    margin: 0.5rem 0;
    line-height: 1.7;
}

/* Better Form Container */
.contact-form-container {
    max-width: 700px;
    margin: 2rem auto 0;
    padding: 3rem;
    background: rgba(255, 255, 255, 0.12);
    backdrop-filter: blur(20px);
    border: 1.5px solid rgba(255, 255, 255, 0.18);
    box-shadow: 0 8px 32px rgba(0, 0, 0, 0.3);
}

.form-title {
    color: var(--white);
    margin-bottom: 2rem;
    font-size: 1.8rem;
    text-align: center;
    font-weight: 600;
    text-shadow: 0 2px 5px rgba(0, 0, 0, 0.3);
}

.glass-effect-input {
    width: 100%;
    padding: 14px 18px;
    background: rgba(255, 255, 255, 0.1);
    border: 1.5px solid rgba(255, 255, 255, 0.25);
    border-radius: 12px;
    color: var(--white);
    font-size: 1rem;
    font-family: inherit;
    transition: var(--transition);
    backdrop-filter: blur(10px);
    -webkit-backdrop-filter: blur(10px);
}

.glass-effect-input:focus {
    outline: none;
    border-color: rgba(168, 134, 183, 0.7);
    background: rgba(255, 255, 255, 0.15);
    box-shadow: 0 0 20px rgba(168, 134, 183, 0.3);
}

/* Better Map Container */
.map-container {
    padding: 2.5rem;
    background: rgba(255, 255, 255, 0.12);
    backdrop-filter: blur(20px);
    border: 1.5px solid rgba(255, 255, 255, 0.18);
    display: flex;
    flex-direction: column;
    min-height: 550px;
    box-shadow: 0 8px 32px rgba(0, 0, 0, 0.3);
}

/* Better Testimonial Cards */
.testimonial-card {
    padding: 2.5rem;
    display: flex;
    flex-direction: column;
    gap: 1.5rem;
    background: rgba(255, 255, 255, 0.12);
    backdrop-filter: blur(20px);
    border: 1.5px solid rgba(255, 255, 255, 0.18);
    box-shadow: 0 8px 32px rgba(0, 0, 0, 0.3);
    transition: var(--transition);
}

.testimonial-card:hover {
    transform: translateY(-8px);
    background: rgba(255, 255, 255, 0.18);
    box-shadow: 0 15px 45px rgba(0, 0, 0, 0.4);
}

.testimonial-text {
    color: rgba(255, 255, 255, 0.9);
    font-style: italic;
    line-height: 1.7;
    flex-grow: 1;
    font-size: 1.05rem;
}

.author-info h4 {
    margin: 0 0 0.25rem 0;
    color: var(--white);
    font-size: 1.1rem;
    font-weight: 600;
    text-shadow: 0 1px 3px rgba(0, 0, 0, 0.3);
}

/* Better CTA Section */
.cta-content {
    padding: 4rem 3rem;
    text-align: center;
    max-width: 900px;
    margin: 0 auto;
    background: rgba(255, 255, 255, 0.12);
    backdrop-filter: blur(20px);
    border: 1.5px solid rgba(255, 255, 255, 0.18);
    box-shadow: 0 8px 32px rgba(0, 0, 0, 0.3);
}

.cta-content h2 {
    margin-bottom: 1rem;
    color: var(--white);
    text-shadow: 0 3px 10px rgba(0, 0, 0, 0.5);
    font-size: 2.5rem;
}

.cta-content p {
    margin-bottom: 2.5rem;
    color: rgba(255, 255, 255, 0.9);
    font-size: 1.15rem;
}

/* Featured Badge - More visible */
.featured-badge {
    position: absolute;
    top: -12px;
    right: 15px;
    background: linear-gradient(135deg, #FF6B6B, #FF9E6D);
    color: var(--white);
    padding: 6px 14px;
    border-radius: 20px;
    font-size: 0.8rem;
    font-weight: 700;
    box-shadow: 0 4px 15px rgba(255, 107, 107, 0.5);
    display: flex;
    align-items: center;
    gap: 5px;
    text-shadow: 0 1px 3px rgba(0, 0, 0, 0.3);
}

/* Better spacing throughout */
.features,
.menu-section,
.about,
.testimonials,
.process,
.cta {
    padding: 100px 0;
}

/* Responsive adjustments */
@media (max-width: 768px) {
    .section-header h2 {
        font-size: 2.2rem;
    }
    
    .contact-form-container {
        padding: 2rem 1.5rem;
    }
    
    .menu-category-title {
        font-size: 1.8rem;
    }
}
/* ======================================================= */
/* ADDITIONAL STYLES FOR ENHANCED MENU PAGE              */
/* (Add to end of style.css)                             */
/* ======================================================= */

/* --- Category Header Styling --- */
.menu-category-header {
    display: flex;
    align-items: center;
    gap: 1.5rem; /* Space between icon and text */
    margin-top: 4rem; /* Space above category header */
    margin-bottom: 2.5rem; /* Space below category header */
    padding: 1.5rem 2rem; /* Padding inside the header card */
    background: linear-gradient(135deg, rgba(255, 255, 255, 0.1), rgba(255, 255, 255, 0.05)); /* Subtle glass */
    border-radius: var(--radius);
    border: 1px solid var(--glass-border);
    transition: var(--transition);
}

.menu-category-header:hover {
    background: linear-gradient(135deg, rgba(255, 255, 255, 0.15), rgba(255, 255, 255, 0.08));
    transform: translateX(5px); /* Slight shift on hover */
}

.category-icon {
    width: 60px;
    height: 60px;
    flex-shrink: 0; /* Prevent icon from shrinking */
    background: linear-gradient(135deg, var(--primary), var(--primary-dark));
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    color: var(--white);
    font-size: 1.8rem;
    box-shadow: 0 5px 15px rgba(var(--primary-rgb), 0.3);
}

.menu-category-title {
    color: var(--white);
    font-family: 'Playfair Display', serif;
    font-size: 2rem; /* Adjusted size */
    font-weight: 700;
    margin: 0 0 0.3rem 0; /* Remove default margins, add small bottom margin */
    padding-bottom: 0; /* Remove padding */
    border-bottom: none; /* Remove border */
    display: block; /* Make it block level */
    text-shadow: 1px 1px 3px rgba(0,0,0,0.2);
}

.category-description {
    color: rgba(255, 255, 255, 0.8);
    font-size: 0.95rem;
    margin: 0;
}

/* --- Featured Item Styling --- */
.menu-item-card.featured-item {
    position: relative; /* Needed for absolute positioning of badge */
    border-color: var(--vibrant-2); /* Highlight border */
    background: linear-gradient(135deg, rgba(var(--primary-rgb), 0.15), rgba(var(--primary-rgb), 0.08)); /* Slightly different background */
}

.featured-badge {
    position: absolute;
    top: -10px; /* Position slightly above the card */
    right: 15px;
    background: linear-gradient(135deg, var(--vibrant-1), var(--vibrant-4));
    color: var(--white);
    padding: 5px 12px;
    border-radius: 20px;
    font-size: 0.75rem;
    font-weight: 600;
    box-shadow: 0 3px 10px rgba(255, 107, 107, 0.4);
    display: flex;
    align-items: center;
    gap: 4px;
    z-index: 2; /* Ensure badge is above card content */
}

.featured-badge i {
    font-size: 0.7rem;
}

/* --- Menu CTA Styling --- */
.menu-cta {
    margin-top: 4rem; /* Space above CTA */
    padding: 2.5rem 2rem;
    text-align: center;
    background: linear-gradient(135deg, rgba(var(--primary-rgb), 0.2), rgba(var(--primary-rgb), 0.1));
    border: 1px solid var(--primary-light);
}

.menu-cta h3 {
    color: var(--white);
    font-family: 'Playfair Display', serif;
    font-size: 1.8rem;
    margin-bottom: 0.75rem;
}

.menu-cta p {
    color: rgba(255, 255, 255, 0.85);
    margin-bottom: 1.5rem;
    font-size: 1rem;
}

.menu-cta-buttons {
    display: flex;
    justify-content: center;
    gap: 1rem;
    flex-wrap: wrap; /* Allow buttons to wrap on smaller screens */
}

/* --- Notification Styling (ensure this matches index.html) --- */
.notification {
    position: fixed;
    bottom: 20px; /* Changed to bottom */
    left: 50%;     /* Centered */
    transform: translateX(-50%) translateY(100%); /* Start below screen */
    padding: 1rem 1.5rem;
    display: flex;
    align-items: center;
    gap: 10px;
    z-index: 1001;
    opacity: 0;
    transition: opacity 0.3s ease, transform 0.3s ease; /* Smooth transition */
    background: linear-gradient(135deg, var(--success), #05b388);
    color: var(--white);
    border-radius: var(--radius);
    box-shadow: 0 8px 25px rgba(6, 214, 160, 0.3);
    /* Inherit glass effect via class */
}

.notification.show {
    transform: translateX(-50%) translateY(0); /* Slide up */
    opacity: 1;
}

.notification i {
    color: var(--white);
    font-size: 1.2rem;
}


/* --- Adjustments for Text-Only Card --- */
/* Ensure the styles from previous step for text-only are present */
.menu-item-card.text-only {
    padding: 1.5rem; 
    display: flex; 
    flex-direction: column; 
    background: linear-gradient(135deg, rgba(255, 255, 255, 0.08), rgba(255, 255, 255, 0.03)); 
    border: 1px solid var(--glass-border);
    min-height: 180px; 
}

.menu-item-content {
    display: flex;
    flex-direction: column;
    height: 100%; 
}

.menu-item-content h4 {
    font-family: 'Playfair Display', serif; 
    color: var(--white);
    font-size: 1.35rem; 
    font-weight: 600;
    margin-bottom: 0.75rem; 
}

.menu-item-content .item-description {
    color: rgba(255, 255, 255, 0.85);
    font-size: 0.9rem; 
    line-height: 1.5; 
    margin-bottom: 1.25rem; 
    flex-grow: 1; 
}

.menu-item-content .item-footer {
    display: flex;
    justify-content: space-between;
    align-items: center;
    margin-top: auto; 
    border-top: 1px solid rgba(255, 255, 255, 0.1); 
    padding-top: 0.75rem; 
}

.menu-item-content .price {
    font-size: 1.4rem; 
    font-weight: 700; 
    color: var(--vibrant-2);
}

.add-to-cart.small {
    padding: 8px 16px;
    font-size: 0.85rem;
}

.menu-grid:last-of-type {
    margin-bottom: 2rem;
}

/* ======================================================= */
/* END OF ADDITIONAL MENU PAGE STYLES                    */
/* ======================================================= */
/* ======================================================= */
/* NEW STYLES FOR REVIEWS PAGE (add to end of style.css) */
/* ======================================================= */

.reviews-page-section {
    padding: 140px 0 80px; /* Space top/bottom */
    position: relative;
    z-index: 1;
    min-height: calc(100vh - 80px - 200px); /* Adjust to fit content */
}

/* Grid layout for reviews */
.reviews-grid {
    display: grid;
    /* 1, 2, or 3 columns depending on screen size */
    grid-template-columns: repeat(auto-fit, minmax(320px, 1fr)); 
    gap: 1.5rem; /* Space between review cards */
    margin-top: 2rem; /* Space below section header */
}

/* Styling for individual review cards */
.review-card {
    padding: 1.5rem 1.75rem; /* Padding inside card */
    display: flex;
    flex-direction: column; /* Stack header, text, date */
    background: linear-gradient(135deg, rgba(255, 255, 255, 0.1), rgba(255, 255, 255, 0.05));
    border: 1px solid var(--glass-border);
    transition: var(--transition);
}

.review-card:hover {
    transform: translateY(-5px);
    box-shadow: 0 10px 30px rgba(0,0,0,0.2);
}

.review-header {
    display: flex;
    align-items: center;
    gap: 1rem; /* Space between avatar and info */
    margin-bottom: 1rem;
}

.review-author-avatar {
    width: 50px;
    height: 50px;
    flex-shrink: 0;
    background: linear-gradient(135deg, var(--primary-light), var(--primary-dark));
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    color: var(--white);
    font-size: 1.5rem;
}

.review-author-info h4 {
    color: var(--white);
    font-size: 1.1rem;
    font-weight: 600;
    margin: 0 0 0.25rem 0; /* Space below name */
}

.review-rating {
    color: var(--vibrant-2); /* Yellow stars */
    font-size: 0.9rem;
}

.review-text {
    color: rgba(255, 255, 255, 0.85);
    font-size: 0.95rem;
    line-height: 1.6;
    margin-bottom: 1rem;
    flex-grow: 1; /* Pushes date to bottom */
    font-style: italic; /* Italicize review text */
    position: relative;
    padding-left: 1.5rem; /* Indent text */
}

/* Add quotation marks */
.review-text::before {
    content: '\f10d'; /* Font Awesome quote-left */
    font-family: 'Font Awesome 5 Free';
    font-weight: 900;
    position: absolute;
    left: 0;
    top: 0;
    font-size: 1rem;
    color: var(--primary-light);
    opacity: 0.5;
}

.review-date {
    font-size: 0.8rem;
    color: rgba(255, 255, 255, 0.5);
    text-align: right;
    margin-top: auto; /* Push to bottom */
}

/* Call to action for adding reviews */
.add-review-cta {
    text-align: center;
    margin-top: 3rem;
    padding: 2rem;
    background: rgba(255, 255, 255, 0.05);
    border-radius: var(--radius);
}

.add-review-cta p {
    color: rgba(255, 255, 255, 0.8);
    margin-bottom: 1rem;
    font-size: 1.1rem;
}

/* ======================================================= */
/* END OF NEW REVIEWS PAGE STYLES                      */
/* ======================================================= */