/* =============================================
   SANWARIYA MANAGEMENT & CATERING - STYLES
   ============================================= */

/* CSS Variables */
:root {
    --primary-gold: #D4AF37;
    --primary-gold-light: #E8C547;
    --primary-gold-dark: #B8960F;
    --dark-navy: #1a1a2e;
    --charcoal: #16213e;
    --text-dark: #2d3436;
    --text-light: #636e72;
    --white: #ffffff;
    --off-white: #f8f9fa;
    --light-gray: #e9ecef;
    --shadow-sm: 0 2px 10px rgba(0, 0, 0, 0.08);
    --shadow-md: 0 5px 25px rgba(0, 0, 0, 0.1);
    --shadow-lg: 0 10px 40px rgba(0, 0, 0, 0.15);
    --transition: all 0.3s ease;
    --border-radius: 12px;
}

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

html {
    scroll-behavior: smooth;
    overflow-x: hidden;
}

body {
    font-family: 'Poppins', sans-serif;
    font-size: 16px;
    line-height: 1.6;
    color: var(--text-dark);
    background-color: var(--white);
    overflow-x: hidden;
}

h1, h2, h3, h4, h5, h6 {
    font-family: 'Playfair Display', serif;
    font-weight: 600;
    line-height: 1.3;
    color: var(--text-dark);
}

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

ul {
    list-style: none;
}

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

/* =============================================
   BUTTONS
   ============================================= */

.btn {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    padding: 14px 32px;
    border-radius: 50px;
    font-size: 16px;
    font-weight: 500;
    cursor: pointer;
    transition: var(--transition);
    border: none;
    font-family: 'Poppins', sans-serif;
}

.btn-primary {
    background: linear-gradient(135deg, var(--primary-gold), var(--primary-gold-dark));
    color: var(--white);
    box-shadow: 0 4px 15px rgba(212, 175, 55, 0.4);
}

.btn-primary:hover {
    transform: translateY(-2px);
    box-shadow: 0 6px 20px rgba(212, 175, 55, 0.5);
    background: linear-gradient(135deg, var(--primary-gold-light), var(--primary-gold));
}

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

.btn-secondary:hover {
    background: var(--dark-navy);
    color: var(--white);
    transform: translateY(-2px);
}

.btn-block {
    width: 100%;
}

/* =============================================
   NAVIGATION
   ============================================= */

.navbar {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    z-index: 1000;
    background: rgba(255, 255, 255, 0.95);
    backdrop-filter: blur(10px);
    box-shadow: var(--shadow-sm);
    transition: var(--transition);
}

.navbar.scrolled {
    box-shadow: var(--shadow-md);
}

.nav-container {
    max-width: 1400px;
    margin: 0 auto;
    padding: 15px 40px;
    display: flex;
    align-items: center;
    justify-content: space-between;
}

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

.logo-image {
    width: 45px;
    height: 45px;
    border-radius: 50%;
    object-fit: cover;
    border: 2px solid var(--primary-gold);
}

.logo-text {
    font-family: 'Playfair Display', serif;
    font-size: 22px;
    font-weight: 700;
    color: var(--dark-navy);
}

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

.nav-links {
    display: flex;
    gap: 35px;
}

.nav-links a {
    font-size: 15px;
    font-weight: 500;
    color: var(--text-dark);
    position: relative;
    padding: 5px 0;
}

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

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

.nav-links a:hover {
    color: var(--primary-gold);
}

.nav-cta {
    margin-left: 30px;
}

.hamburger {
    display: none;
    flex-direction: column;
    gap: 5px;
    cursor: pointer;
    padding: 10px;
}

.hamburger span {
    width: 25px;
    height: 3px;
    background: var(--dark-navy);
    border-radius: 3px;
    transition: var(--transition);
}

/* =============================================
   HERO SECTION
   ============================================= */

.hero {
    min-height: 100vh;
    display: flex;
    align-items: center;
    padding: 120px 40px 80px;
    background: linear-gradient(135deg, var(--off-white) 0%, var(--white) 100%);
    position: relative;
    overflow: hidden;
}

.hero::before {
    content: '';
    position: absolute;
    top: -50%;
    right: -20%;
    width: 70%;
    height: 150%;
    background: radial-gradient(circle, rgba(212, 175, 55, 0.08) 0%, transparent 70%);
    pointer-events: none;
}

.hero-container {
    max-width: 1400px;
    margin: 0 auto;
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 80px;
    align-items: center;
}

.hero-content {
    padding-right: 40px;
}

.hero-title {
    font-size: 56px;
    margin-bottom: 25px;
    color: var(--dark-navy);
    line-height: 1.2;
}

.hero-subtitle {
    font-size: 18px;
    color: var(--text-light);
    margin-bottom: 40px;
    line-height: 1.8;
}

.hero-buttons {
    display: flex;
    gap: 20px;
}

.hero-image {
    position: relative;
}

.hero-image img {
    width: 100%;
    height: 500px;
    object-fit: cover;
    border-radius: 20px;
    box-shadow: var(--shadow-lg);
}

