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

:root {
    /* South Indian Color Palette */
    --turmeric-yellow: #e6b800;
    --chili-red: #d32f2f;
    --coconut-white: #fefefe;
    --curry-leaf-green: #2e7d32;
    --brass-gold: #b8860b;
    --banana-leaf: #8bc34a;
    --sambar-orange: #ff6f00;
    --earth-brown: #5d4037;
    --temple-stone: #f5f5dc;
    --ghee-yellow: #fff8dc;
    
    /* Gradients */
    --gradient-warm: linear-gradient(135deg, var(--temple-stone) 0%, var(--ghee-yellow) 100%);
    --gradient-spice: linear-gradient(135deg, var(--turmeric-yellow) 0%, var(--sambar-orange) 100%);
    --gradient-leaf: linear-gradient(135deg, var(--curry-leaf-green) 0%, var(--banana-leaf) 100%);
    
    /* Shadows */
    --shadow-soft: 0 4px 20px rgba(0, 0, 0, 0.08);
    --shadow-medium: 0 8px 30px rgba(0, 0, 0, 0.12);
    --shadow-strong: 0 15px 40px rgba(0, 0, 0, 0.15);
}

body {
    font-family: 'Inter', sans-serif;
    line-height: 1.6;
    color: var(--earth-brown);
    background: var(--coconut-white);
    overflow-x: hidden;
}

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

/* Navigation */
.navbar {
    position: fixed;
    top: 0;
    width: 100%;
    background: rgba(255, 255, 255, 0.95);
    backdrop-filter: blur(20px);
    z-index: 1000;
    border-bottom: 1px solid rgba(230, 184, 0, 0.2);
    transition: all 0.3s ease;
}

.nav-container {
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 20px;
    display: flex;
    justify-content: space-between;
    align-items: center;
    height: 70px;
}

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

.logo-icon {
    font-size: 2rem;
    animation: leafFloat 3s ease-in-out infinite;
}

@keyframes leafFloat {
    0%, 100% { transform: translateY(0px) rotate(0deg); }
    50% { transform: translateY(-3px) rotate(5deg); }
}

.logo-text {
    display: flex;
    flex-direction: column;
}

.brand-name {
    font-family: 'Noto Sans Tamil', sans-serif;
    font-size: 1.5rem;
    font-weight: 700;
    background: var(--gradient-spice);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
    line-height: 1;
}

.brand-tagline {
    font-size: 0.7rem;
    color: var(--curry-leaf-green);
    font-weight: 500;
    margin-top: 2px;
}

.nav-menu {
    display: flex;
    gap: 2rem;
}

.nav-menu a {
    text-decoration: none;
    color: var(--earth-brown);
    font-weight: 500;
    transition: color 0.3s ease;
    position: relative;
}

.nav-menu a:hover {
    color: var(--turmeric-yellow);
}

.nav-menu a::after {
    content: '';
    position: absolute;
    bottom: -5px;
    left: 0;
    width: 0;
    height: 2px;
    background: var(--gradient-spice);
    transition: width 0.3s ease;
}

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

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

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

.banana-leaf-pattern {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background-image: 
        radial-gradient(circle at 20% 30%, rgba(139, 195, 74, 0.1) 0%, transparent 50%),
        radial-gradient(circle at 80% 70%, rgba(46, 125, 50, 0.08) 0%, transparent 50%);
    opacity: 0.6;
}

.traditional-elements {
    position: absolute;
    width: 100%;
    height: 100%;
}