.floating-badge {
    position: absolute;
    bottom: -30px;
    left: -40px;
    background: var(--white);
    padding: 25px 35px;
    border-radius: var(--border-radius);
    box-shadow: var(--shadow-lg);
    text-align: center;
    animation: float 3s ease-in-out infinite;
}

@keyframes float {
    0%, 100% { transform: translateY(0); }
    50% { transform: translateY(-10px); }
}

.badge-number {
    display: block;
    font-size: 42px;
    font-weight: 700;
    color: var(--primary-gold);
    font-family: 'Playfair Display', serif;
}

.badge-text {
    font-size: 14px;
    color: var(--text-light);
    text-transform: uppercase;
    letter-spacing: 1px;
}

/* =============================================
   SECTION STYLES
   ============================================= */

.section-container {
    max-width: 1400px;
    margin: 0 auto;
    padding: 100px 40px;
}

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

.section-subtitle {
    display: inline-block;
    font-size: 14px;
    font-weight: 600;
    text-transform: uppercase;
    letter-spacing: 3px;
    color: var(--primary-gold);
    margin-bottom: 15px;
}

.section-title {
    font-size: 42px;
    color: var(--dark-navy);
}

/* =============================================
   ABOUT SECTION
   ============================================= */

.about {
    background: var(--white);
}

.about-content {
    display: grid;
    grid-template-columns: 1fr 2fr;
    gap: 60px;
    align-items: start;
}

.about-text p {
    font-size: 17px;
    color: var(--text-light);
    margin-bottom: 20px;
    line-height: 1.9;
}

.features-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 30px;
}

.feature-card {
    background: var(--off-white);
    padding: 40px 30px;
    border-radius: var(--border-radius);
    text-align: center;
    transition: var(--transition);
}

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

.feature-icon {
    width: 80px;
    height: 80px;
    background: linear-gradient(135deg, var(--primary-gold), var(--primary-gold-dark));
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    margin: 0 auto 25px;
}

.feature-icon i {
    font-size: 32px;
    color: var(--white);
}

.feature-card h3 {
    font-size: 22px;
    margin-bottom: 15px;
}

.feature-card p {
    font-size: 15px;
    color: var(--text-light);
    line-height: 1.7;
}

/* =============================================
   SERVICES SECTION
   ============================================= */

.services {
    background: var(--off-white);
}

.services-grid {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 30px;
}

.service-card {
    background: var(--white);
    padding: 45px 35px;
    border-radius: var(--border-radius);
    text-align: center;
    transition: var(--transition);
    border: 1px solid var(--light-gray);
}

.service-card:hover {
    transform: translateY(-10px);
    box-shadow: var(--shadow-lg);
    border-color: var(--primary-gold);
}

.service-icon {
    width: 90px;
    height: 90px;
    background: linear-gradient(135deg, var(--dark-navy), var(--charcoal));
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    margin: 0 auto 25px;
}

.service-icon i {
    font-size: 36px;
    color: var(--primary-gold);
}

.service-card h3 {
    font-size: 22px;
    margin-bottom: 15px;
}

.service-card p {
    font-size: 15px;
    color: var(--text-light);
    line-height: 1.7;
}

/* =============================================
   CUISINES SECTION
   ============================================= */

.cuisines {
    background: var(--white);
}

.cuisines-grid {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 30px;
}

.cuisine-card {
    background: var(--white);
    border-radius: var(--border-radius);
    overflow: hidden;
    box-shadow: var(--shadow-sm);
    transition: var(--transition);
}

.cuisine-card:hover {
    transform: translateY(-10px);
    box-shadow: var(--shadow-lg);
}

.cuisine-image {
    height: 200px;
    overflow: hidden;
}

.cuisine-image img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: var(--transition);
}

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

.cuisine-content {
    padding: 30px;
}

.cuisine-content h3 {
    font-size: 22px;
    margin-bottom: 12px;
}

.cuisine-content p {
    font-size: 15px;
    color: var(--text-light);
    margin-bottom: 20px;
    line-height: 1.6;
}

.cuisine-link {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    color: var(--primary-gold);
    font-weight: 500;
    font-size: 15px;
}

.cuisine-link:hover {
    gap: 15px;
}

/* =============================================
   BLOGS SECTION
   ============================================= */

.blogs {
    background: var(--off-white);
}

.blogs-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 30px;
}

.blog-card {
    background: var(--white);
    border-radius: var(--border-radius);
    overflow: hidden;
    box-shadow: var(--shadow-sm);
    transition: var(--transition);
}

.blog-card:hover {
    transform: translateY(-10px);
    box-shadow: var(--shadow-lg);
}

.blog-image {
    height: 220px;
    overflow: hidden;
}

.blog-image img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: var(--transition);
}

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

.blog-content {
    padding: 30px;
}

.blog-date {
    font-size: 13px;
    color: var(--primary-gold);
    font-weight: 500;
}

.blog-content h3 {
    font-size: 20px;
    margin: 12px 0;
    line-height: 1.4;
}

.blog-content p {
    font-size: 15px;
    color: var(--text-light);
    margin-bottom: 20px;
    line-height: 1.6;
}

.blog-link {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    color: var(--dark-navy);
    font-weight: 500;
    font-size: 15px;
}

.blog-link:hover {
    color: var(--primary-gold);
    gap: 15px;
}

/* =============================================
   REVIEWS SECTION
   ============================================= */

.reviews {
    background: var(--dark-navy);
    color: var(--white);
}

.reviews .section-subtitle {
    color: var(--primary-gold);
}

.reviews .section-title {
    color: var(--white);
}

.reviews-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 30px;
}

.review-card {
    background: rgba(255, 255, 255, 0.05);
    padding: 40px 35px;
    border-radius: var(--border-radius);
    border: 1px solid rgba(255, 255, 255, 0.1);
    transition: var(--transition);
}

.review-card:hover {
    background: rgba(255, 255, 255, 0.1);
    transform: translateY(-10px);
}

.stars {
    color: var(--primary-gold);
    font-size: 18px;
    margin-bottom: 20px;
}

.review-text {
    font-size: 16px;
    line-height: 1.8;
    margin-bottom: 30px;
    font-style: italic;
    color: rgba(255, 255, 255, 0.9);
}

.reviewer-info h4 {
    font-size: 18px;
    color: var(--white);
    margin-bottom: 5px;
}

.reviewer-info span {
    font-size: 14px;
    color: var(--primary-gold);
}

/* =============================================
   CONTACT SECTION
   ============================================= */

.contact {
    background: var(--white);
}

.contact-wrapper {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 60px;
}

.section-header-left {
    margin-bottom: 30px;
}

.contact-text {
    font-size: 16px;
    color: var(--text-light);
    margin-bottom: 40px;
    line-height: 1.8;
}

.contact-details {
    margin-bottom: 30px;
}

.contact-item {
    display: flex;
    align-items: flex-start;
    gap: 20px;
    margin-bottom: 25px;
}

.contact-icon {
    width: 55px;
    height: 55px;
    background: linear-gradient(135deg, var(--primary-gold), var(--primary-gold-dark));
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    flex-shrink: 0;
}

.contact-icon i {
    font-size: 22px;
    color: var(--white);
}

.contact-text-info h4 {
    font-size: 18px;
    margin-bottom: 8px;
}

.contact-text-info p {
    font-size: 15px;
    color: var(--text-light);
}

.map-placeholder {
    border-radius: var(--border-radius);
    overflow: hidden;
    box-shadow: var(--shadow-sm);
}

.contact-form-wrapper {
    background: var(--off-white);
    padding: 45px;
    border-radius: var(--border-radius);
}

.contact-form h3 {
    font-size: 28px;
    margin-bottom: 30px;
    text-align: center;
}

.form-row {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 20px;
    margin-bottom: 20px;
}

.form-group {
    margin-bottom: 20px;
}

.form-group label {
    display: block;
    font-size: 14px;
    font-weight: 500;
    margin-bottom: 8px;
    color: var(--text-dark);
}

.form-group input,
.form-group select,
.form-group textarea {
    width: 100%;
    padding: 14px 18px;
    border: 2px solid var(--light-gray);
    border-radius: 8px;
    font-size: 15px;
    font-family: 'Poppins', sans-serif;
    transition: var(--transition);
    background: var(--white);
}

.form-group input:focus,
.form-group select:focus,
.form-group textarea:focus {
    outline: none;
    border-color: var(--primary-gold);
}

.form-group textarea {
    resize: vertical;
}

/* =============================================
   FOOTER
   ============================================= */

.footer {
    background: var(--dark-navy);
    color: rgba(255, 255, 255, 0.8);
    padding-top: 80px;
}

.footer-container {
    max-width: 1400px;
    margin: 0 auto;
    padding: 0 40px 30px;
}

.footer-grid {
    display: grid;
    grid-template-columns: 1.5fr 1fr 1fr 1.5fr;
    gap: 50px;
    padding-bottom: 50px;
    border-bottom: 1px solid rgba(255, 255, 255, 0.1);
}

.footer-brand h3 {
    color: var(--white);
    font-size: 24px;
    margin-bottom: 20px;
}

.footer-brand p {
    font-size: 15px;
    line-height: 1.8;
    margin-bottom: 25px;
}

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

.social-links a {
    width: 45px;
    height: 45px;
    background: rgba(255, 255, 255, 0.1);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    transition: var(--transition);
}

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

.social-links i {
    font-size: 18px;
    color: var(--white);
}

.footer-links h4,
.footer-services h4,
.footer-newsletter h4 {
    color: var(--white);
    font-size: 20px;
    margin-bottom: 25px;
}

.footer-links ul li,
.footer-services ul li {
    margin-bottom: 12px;
}

.footer-links a,
.footer-services a {
    font-size: 15px;
    color: rgba(255, 255, 255, 0.7);
    transition: var(--transition);
}

.footer-links a:hover,
.footer-services a:hover {
    color: var(--primary-gold);
    padding-left: 5px;
}

.footer-newsletter p {
    font-size: 15px;
    margin-bottom: 20px;
    line-height: 1.6;
}