.brass-bowl {
    position: absolute;
    width: 60px;
    height: 30px;
    background: radial-gradient(ellipse, var(--brass-gold) 0%, #8b6914 100%);
    border-radius: 50%;
    opacity: 0.3;
    animation: brassFloat 6s ease-in-out infinite;
}

.brass-1 {
    top: 20%;
    left: 10%;
    animation-delay: 0s;
}

.brass-2 {
    bottom: 30%;
    right: 15%;
    animation-delay: 3s;
}

@keyframes brassFloat {
    0%, 100% { transform: translateY(0px) scale(1); }
    50% { transform: translateY(-15px) scale(1.1); }
}

.steam-lines {
    position: absolute;
    top: 30%;
    right: 20%;
}

.steam {
    position: absolute;
    width: 3px;
    height: 40px;
    background: linear-gradient(to top, rgba(255, 255, 255, 0.6), transparent);
    border-radius: 2px;
    animation: steamRise 2s ease-in-out infinite;
}

.steam-1 { left: 0; animation-delay: 0s; }
.steam-2 { left: 8px; animation-delay: 0.3s; }
.steam-3 { left: 16px; animation-delay: 0.6s; }

@keyframes steamRise {
    0% { opacity: 0; transform: translateY(20px); }
    50% { opacity: 1; transform: translateY(-10px); }
    100% { opacity: 0; transform: translateY(-40px); }
}

.hero-content {
    position: relative;
    z-index: 2;
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 20px;
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 4rem;
    align-items: center;
}

/* Coming Soon Banner */
.coming-soon-banner {
    position: relative;
    background: var(--gradient-spice);
    color: white;
    padding: 12px 24px;
    border-radius: 50px;
    display: inline-flex;
    align-items: center;
    gap: 12px;
    margin-bottom: 2rem;
    box-shadow: var(--shadow-medium);
    animation: bannerPulse 2s ease-in-out infinite;
}

.banner-text {
    display: flex;
    align-items: center;
    gap: 8px;
}

.tamil-text {
    font-family: 'Noto Sans Tamil', sans-serif;
    font-size: 1rem;
    font-weight: 600;
}

.english-text {
    font-size: 0.9rem;
    font-weight: 700;
    text-transform: uppercase;
    letter-spacing: 1px;
}

.banner-animation {
    width: 8px;
    height: 8px;
    background: white;
    border-radius: 50%;
    animation: dot-pulse 1.5s ease-in-out infinite;
}

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

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

/* Hero Title */
.hero-title {
    margin-bottom: 2rem;
}

.brand-main {
    display: block;
    font-family: 'Playfair Display', serif;
    font-size: 3.5rem;
    font-weight: 700;
    background: var(--gradient-spice);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
    margin-bottom: 0.5rem;
    animation: titleSlide 1s ease-out;
}

.tagline {
    display: block;
    font-size: 1.3rem;
    color: var(--curry-leaf-green);
    font-weight: 500;
    line-height: 1.4;
    animation: titleSlide 1s ease-out 0.2s both;
}

@keyframes titleSlide {
    from {
        opacity: 0;
        transform: translateY(30px);
    }
    to {
        opacity: 1;
        transform: translateY(0);
    }
}

.hero-description {
    margin-bottom: 2.5rem;
    animation: titleSlide 1s ease-out 0.4s both;
}

.hero-description p {
    font-size: 1.1rem;
    color: var(--earth-brown);
    margin-bottom: 1rem;
    line-height: 1.6;
}

.authenticity-badge {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    background: var(--gradient-leaf);
    color: white;
    padding: 8px 16px;
    border-radius: 25px;
    font-weight: 600;
    font-size: 0.9rem;
    box-shadow: var(--shadow-soft);
}

/* Launch Notification Form */
.launch-notification {
    background: rgba(255, 255, 255, 0.9);
    padding: 2rem;
    border-radius: 20px;
    box-shadow: var(--shadow-medium);
    border: 2px solid rgba(230, 184, 0, 0.2);
    margin-bottom: 2rem;
    animation: titleSlide 1s ease-out 0.6s both;
}

.launch-notification h3 {
    color: var(--earth-brown);
    font-size: 1.2rem;
    margin-bottom: 1.5rem;
    text-align: center;
}

.notification-form {
    display: flex;
    flex-direction: column;
    gap: 1rem;
}

.form-group {
    display: flex;
    gap: 0.5rem;
}

.form-group input {
    flex: 1;
    padding: 12px 16px;
    border: 2px solid rgba(230, 184, 0, 0.3);
    border-radius: 50px;
    font-size: 1rem;
    outline: none;
    transition: all 0.3s ease;
    background: rgba(255, 255, 255, 0.9);
}

.form-group input:focus {
    border-color: var(--turmeric-yellow);
    box-shadow: 0 0 0 3px rgba(230, 184, 0, 0.1);
}

.notify-btn {
    background: var(--gradient-spice);
    color: white;
    border: none;
    padding: 14px 28px;
    border-radius: 50px;
    font-weight: 600;
    font-size: 1rem;
    cursor: pointer;
    transition: all 0.3s ease;
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 8px;
    box-shadow: var(--shadow-soft);
}

.notify-btn:hover {
    transform: translateY(-2px);
    box-shadow: var(--shadow-medium);
}

.early-bird-offer {
    text-align: center;
    color: var(--curry-leaf-green);
    font-weight: 600;
    font-size: 0.9rem;
    margin-top: 0.5rem;
}

/* Service Areas */
.service-areas {
    animation: titleSlide 1s ease-out 0.8s both;
}

.service-areas h4 {
    color: var(--earth-brown);
    font-size: 1.1rem;
    margin-bottom: 1rem;
    font-weight: 600;
}

.area-badges {
    display: flex;
    flex-wrap: wrap;
    gap: 0.5rem;
    margin-bottom: 1rem;
}

.area-badge {
    background: rgba(230, 184, 0, 0.1);
    color: var(--turmeric-yellow);
    padding: 6px 14px;
    border-radius: 20px;
    font-weight: 500;
    font-size: 0.9rem;
    border: 1px solid rgba(230, 184, 0, 0.3);
}

.delivery-model {
    color: var(--curry-leaf-green);
    font-weight: 600;
    font-size: 0.9rem;
    text-align: center;
    padding: 8px 16px;
    background: rgba(46, 125, 50, 0.1);
    border-radius: 15px;
    border: 1px solid rgba(46, 125, 50, 0.2);
}

/* Hero Visual */
.hero-visual {
    position: relative;
    display: flex;
    justify-content: center;
    align-items: center;
    animation: titleSlide 1s ease-out 1s both;
}

.food-showcase {
    position: relative;
    animation: showcaseFloat 4s ease-in-out infinite;
}

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

.banana-leaf {
    width: 300px;
    height: 200px;
    background: linear-gradient(135deg, var(--banana-leaf) 0%, #689f38 100%);
    border-radius: 50% 10% 50% 10%;
    position: relative;
    box-shadow: var(--shadow-medium);
    display: flex;
    align-items: center;
    justify-content: center;
    margin-bottom: 2rem;
}

.idly-stack {
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 5px;
    margin-right: 2rem;
}

.idly {
    width: 50px;
    height: 15px;
    background: 
        radial-gradient(ellipse at 30% 20%, rgba(255, 255, 255, 0.8) 0%, transparent 50%),
        linear-gradient(135deg, #f8f8f8 0%, #e8e8e8 100%);
    border-radius: 50%;
    border: 2px solid #d0d0d0;
    box-shadow: 
        0 4px 8px rgba(0, 0, 0, 0.1),
        inset 0 2px 3px rgba(255, 255, 255, 0.8);
    animation: idlyBounce 2s ease-in-out infinite;
}

.idly-1 { animation-delay: 0s; }
.idly-2 { animation-delay: 0.3s; }
.idly-3 { animation-delay: 0.6s; }

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

.chutney-bowls {
    display: flex;
    gap: 8px;
}

.chutney-bowl {
    width: 25px;
    height: 15px;
    border-radius: 50%;
    border: 2px solid var(--brass-gold);
    box-shadow: 0 2px 6px rgba(0, 0, 0, 0.2);
}

.coconut {
    background: linear-gradient(135deg, #ffffff, #f5f5f5);
}

.tomato {
    background: linear-gradient(135deg, #ff5722, #d84315);
}

.mint {
    background: linear-gradient(135deg, #4caf50, #388e3c);
}

.pongal-bowl {
    position: absolute;
    bottom: -20px;
    right: -20px;
}

.brass-container {
    width: 80px;
    height: 50px;
    background: radial-gradient(ellipse, var(--brass-gold) 0%, #8b6914 100%);
    border-radius: 50%;
    position: relative;
    box-shadow: var(--shadow-medium);
    display: flex;
    align-items: center;
    justify-content: center;
}

.pongal-content {
    width: 60px;
    height: 30px;
    background: linear-gradient(135deg, var(--ghee-yellow) 0%, #f4e4bc 100%);
    border-radius: 50%;
    position: relative;
}

.garnish {
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    display: flex;
    gap: 4px;
}

.cashew, .pepper {
    width: 4px;
    height: 4px;
    border-radius: 50%;
}

.cashew {
    background: #fff8dc;
}

.pepper {
    background: #333;
}

.steam-effect {
    position: absolute;
    top: -30px;
    left: 50%;
    transform: translateX(-50%);
}

.steam-particle {
    position: absolute;
    width: 4px;
    height: 20px;
    background: linear-gradient(to top, rgba(255, 255, 255, 0.6), transparent);
    border-radius: 2px;
    animation: steamRise 2s ease-in-out infinite;
}

.steam-p1 { left: -8px; animation-delay: 0s; }
.steam-p2 { left: 0px; animation-delay: 0.4s; }
.steam-p3 { left: 8px; animation-delay: 0.8s; }

/* Our Food Section */
.our-food {
    padding: 100px 0;
    background: var(--coconut-white);
}

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

.section-header h2 {
    font-family: 'Playfair Display', serif;
    font-size: 2.5rem;
    font-weight: 700;
    color: var(--earth-brown);
    margin-bottom: 1rem;
}

.section-header p {
    font-size: 1.2rem;
    color: var(--curry-leaf-green);
    max-width: 600px;
    margin: 0 auto;
}

.food-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(320px, 1fr));
    gap: 2rem;
    margin-bottom: 3rem;
}

.food-item {
    background: rgba(255, 255, 255, 0.9);
    border-radius: 20px;
    padding: 2rem;
    box-shadow: var(--shadow-soft);
    transition: all 0.3s ease;
    border: 2px solid transparent;
    position: relative;
    overflow: hidden;
}

.food-item:hover {
    transform: translateY(-5px);
    box-shadow: var(--shadow-medium);
    border-color: rgba(230, 184, 0, 0.3);
}

.food-item.featured {
    border-color: var(--turmeric-yellow);
    background: linear-gradient(135deg, rgba(255, 255, 255, 0.95), rgba(230, 184, 0, 0.05));
}

.food-visual {
    text-align: center;
    margin-bottom: 1.5rem;
    position: relative;
}

.dish-icon {
    font-size: 4rem;
    margin-bottom: 1rem;
    animation: dishFloat 3s ease-in-out infinite;
}

.dish-image {
    width: 120px;
    height: 120px;
    margin: 0 auto 1rem;
    border-radius: 50%;
    overflow: hidden;
    box-shadow: 0 8px 25px rgba(0, 0, 0, 0.15);
    border: 3px solid var(--turmeric-yellow);
    animation: dishFloat 3s ease-in-out infinite;
}

.food-img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: transform 0.3s ease;
}

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

@keyframes dishFloat {
    0%, 100% { transform: scale(1) rotate(0deg); }
    50% { transform: scale(1.1) rotate(5deg); }
}

.coming-soon-tag {
    position: absolute;
    top: -10px;
    right: -10px;
    background: var(--gradient-spice);
    color: white;
    padding: 4px 12px;
    border-radius: 15px;
    font-size: 0.7rem;
    font-weight: 700;
    text-transform: uppercase;
    box-shadow: var(--shadow-soft);
    animation: tagPulse 2s ease-in-out infinite;
}

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

.food-content h3 {
    font-size: 1.4rem;
    font-weight: 700;
    color: var(--earth-brown);
    margin-bottom: 0.5rem;
}

.food-content p {
    color: var(--curry-leaf-green);
    line-height: 1.6;
    margin-bottom: 1rem;
}

.food-features {
    display: flex;
    flex-wrap: wrap;
    gap: 0.5rem;
    margin-bottom: 1rem;
}

.feature {
    background: rgba(46, 125, 50, 0.1);
    color: var(--curry-leaf-green);
    padding: 4px 10px;
    border-radius: 12px;
    font-size: 0.8rem;
    font-weight: 500;
    border: 1px solid rgba(46, 125, 50, 0.2);
}

.price-tag {
    background: var(--gradient-spice);
    color: white;
    padding: 8px 16px;
    border-radius: 20px;
    font-weight: 600;
    text-align: center;
    box-shadow: var(--shadow-soft);
}

.authenticity-promise {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 1rem;
    background: var(--gradient-warm);
    padding: 2rem;
    border-radius: 20px;
    box-shadow: var(--shadow-soft);
    border: 2px solid rgba(230, 184, 0, 0.2);
}

.promise-icon {
    width: 60px;
    height: 60px;
    background: var(--gradient-leaf);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    color: white;
    font-size: 1.5rem;
    box-shadow: var(--shadow-soft);
}

.promise-text h4 {
    color: var(--earth-brown);
    font-size: 1.2rem;
    margin-bottom: 0.5rem;
}

.promise-text p {
    color: var(--curry-leaf-green);
}

/* Locations Section */
.locations {
    padding: 100px 0;
    background: var(--gradient-warm);
}

.locations-content {
    display: grid;
    grid-template-columns: 2fr 1fr;
    gap: 3rem;
    align-items: start;
}

.delivery-model-info {
    display: flex;
    gap: 1.5rem;
    margin-bottom: 3rem;
    background: rgba(255, 255, 255, 0.9);
    padding: 2rem;
    border-radius: 20px;
    box-shadow: var(--shadow-soft);
}

.model-icon {
    width: 80px;
    height: 80px;
    background: var(--gradient-leaf);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    color: white;
    font-size: 2rem;
    box-shadow: var(--shadow-soft);
    flex-shrink: 0;
}

.model-text h3 {
    color: var(--earth-brown);
    font-size: 1.4rem;
    margin-bottom: 0.5rem;
}

.model-text p {
    color: var(--curry-leaf-green);
    line-height: 1.6;
}

.service-areas-detailed {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(200px, 1fr));
    gap: 1.5rem;
}

.area-card {
    background: rgba(255, 255, 255, 0.9);
    padding: 1.5rem;
    border-radius: 15px;
    text-align: center;
    box-shadow: var(--shadow-soft);
    transition: all 0.3s ease;
    border: 2px solid transparent;
}

.area-card:hover {
    transform: translateY(-3px);
    box-shadow: var(--shadow-medium);
    border-color: rgba(230, 184, 0, 0.3);
}

.area-icon {
    font-size: 2rem;
    margin-bottom: 0.5rem;
}

.area-card h4 {
    color: var(--earth-brown);
    font-size: 1.1rem;
    margin-bottom: 0.5rem;
}

.area-card p {
    color: var(--curry-leaf-green);
    font-size: 0.9rem;
    margin-bottom: 1rem;
}

.delivery-time {
    background: var(--gradient-spice);
    color: white;
    padding: 6px 12px;
    border-radius: 15px;
    font-size: 0.8rem;
    font-weight: 600;
    display: inline-block;
}

.delivery-promise {
    background: rgba(255, 255, 255, 0.9);
    padding: 2rem;
    border-radius: 20px;
    box-shadow: var(--shadow-soft);
}

.promise-items {
    display: flex;
    flex-direction: column;
    gap: 1rem;
}

.promise-item {
    display: flex;
    align-items: center;
    gap: 0.5rem;
    color: var(--curry-leaf-green);
    font-weight: 500;
}

.promise-item i {
    color: var(--turmeric-yellow);
    font-size: 1.2rem;
}

/* Contact Section */
.contact {
    padding: 100px 0;
    background: var(--coconut-white);
}

.contact-content {
    display: grid;
    grid-template-columns: 2fr 1fr;
    gap: 3rem;
}

.contact-info h2 {
    font-family: 'Playfair Display', serif;
    font-size: 2.2rem;
    color: var(--earth-brown);
    margin-bottom: 1rem;
}

.contact-info p {
    color: var(--curry-leaf-green);
    font-size: 1.1rem;
    margin-bottom: 2rem;
}

.contact-form {
    background: var(--gradient-warm);
    padding: 2rem;
    border-radius: 20px;
    box-shadow: var(--shadow-soft);
    border: 2px solid rgba(230, 184, 0, 0.2);
}

.contact-form h3 {
    color: var(--earth-brown);
    margin-bottom: 1.5rem;
}

.form-row {
    display: flex;
    gap: 1rem;
    margin-bottom: 1rem;
}

.contact-form input,
.contact-form select,
.contact-form textarea {
    flex: 1;
    padding: 12px 16px;
    border: 2px solid rgba(230, 184, 0, 0.3);
    border-radius: 10px;
    font-size: 1rem;
    outline: none;
    transition: all 0.3s ease;
    background: rgba(255, 255, 255, 0.9);
    font-family: inherit;
}

.contact-form input:focus,
.contact-form select:focus,
.contact-form textarea:focus {
    border-color: var(--turmeric-yellow);
    box-shadow: 0 0 0 3px rgba(230, 184, 0, 0.1);
}

.submit-btn {
    background: var(--gradient-spice);
    color: white;
    border: none;
    padding: 12px 24px;
    border-radius: 50px;
    font-weight: 600;
    cursor: pointer;
    transition: all 0.3s ease;
    display: flex;
    align-items: center;
    gap: 8px;
    box-shadow: var(--shadow-soft);
}

.submit-btn:hover {
    transform: translateY(-2px);
    box-shadow: var(--shadow-medium);
}

.social-connect {
    background: var(--gradient-warm);
    padding: 2rem;
    border-radius: 20px;
    box-shadow: var(--shadow-soft);
    text-align: center;
}

.social-connect h3 {
    color: var(--earth-brown);
    margin-bottom: 1.5rem;
}

.social-links {
    display: flex;
    flex-direction: column;
    gap: 1rem;
    margin-bottom: 2rem;
}

.social-link {
    display: flex;
    align-items: center;
    gap: 0.5rem;
    padding: 12px 16px;
    background: rgba(255, 255, 255, 0.9);
    border-radius: 50px;
    text-decoration: none;
    color: var(--earth-brown);
    font-weight: 500;
    transition: all 0.3s ease;
    box-shadow: var(--shadow-soft);
}

.social-link:hover {
    transform: translateY(-2px);
    box-shadow: var(--shadow-medium);
}

.social-link.instagram { border-left: 4px solid #e4405f; }
.social-link.facebook { border-left: 4px solid #1877f2; }
.social-link.whatsapp { border-left: 4px solid #25d366; }



/* Footer */
.footer {
    background: var(--earth-brown);
    color: var(--coconut-white);
    padding: 2rem 0;
}

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

.footer-brand {
    display: flex;
    align-items: center;
    gap: 1rem;
}

.brand-logo {
    display: flex;
    align-items: center;
    gap: 0.5rem;
}

.brand-logo .logo-icon {
    font-size: 1.5rem;
}

.brand-logo .brand-name {
    font-family: 'Noto Sans Tamil', sans-serif;
    font-size: 1.2rem;
    font-weight: 700;
}

.footer-info {
    text-align: right;
}

.footer-info p {
    margin: 0;
    font-size: 0.9rem;
    opacity: 0.8;
}

/* Responsive Design */
@media (max-width: 1024px) {
    .hero-content {
        grid-template-columns: 1fr;
        gap: 2rem;
        text-align: center;
    }
    
    .locations-content,
    .contact-content {
        grid-template-columns: 1fr;
        gap: 2rem;
    }
    
    .brand-main {
        font-size: 2.8rem;
    }
}

@media (max-width: 768px) {
    .nav-menu {
        display: none;
    }
    
    .form-group,
    .form-row {
        flex-direction: column;
        gap: 0.5rem;
    }
    
    .brand-main {
        font-size: 2.2rem;
    }
    
    .tagline {
        font-size: 1.1rem;
    }
    
    .food-grid {
        grid-template-columns: 1fr;
    }
    
    .service-areas-detailed {
        grid-template-columns: 1fr;
    }
    

    
    .footer-content {
        flex-direction: column;
        gap: 1rem;
        text-align: center;
    }
    
    .footer-info {
        text-align: center;
    }
}

@media (max-width: 480px) {
    .container {
        padding: 0 15px;
    }
    
    .hero-content {
        padding: 0 15px;
    }
    
    .launch-notification {
        padding: 1.5rem;
    }
    
    .brand-main {
        font-size: 1.8rem;
    }
    
    .section-header h2 {
        font-size: 2rem;
    }
}