.newsletter-form {
    display: flex;
    gap: 10px;
}

.newsletter-form input {
    flex: 1;
    padding: 14px 18px;
    border: none;
    border-radius: 50px;
    font-size: 14px;
    font-family: 'Poppins', sans-serif;
}

.newsletter-form button {
    padding: 14px 25px;
    border-radius: 50px;
    white-space: nowrap;
}

.footer-bottom {
    padding-top: 30px;
    text-align: center;
}

.footer-bottom p {
    font-size: 14px;
    color: rgba(255, 255, 255, 0.6);
}

/* =============================================
   ANIMATIONS
   ============================================= */

.fade-in {
    opacity: 0;
    transform: translateY(30px);
    transition: opacity 0.6s ease, transform 0.6s ease;
}

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

/* =============================================
   RESPONSIVE STYLES
   ============================================= */

@media (max-width: 1200px) {
    .services-grid,
    .cuisines-grid {
        grid-template-columns: repeat(2, 1fr);
    }
    
    .footer-grid {
        grid-template-columns: repeat(2, 1fr);
    }
}

@media (max-width: 992px) {
    .hero-container {
        grid-template-columns: 1fr;
        text-align: center;
    }
    
    .hero-content {
        padding-right: 0;
    }
    
    .hero-buttons {
        justify-content: center;
    }
    
    .hero-image {
        max-width: 600px;
        margin: 0 auto;
    }
    
    .floating-badge {
        left: 50%;
        transform: translateX(-50%);
    }
    
    .about-content {
        grid-template-columns: 1fr;
    }
    
    .contact-wrapper {
        grid-template-columns: 1fr;
    }
    
    .reviews-grid {
        grid-template-columns: 1fr;
        max-width: 600px;
        margin: 0 auto;
    }
    
    .blogs-grid {
        grid-template-columns: repeat(2, 1fr);
    }
}

@media (max-width: 768px) {
    .nav-links,
    .nav-cta {
        display: none;
    }
    
    .hamburger {
        display: flex;
    }
    
    .hero {
        padding: 100px 20px 60px;
    }
    
    .hero-title {
        font-size: 36px;
    }
    
    .section-container {
        padding: 60px 20px;
    }
    
    .section-title {
        font-size: 32px;
    }
    
    .features-grid {
        grid-template-columns: 1fr;
        max-width: 400px;
        margin: 0 auto;
    }
    
    .services-grid,
    .cuisines-grid,
    .blogs-grid {
        grid-template-columns: 1fr;
        max-width: 450px;
        margin: 0 auto;
    }
    
    .form-row {
        grid-template-columns: 1fr;
    }
    
    .footer-grid {
        grid-template-columns: 1fr;
        text-align: center;
    }
    
    .social-links {
        justify-content: center;
    }
    
    .newsletter-form {
        flex-direction: column;
    }
}

@media (max-width: 480px) {
    .hero-title {
        font-size: 28px;
    }
    
    .hero-subtitle {
        font-size: 16px;
    }
    
    .hero-buttons {
        flex-direction: column;
        gap: 15px;
    }
    
    .btn {
        width: 100%;
    }
    
    .section-title {
        font-size: 26px;
    }
    
    .contact-form-wrapper {
        padding: 30px 20px;
    }
}

/* =============================================
   THEMED CUISINE SECTIONS
   ============================================= */

/* Rajasthani Theme */
.rajasthani-theme {
    background: linear-gradient(135deg, #FFF8E7 0%, #FFF5E6 50%, #FFE8D6 100%);
    position: relative;
    overflow: hidden;
}

.rajasthani-theme::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background-image: 
        url("data:image/svg+xml,%3Csvg width='60' height='60' viewBox='0 0 60 60' xmlns='http://www.w3.org/2000/svg'%3E%3Cg fill='none' fill-rule='evenodd'%3E%3Cg fill='%23D4AF37' fill-opacity='0.08'%3E%3Cpath d='M36 34v-4h-2v4h-4v2h4v4h2v-4h4v-2h-4zm0-30V0h-2v4h-4v2h4v4h2V6h4V4h-4zM6 34v-4H4v4H0v2h4v4h2v-4h4v-2H6zM6 4V0H4v4H0v2h4v4h2V6h4V4H6z'/%3E%3C/g%3E%3C/g%3E%3C/svg%3E"),
        repeating-linear-gradient(45deg, transparent, transparent 10px, rgba(212, 175, 55, 0.03) 10px, rgba(212, 175, 55, 0.03) 20px);
    pointer-events: none;
}

.rajasthani-container {
    background: linear-gradient(145deg, #FFFFFF 0%, #FFFDF7 100%);
    border: 3px solid #D4AF37;
    border-radius: 20px;
    padding: 50px;
    margin: 30px auto;
    max-width: 1400px;
    position: relative;
    box-shadow: 
        0 10px 40px rgba(212, 175, 55, 0.15),
        inset 0 0 60px rgba(255, 248, 231, 0.5);
}

.rajasthani-container::before {
    content: '🦘';
    position: absolute;
    top: -20px;
    left: 30px;
    font-size: 40px;
    background: #FFF8E7;
    padding: 0 10px;
}

.rajasthani-container::after {
    content: '';
    position: absolute;
    top: 10px;
    right: 10px;
    bottom: 10px;
    left: 10px;
    border: 2px dashed #D4AF37;
    border-radius: 15px;
    pointer-events: none;
}

.rajasthani-header {
    text-align: center;
    margin-bottom: 50px;
    position: relative;
    z-index: 1;
}

.rajasthani-icon {
    width: 100px;
    height: 100px;
    background: linear-gradient(135deg, #E85D04 0%, #D4AF37 50%, #B8860B 100%);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    margin: 0 auto 25px;
    box-shadow: 0 8px 25px rgba(232, 93, 4, 0.3);
    border: 4px solid #FFF;
}

.rajasthani-icon i {
    font-size: 42px;
    color: #FFF;
}

.rajasthani-header h2 {
    font-size: 42px;
    color: #8B4513;
    margin-bottom: 15px;
    text-shadow: 2px 2px 4px rgba(139, 69, 19, 0.1);
}

.rajasthani-header p {
    font-size: 18px;
    color: #A0522D;
    max-width: 600px;
    margin: 0 auto;
}

/* Mexican Theme */
.mexican-theme {
    background: linear-gradient(135deg, #E8F5E9 0%, #FFF8E1 50%, #FFEBEE 100%);
    position: relative;
    overflow: hidden;
}

.mexican-theme::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' width='100' height='100' viewBox='0 0 100 100'%3E%3Cpath d='M50 5L55 35L85 35L60 55L70 85L50 65L30 85L40 55L15 35L45 35Z' fill='%23FF6F61' fill-opacity='0.08'/%3E%3C/svg%3E");
    background-size: 80px;
    pointer-events: none;
}

.mexican-container {
    background: linear-gradient(145deg, #FFFFFF 0%, #FFFBF5 100%);
    border: 4px solid #FF6F61;
    border-radius: 25px;
    padding: 50px;
    margin: 30px auto;
    max-width: 1400px;
    position: relative;
    box-shadow: 
        0 15px 50px rgba(255, 111, 97, 0.2),
        0 0 0 8px #FFB74D,
        0 0 0 12px #4ECDC4;
}

.mexican-header {
    text-align: center;
    margin-bottom: 50px;
    position: relative;
    z-index: 1;
}

.mexican-icon {
    width: 110px;
    height: 110px;
    background: linear-gradient(135deg, #FF6F61 0%, #FFB74D 50%, #4ECDC4 100%);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    margin: 0 auto 25px;
    box-shadow: 0 10px 30px rgba(255, 111, 97, 0.4);
    border: 5px solid #FFF;
}

.mexican-icon i {
    font-size: 48px;
    color: #FFF;
    text-shadow: 2px 2px 4px rgba(0, 0, 0, 0.2);
}

.mexican-header h2 {
    font-size: 44px;
    color: #E65100;
    margin-bottom: 15px;
    font-weight: 700;
}

.mexican-header p {
    font-size: 18px;
    color: #BF360C;
    max-width: 600px;
    margin: 0 auto;
}

/* Continental Theme */
.continental-theme {
    background: linear-gradient(180deg, #ECEFF1 0%, #F5F5F5 50%, #FAFAFA 100%);
    position: relative;
    overflow: hidden;
}

.continental-theme::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: 
        radial-gradient(circle at 10% 20%, rgba(212, 175, 55, 0.05) 0%, transparent 50%),
        radial-gradient(circle at 90% 80%, rgba(26, 26, 46, 0.05) 0%, transparent 50%);
    pointer-events: none;
}

.continental-container {
    background: linear-gradient(145deg, #FFFFFF 0%, #FAFAFA 100%);
    border: 2px solid #1A1A2E;
    border-radius: 20px;
    padding: 50px;
    margin: 30px auto;
    max-width: 1400px;
    position: relative;
    box-shadow: 
        0 20px 60px rgba(26, 26, 46, 0.1),
        inset 0 0 100px rgba(212, 175, 55, 0.03);
}

.continental-container::before {
    content: '';
    position: absolute;
    top: 0;
    left: 50%;
    transform: translateX(-50%);
    width: 80%;
    height: 3px;
    background: linear-gradient(90deg, transparent, #D4AF37, #1A1A2E, #D4AF37, transparent);
}

.continental-header {
    text-align: center;
    margin-bottom: 50px;
    position: relative;
    z-index: 1;
}

.continental-icon {
    width: 90px;
    height: 90px;
    background: linear-gradient(135deg, #1A1A2E 0%, #16213E 100%);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    margin: 0 auto 25px;
    box-shadow: 0 8px 25px rgba(26, 26, 46, 0.3);
    border: 3px solid #D4AF37;
}

.continental-icon i {
    font-size: 38px;
    color: #D4AF37;
}

.continental-header h2 {
    font-size: 40px;
    color: #1A1A2E;
    margin-bottom: 15px;
    letter-spacing: 2px;
    text-transform: uppercase;
}

.continental-header p {
    font-size: 17px;
    color: #4A5568;
    max-width: 600px;
    margin: 0 auto;
    font-style: italic;
}

/* Chinese Theme */
.chinese-theme {
    background: linear-gradient(135deg, #FFEBEE 0%, #FFF8E1 50%, #E8F5E9 100%);
    position: relative;
    overflow: hidden;
}

.chinese-theme::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background-image: 
        url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' width='80' height='80' viewBox='0 0 80 80'%3E%3Cpath d='M40 5L45 25L65 25L50 40L55 65L40 50L25 65L30 40L15 25L35 25Z' fill='%23C62828' fill-opacity='0.06'/%3E%3C/svg%3E"),
        url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' width='40' height='40' viewBox='0 0 40 40'%3E%3Ccircle cx='20' cy='20' r='3' fill='%23FFD700' fill-opacity='0.1'/%3E%3C/svg%3E");
    pointer-events: none;
}

.chinese-container {
    background: linear-gradient(145deg, #8B0000 0%, #B71C1C 50%, #C62828 100%);
    border: 4px solid #FFD700;
    border-radius: 20px;
    padding: 50px;
    margin: 30px auto;
    max-width: 1400px;
    position: relative;
    box-shadow: 
        0 15px 50px rgba(139, 0, 0, 0.4),
        inset 0 0 80px rgba(255, 215, 0, 0.1);
}

.chinese-container::before {
    content: '🐉 祥';
    position: absolute;
    top: 15px;
    left: 30px;
    font-size: 24px;
    color: #FFD700;
    opacity: 0.6;
    letter-spacing: 8px;
}

.chinese-container::after {
    content: '福 🐉';
    position: absolute;
    top: 15px;
    right: 30px;
    font-size: 24px;
    color: #FFD700;
    opacity: 0.6;
    letter-spacing: 8px;
}

.chinese-header {
    text-align: center;
    margin-bottom: 50px;
    position: relative;
    z-index: 1;
}

.chinese-icon {
    width: 100px;
    height: 100px;
    background: linear-gradient(135deg, #FFD700 0%, #FFA000 50%, #FFD54F 100%);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    margin: 0 auto 25px;
    box-shadow: 0 10px 30px rgba(255, 215, 0, 0.4);
    border: 4px solid #8B0000;
}

.chinese-icon i {
    font-size: 44px;
    color: #8B0000;
}

.chinese-header h2 {
    font-size: 44px;
    color: #FFD700;
    margin-bottom: 15px;
    text-shadow: 2px 2px 4px rgba(0, 0, 0, 0.3);
}

.chinese-header p {
    font-size: 18px;
    color: #FFECB3;
    max-width: 600px;
    margin: 0 auto;
}

/* Themed Dish Grid */
.themed-dish-grid {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 30px;
    position: relative;
    z-index: 1;
}

.themed-dish-card {
    background: #FFF;
    border-radius: 15px;
    overflow: hidden;
    box-shadow: 0 8px 25px rgba(0, 0, 0, 0.1);
    transition: all 0.4s ease;
}

.themed-dish-card:hover {
    transform: translateY(-10px);
    box-shadow: 0 20px 40px rgba(0, 0, 0, 0.15);
}

.rajasthani-dish-card {
    border: 2px solid #D4AF37;
}

.rajasthani-dish-card:hover {
    border-color: #E85D04;
}

.mexican-dish-card {
    border: 2px solid #FF6F61;
}

.mexican-dish-card:hover {
    border-color: #4ECDC4;
}

.continental-dish-card {
    border: 1px solid #E0E0E0;
}

.continental-dish-card:hover {
    border-color: #D4AF37;
}

.chinese-dish-card {
    border: 2px solid #FFD700;
}

.chinese-dish-card:hover {
    box-shadow: 0 15px 35px rgba(255, 215, 0, 0.3);
}

.dish-image {
    height: 180px;
    overflow: hidden;
    position: relative;
}

.dish-image img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: transform 0.5s ease;
}

.themed-dish-card:hover .dish-image img {
    transform: scale(1.1);
}

.dish-badge {
    position: absolute;
    top: 15px;
    right: 15px;
    padding: 6px 14px;
    border-radius: 20px;
    font-size: 12px;
    font-weight: 600;
    text-transform: uppercase;
}

.rajasthani-dish-card .dish-badge {
    background: linear-gradient(135deg, #E85D04, #D4AF37);
    color: #FFF;
}

.mexican-dish-card .dish-badge {
    background: #4ECDC4;
    color: #FFF;
}

.continental-dish-card .dish-badge {
    background: #1A1A2E;
    color: #D4AF37;
}

.chinese-dish-card .dish-badge {
    background: #FFD700;
    color: #8B0000;
}

.dish-content {
    padding: 25px;
}

.dish-content h4 {
    font-size: 20px;
    margin-bottom: 10px;
    color: #2d3436;
}

.rajasthani-dish-card .dish-content h4 {
    color: #8B4513;
}

.mexican-dish-card .dish-content h4 {
    color: #E65100;
}

.continental-dish-card .dish-content h4 {
    color: #1A1A2E;
}

.chinese-dish-card .dish-content h4 {
    color: #8B0000;
}

.dish-content p {
    font-size: 14px;
    color: #636e72;
    margin-bottom: 15px;
    line-height: 1.6;
}

.dish-footer {
    display: flex;
    justify-content: space-between;
    align-items: center;
}

.dish-price {
    font-size: 22px;
    font-weight: 700;
    font-family: 'Playfair Display', serif;
}

.rajasthani-dish-card .dish-price {
    color: #E85D04;
}

.mexican-dish-card .dish-price {
    color: #FF6F61;
}

.continental-dish-card .dish-price {
    color: #1A1A2E;
}

.chinese-dish-card .dish-price {
    color: #C62828;
}

.dish-order-btn {
    padding: 10px 20px;
    border-radius: 25px;
    font-size: 13px;
    font-weight: 600;
    cursor: pointer;
    transition: all 0.3s ease;
    border: none;
}

.rajasthani-dish-card .dish-order-btn {
    background: linear-gradient(135deg, #D4AF37, #B8960F);
    color: #FFF;
}

.rajasthani-dish-card .dish-order-btn:hover {
    background: linear-gradient(135deg, #E85D04, #D45D04);
}

.mexican-dish-card .dish-order-btn {
    background: #4ECDC4;
    color: #FFF;
}

.mexican-dish-card .dish-order-btn:hover {
    background: #FF6F61;
    transform: scale(1.05);
}

.continental-dish-card .dish-order-btn {
    background: #1A1A2E;
    color: #D4AF37;
}

.continental-dish-card .dish-order-btn:hover {
    background: #D4AF37;
    color: #1A1A2E;
}

.chinese-dish-card .dish-order-btn {
    background: linear-gradient(135deg, #FFD700, #FFA000);
    color: #8B0000;
}

.chinese-dish-card .dish-order-btn:hover {
    background: #8B0000;
    color: #FFD700;
}

/* Section Divider with Theme Colors */
.theme-divider {
    height: 4px;
    margin: 20px auto;
    max-width: 200px;
    border-radius: 2px;
}

.rajasthani-divider {
    background: linear-gradient(90deg, #E85D04, #D4AF37, #E85D04);
}

.mexican-divider {
    background: linear-gradient(90deg, #FF6F61, #4ECDC4, #FFB74D, #FF6F61);
}

.continental-divider {
    background: linear-gradient(90deg, #1A1A2E, #D4AF37, #1A1A2E);
}

.chinese-divider {
    background: linear-gradient(90deg, #FFD700, #C62828, #FFD700);
}

/* =============================================
   VEG/NON-VEG SECTION HEADERS
   ============================================= */

.cuisine-type-header {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 15px;
    margin: 50px 0 30px;
    padding: 25px 40px;
    border-radius: 15px;
    position: relative;
    overflow: hidden;
}

.cuisine-type-header::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    opacity: 0.1;
    pointer-events: none;
}

.veg-section-header {
    background: linear-gradient(135deg, #E8F5E9, #C8E6C9);
    border: 2px solid #4CAF50;
}

.veg-section-header::before {
    background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' width='60' height='60' viewBox='0 0 60 60'%3E%3Cpath d='M30 5c-5 10-15 20-5 35 10-15 0-25 5-35z' fill='%234CAF50'/%3E%3C/svg%3E");
}

.veg-section-header h3 {
    color: #2E7D32;
    font-size: 28px;
    display: flex;
    align-items: center;
    gap: 12px;
}

.nonveg-section-header {
    background: linear-gradient(135deg, #FFEBEE, #FFCDD2);
    border: 2px solid #E53935;
    margin-top: 60px;
}

.nonveg-section-header::before {
    background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' width='60' height='60' viewBox='0 0 60 60'%3E%3Ccircle cx='30' cy='25' r='12' fill='%23E53935'/%3E%3Cpath d='M20 55c0-10 5-18 10-20v40c-5-5-10-15-10-20zM40 55c0-10-5-18-10-20v40c5-5 10-15 10-20z' fill='%23E53935'/%3E%3C/svg%3E");
}

.nonveg-section-header h3 {
    color: #C62828;
    font-size: 28px;
    display: flex;
    align-items: center;
    gap: 12px;
}

.specialty-badge {
    display: inline-block;
    padding: 6px 16px;
    background: linear-gradient(135deg, #E53935, #C62828);
    color: white;
    font-size: 11px;
    font-weight: 600;
    text-transform: uppercase;
    letter-spacing: 1px;
    border-radius: 20px;
    margin-left: 10px;
    animation: pulse 2s ease-in-out infinite;
}

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

/* Dish footer without price */
.dish-footer {
    display: flex;
    justify-content: center;
    align-items: center;
    padding-top: 15px;
    border-top: 1px solid rgba(0,0,0,0.05);
    margin-top: 15px;
}

.dish-order-btn {
    padding: 12px 30px;
    border-radius: 25px;
    font-size: 14px;
    font-weight: 600;
    cursor: pointer;
    transition: all 0.3s ease;
    border: none;
    background: linear-gradient(135deg, var(--primary-gold), var(--primary-gold-dark));
    color: white;
    box-shadow: 0 4px 15px rgba(212, 175, 55, 0.3);
}

.dish-order-btn:hover {
    transform: translateY(-2px);
    box-shadow: 0 6px 20px rgba(212, 175, 55, 0.4);
    background: linear-gradient(135deg, var(--primary-gold-light), var(--primary-gold));
}

/* Responsive adjustments for cuisine type headers */
@media (max-width: 768px) {
    .cuisine-type-header {
        padding: 20px;
        margin: 40px 0 25px;
    }
    
    .cuisine-type-header h3 {
        font-size: 22px;
    }
    
    .nonveg-section-header {
        margin-top: 50px;
    }
}

/* =============================================
   MOBILE CUISINE PAGE STYLES
   ============================================= */

/* Themed Dish Grid - Responsive */
@media (max-width: 1200px) {
    .themed-dish-grid {
        grid-template-columns: repeat(3, 1fr);
        gap: 25px;
    }
}

@media (max-width: 992px) {
    .themed-dish-grid {
        grid-template-columns: repeat(2, 1fr);
        gap: 20px;
        padding: 0 20px;
    }
    
    .rajasthani-container,
    .mexican-container,
    .continental-container,
    .chinese-container {
        padding: 40px 30px;
        margin: 20px 15px;
    }
    
    .rajasthani-header h2,
    .mexican-header h2,
    .continental-header h2,
    .chinese-header h2 {
        font-size: 36px;
    }
}

@media (max-width: 768px) {
    .themed-dish-grid {
        grid-template-columns: 1fr;
        max-width: 450px;
        margin: 0 auto;
        gap: 25px;
        padding: 0 15px;
    }
    
    .rajasthani-container,
    .mexican-container,
    .continental-container,
    .chinese-container {
        padding: 30px 20px;
        margin: 15px 10px;
        border-width: 2px;
    }
    
    .rajasthani-container::before,
    .chinese-container::before,
    .chinese-container::after {
        display: none;
    }
    
    .rajasthani-header h2,
    .mexican-header h2,
    .continental-header h2,
    .chinese-header h2 {
        font-size: 28px;
    }
    
    .rajasthani-header p,
    .mexican-header p,
    .continental-header p,
    .chinese-header p {
        font-size: 16px;
    }
    
    .rajasthani-icon,
    .mexican-icon,
    .continental-icon,
    .chinese-icon {
        width: 70px;
        height: 70px;
        margin-bottom: 20px;
    }
    
    .rajasthani-icon i,
    .mexican-icon i,
    .continental-icon i,
    .chinese-icon i {
        font-size: 30px;
    }
    
    .dish-image {
        height: 200px;
    }
    
    .dish-content {
        padding: 20px;
    }
    
    .dish-content h4 {
        font-size: 18px;
    }
    
    .dish-content p {
        font-size: 14px;
    }
}

@media (max-width: 480px) {
    .themed-dish-grid {
        grid-template-columns: 1fr;
        padding: 0 10px;
        gap: 20px;
    }
    
    .rajasthani-container,
    .mexican-container,
    .continental-container,
    .chinese-container {
        padding: 25px 15px;
        margin: 10px 5px;
        border-radius: 15px;
    }
    
    .rajasthani-header h2,
    .mexican-header h2,
    .continental-header h2,
    .chinese-header h2 {
        font-size: 24px;
        margin-bottom: 10px;
    }
    
    .rajasthani-header p,
    .mexican-header p,
    .continental-header p,
    .chinese-header p {
        font-size: 14px;
    }
    
    .theme-divider {
        max-width: 150px;
        height: 3px;
    }
    
    .dish-image {
        height: 180px;
    }
    
    .dish-content {
        padding: 18px;
    }
    
    .dish-content h4 {
        font-size: 17px;
    }
    
    .dish-content p {
        font-size: 13px;
        line-height: 1.5;
    }
    
    .dish-badge {
        padding: 5px 12px;
        font-size: 11px;
    }
}

/* Page Header Responsive */
@media (max-width: 768px) {
    .page-header {
        padding: 120px 20px 60px;
        min-height: 50vh;
    }
    
    .page-header h1 {
        font-size: 36px;
    }
    
    .page-header p {
        font-size: 16px;
    }
}

@media (max-width: 480px) {
    .page-header {
        padding: 100px 15px 50px;
    }
    
    .page-header h1 {
        font-size: 28px;
    }
    
    .page-header p {
        font-size: 14px;
    }
}

/* Navbar Mobile Fix */
@media (max-width: 768px) {
    .navbar {
        position: fixed;
        top: 0;
        left: 0;
        right: 0;
        z-index: 1000;
    }
    
    .nav-container {
        padding: 12px 20px;
    }
    
    .logo-text {
        font-size: 18px;
    }
    
    /* Ensure content doesn't hide behind fixed navbar */
    .page-header {
        padding-top: 100px;
    }
    
    .rajasthani-theme,
    .chinese-theme,
    .continental-theme,
    .mexican-theme {
        padding-top: 80px;
    }
}

