:root {
    --primary-color: #e74c3c;
    --secondary-color: #2c3e50;
    --accent-color: #f39c12;
    --text-dark: #333;
    --text-light: #fff;
    --bg-light: #f8f9fa;
    --shadow: 0 2px 10px rgba(0,0,0,0.1);
    --shadow-hover: 0 4px 20px rgba(0,0,0,0.15);
    
    /* Counter Themes */
    --frozen-primary: #a8dadc;
    --frozen-secondary: #457b9d;
    --street-primary: #2d2d2d;
    --street-secondary: #e63946;
    --south-primary: #06d6a0;
    --south-secondary: #fff;
    --main-primary: #8b0000;
    --main-secondary: #ffd700;
    --bbq-primary: #ff6b35;
    --bbq-secondary: #f7931e;
    --continental-primary: #8b4513;
    --continental-secondary: #f5deb3;
}

* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

body {
    font-family: 'Poppins', sans-serif;
    line-height: 1.6;
    color: var(--text-dark);
    overflow-x: hidden;
}

.container {
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 20px;
}

/* Header Styles */
header {
    background: var(--text-light);
    box-shadow: var(--shadow);
    position: sticky;
    top: 0;
    z-index: 1000;
}

.header-container {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 15px 20px;
    max-width: 1400px;
    margin: 0 auto;
}

.logo-section {
    display: flex;
    align-items: center;
    gap: 15px;
}

.logo-section img {
    height: 70px;
    width: auto;
}

.brand-name {
    font-size: 1.5rem;
    font-weight: 700;
    color: #17303a;
    letter-spacing: 1px;

}

nav ul {
    display: flex;
    list-style: none;
    gap: 30px;
    align-items: center;
}

nav ul li {
    position: relative;
}

nav ul li a {
    text-decoration: none;
    color: var(--text-dark);
    font-weight: 500;
    transition: color 0.3s;
}

nav ul li a:hover {
    color: var(--primary-color);
}

.dropdown {
    position: relative;
}

.dropdown-content {
    display: none;
    position: absolute;
    background: var(--text-light);
    min-width: 220px;
    box-shadow: var(--shadow-hover);
    border-radius: 8px;
    top: 100%;
    left: 0;
    padding: 10px 0;
}

.dropdown:hover .dropdown-content {
    display: block;
}

.dropdown-content a {
    display: block;
    padding: 12px 20px;
    color: var(--text-dark);
    text-decoration: none;
    transition: background 0.3s;
}

.dropdown-content a:hover {
    background: var(--bg-light);
    color: var(--primary-color);
}

.cart-icon-container {
    position: relative;
    cursor: pointer;
}

.cart-icon-container i {
    font-size: 1.5rem;
    color: var(--text-dark);
}

.cart-badge {
    position: absolute;
    top: -8px;
    right: -8px;
    background: var(--primary-color);
    color: var(--text-light);
    border-radius: 50%;
    width: 20px;
    height: 20px;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 0.75rem;
    font-weight: 600;
}

.mobile-menu-toggle {
    display: none;
    font-size: 1.5rem;
    cursor: pointer;
    color: var(--text-dark);
}

/* Hero Section */
.hero {
    background: linear-gradient(135deg, #667eea 0%, #764ba2 100%);
    padding: 100px 20px;
    text-align: center;
    color: var(--text-light);
}

.hero-content {
    max-width: 800px;
    margin: 0 auto;
}

.hero-logo {
    max-width: 200px;
    margin-bottom: 20px;
    filter: drop-shadow(0 4px 6px rgba(0,0,0,0.2));
}
.hero-logo1 {
    max-width: 500px;
    margin-bottom: 20px;
    filter: drop-shadow(0 4px 6px rgba(0,0,0,0.2));
}


.hero h1 {
    font-size: 3rem;
    margin-bottom: 20px;
    text-shadow: 2px 2px 4px rgba(0,0,0,0.3);
}

.tagline {
    font-size: 1.5rem;
    margin-bottom: 20px;
    font-weight: 300;
}

.intro {
    font-size: 1.1rem;
    line-height: 1.8;
    margin-bottom: 30px;
}

.cta-button {
    display: inline-block;
    background: var(--primary-color);
    color: var(--text-light);
    padding: 15px 40px;
    border-radius: 50px;
    text-decoration: none;
    font-weight: 600;
    transition: transform 0.3s, box-shadow 0.3s;
}

.cta-button:hover {
    transform: translateY(-3px);
    box-shadow: 0 6px 20px rgba(0,0,0,0.3);
}

/* About Section */
.about-section {
    padding: 80px 20px;
    background: var(--bg-light);
}

.about-section h2 {
    text-align: center;
    font-size: 2.5rem;
    margin-bottom: 30px;
    color: var(--secondary-color);
}

.about-section p {
    max-width: 900px;
    margin: 0 auto;
    font-size: 1.1rem;
    line-height: 1.8;
    text-align: justify;
}

/* Contact Section */
.contact-section {
    padding: 80px 20px;
    background: var(--text-light);
}

.contact-section h2 {
    text-align: center;
    font-size: 2.5rem;
    margin-bottom: 50px;
    color: var(--secondary-color);
}

.contact-grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 40px;
    max-width: 1000px;
    margin: 0 auto;
}

.contact-info {
    display: flex;
    flex-direction: column;
    gap: 30px;
}

.contact-item {
    display: flex;
    align-items: flex-start;
    gap: 20px;
}

.contact-item i {
    font-size: 2rem;
    color: var(--primary-color);
    margin-top: 5px;
}

.contact-item h3 {
    font-size: 1.2rem;
    margin-bottom: 5px;
    color: var(--secondary-color);
}

.contact-item p {
    color: var(--text-dark);
    font-size: 1rem;
}

.contact-map iframe {
    border-radius: 10px;
    box-shadow: var(--shadow);
}

/* Footer */
footer {
    background: var(--secondary-color);
    color: var(--text-light);
    padding: 40px 20px 20px;
}

.footer-content {
    max-width: 1200px;
    margin: 0 auto;
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
    gap: 40px;
    margin-bottom: 30px;
}

.footer-section h3 {
    margin-bottom: 20px;
    font-size: 1.3rem;
}

.footer-section p,
.footer-section a {
    color: var(--text-light);
    text-decoration: none;
    margin-bottom: 10px;
    display: block;
}

.footer-section a:hover {
    color: var(--accent-color);
}

.footer-bottom {
    text-align: center;
    padding-top: 20px;
    border-top: 1px solid rgba(255,255,255,0.1);
}

/* Counter Page Styles */
.counter-hero {
    padding: 100px 20px 60px;
    text-align: center;
    color: var(--text-light);
    position: relative;
}

.counter-hero h1 {
    font-size: 3rem;
    margin-bottom: 20px;
    text-shadow: 2px 2px 4px rgba(0,0,0,0.3);
}

/* Frozen Theme */
.frozen-theme .counter-hero {
    background: linear-gradient(135deg, var(--frozen-primary) 0%, var(--frozen-secondary) 100%);
}

.frozen-theme .accordion-button {
    background: var(--frozen-primary);
}

/* Street Theme */
.street-theme .counter-hero {
    background: linear-gradient(135deg, var(--street-primary) 0%, var(--street-secondary) 100%);
}

.street-theme .accordion-button {
    background: var(--street-secondary);
}

/* South Indian Theme */
.south-theme .counter-hero {
    background: linear-gradient(135deg, var(--south-primary) 0%, #028a67 100%);
}

.south-theme .accordion-button {
    background: var(--south-primary);
}

/* Main Course Theme */
.main-theme .counter-hero {
    background: linear-gradient(135deg, var(--main-primary) 0%, var(--main-secondary) 100%);
}

.main-theme .accordion-button {
    background: #ff8533;
}

/* BBQ Theme */
.bbq-theme .counter-hero {
    background: linear-gradient(135deg, var(--bbq-primary) 0%, var(--bbq-secondary) 100%);
}

.bbq-theme .accordion-button {
    background: var(--bbq-primary);
}

/* Continental Theme */
.continental-theme .counter-hero {
    background: linear-gradient(135deg, var(--continental-primary) 0%, var(--continental-secondary) 100%);
}

.continental-theme .accordion-button {
    background: var(--continental-primary);
    color: var(--text-light);
}

/* Menu Section */
.menu-section {
    padding: 60px 20px;
    background: var(--bg-light);
}

.menu-section h2 {
    text-align: center;
    font-size: 2.5rem;
    margin-bottom: 40px;
    color: var(--secondary-color);
}

.accordion {
    max-width: 900px;
    margin: 0 auto;
}

.accordion-item {
    background: var(--text-light);
    margin-bottom: 15px;
    border-radius: 10px;
    overflow: hidden;
    box-shadow: var(--shadow);
}

.accordion-button {
    width: 100%;
    padding: 20px;
    border: none;
    text-align: left;
    font-size: 1.2rem;
    font-weight: 600;
    color: var(--text-light);
    cursor: pointer;
    display: flex;
    justify-content: space-between;
    align-items: center;
    transition: all 0.3s;
}

.accordion-button:hover {
    opacity: 0.9;
}

.accordion-button.active {
    border-radius: 10px 10px 0 0;
}

.accordion-content {
    max-height: 0;
    overflow: hidden;
    transition: max-height 0.3s ease;
}

.menu-item {
    padding: 15px 20px;
    border-bottom: 1px solid var(--bg-light);
    display: flex;
    justify-content: space-between;
    align-items: center;
}

.menu-item:last-child {
    border-bottom: none;
}

.item-info h4 {
    font-size: 1.1rem;
    color: var(--secondary-color);
    margin-bottom: 5px;
}

.item-price {
    font-size: 1rem;
    color: var(--accent-color);
    font-weight: 600;
}

.add-to-cart {
    background: var(--primary-color);
    color: var(--text-light);
    border: none;
    padding: 10px 20px;
    border-radius: 5px;
    cursor: pointer;
    font-weight: 500;
    transition: all 0.3s;
}

.add-to-cart:hover {
    background: #c0392b;
    transform: translateY(-2px);
}

.counter-description {
    max-width: 800px;
    margin: 40px auto 0;
    text-align: center;
    font-size: 1rem;
    line-height: 1.8;
    padding: 0 20px;
}

/* Modal Styles */
.modal {
    display: none;
    position: fixed;
    z-index: 2000;
    left: 0;
    top: 0;
    width: 100%;
    height: 100%;
    background: rgba(0,0,0,0.7);
}

.modal.active {
    display: block;
}

.modal-content {
    background: var(--text-light);
    margin: 5% auto;
    padding: 30px;
    border-radius: 15px;
    max-width: 600px;
    max-height: 80vh;
    overflow-y: auto;
    position: relative;
    box-shadow: 0 10px 40px rgba(0,0,0,0.3);
}

.close-modal,
.close-summary {
    position: absolute;
    right: 20px;
    top: 20px;
    font-size: 2rem;
    cursor: pointer;
    color: var(--text-dark);
    transition: color 0.3s;
}

.close-modal:hover,
.close-summary:hover {
    color: var(--primary-color);
}

.modal-content h2 {
    margin-bottom: 30px;
    color: var(--secondary-color);
}

.cart-item {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 15px;
    border-bottom: 1px solid var(--bg-light);
}

.cart-item-info h4 {
    font-size: 1.1rem;
    color: var(--secondary-color);
    margin-bottom: 5px;
}

.cart-item-details {
    display: flex;
    gap: 15px;
    align-items: center;
}

.quantity-controls {
    display: flex;
    gap: 10px;
    align-items: center;
}

.quantity-btn {
    background: var(--primary-color);
    color: var(--text-light);
    border: none;
    width: 30px;
    height: 30px;
    border-radius: 5px;
    cursor: pointer;
    font-weight: 600;
}

.remove-item {
    background: #e74c3c;
    color: var(--text-light);
    border: none;
    padding: 8px 15px;
    border-radius: 5px;
    cursor: pointer;
    font-size: 0.9rem;
}

.cart-total {
    margin: 30px 0;
    padding: 20px;
    background: var(--bg-light);
    border-radius: 10px;
    text-align: center;
}

.cart-total h3 {
    font-size: 1.5rem;
    color: var(--secondary-color);
}

.btn-primary {
    width: 100%;
    background: var(--accent-color);
    color: var(--text-light);
    border: none;
    padding: 15px;
    border-radius: 10px;
    font-size: 1.1rem;
    font-weight: 600;
    cursor: pointer;
    transition: all 0.3s;
}

.btn-primary:hover {
    background: #e67e22;
    transform: translateY(-2px);
}

.empty-cart {
    text-align: center;
    padding: 40px;
    color: #999;
}

.order-summary-item {
    padding: 10px 0;
    border-bottom: 1px solid var(--bg-light);
}

.summary-note {
    margin-top: 20px;
    text-align: center;
    color: #666;
    font-style: italic;
}

/* Blog Styles */
.blog-section {
    padding: 80px 20px;
    background: var(--bg-light);
}

.blog-section h1 {
    text-align: center;
    font-size: 2.5rem;
    margin-bottom: 50px;
    color: var(--secondary-color);
}

.blog-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: 30px;
    max-width: 1200px;
    margin: 0 auto;
}

.blog-card {
    background: var(--text-light);
    border-radius: 15px;
    overflow: hidden;
    box-shadow: var(--shadow);
    transition: transform 0.3s, box-shadow 0.3s;
}

.blog-card:hover {
    transform: translateY(-5px);
    box-shadow: var(--shadow-hover);
}

.blog-image {
    width: 100%;
    height: 200px;
    object-fit: cover;
}

.blog-content {
    padding: 25px;
}

.blog-content h3 {
    font-size: 1.4rem;
    margin-bottom: 15px;
    color: var(--secondary-color);
}

.blog-excerpt {
    color: #666;
    margin-bottom: 20px;
    line-height: 1.6;
}

.read-more {
    display: inline-block;
    color: var(--primary-color);
    text-decoration: none;
    font-weight: 600;
    transition: color 0.3s;
}

.read-more:hover {
    color: #c0392b;
}
/* Counters Overview Section */
/* Counters Overview Section */
.counters-overview {
    padding: 60px 20px;
    background-color: #fdfdfd;
    text-align: center;
}

.counters-overview .section-title {
    font-size: 2rem;
    margin-bottom: 40px;
    font-weight: 700;
    color: #333;
}

.counters-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(220px, 1fr));
    gap: 25px;
    justify-items: center;
    align-items: stretch;
}

.counter-card {
    background-color: #fff;
    border-radius: 12px;
    padding: 20px;
    box-shadow: 0 4px 12px rgba(0,0,0,0.1);
    transition: transform 0.3s ease, box-shadow 0.3s ease;
    width: 100%;
    max-width: 280px;
    display: flex;
    flex-direction: column;
    align-items: center;
    text-decoration: none;
    color: inherit;
}

.counter-card img {
    width: 150px;
    height: auto;
    object-fit: cover;
    border-radius: 5%;
    margin-bottom: 15px;
}

.counter-card h3 {
    font-size: 1.3rem;
    margin-bottom: 10px;
    color: #333;
}

.counter-card p {
    font-size: 0.95rem;
    color: #666;
    text-align: center;
}

.counter-card:hover {
    transform: translateY(-5px);
    box-shadow: 0 8px 20px rgba(0,0,0,0.15);
}


/* Responsive Design */
@media (max-width: 768px) {
    .mobile-menu-toggle {
        display: block;
    }
    
    nav {
        display: none;
        position: absolute;
        top: 100%;
        left: 0;
        right: 0;
        background: var(--text-light);
        box-shadow: var(--shadow);
    }
    
    nav.active {
        display: block;
    }
    
    nav ul {
        flex-direction: column;
        padding: 20px;
        gap: 15px;
    }
    
    .dropdown-content {
        position: static;
        display: none;
        box-shadow: none;
        padding-left: 20px;
    }
    
    .dropdown.active .dropdown-content {
        display: block;
    }
    
    .hero h1 {
        font-size: 2rem;
    }
    
    .tagline {
        font-size: 1.2rem;
    }
    
    .intro {
        font-size: 1rem;
    }
    
    .counter-hero h1 {
        font-size: 2rem;
    }
    
    .contact-grid {
        grid-template-columns: 1fr;
    }
    
    .brand-name {
        font-size: 1.2rem;
    }
    
    .logo-section img {
        height: 40px;
    }
    .hero-logo1 {
    max-width: 200px;
    margin-bottom: 15px;
    filter: drop-shadow(0 4px 6px rgba(0,0,0,0.2));
    }
}

@media (max-width: 480px) {
    .hero h1 {
        font-size: 1.5rem;
    }
    
    .about-section h2,
    .contact-section h2 {
        font-size: 2rem;
    }
    
    .modal-content {
        margin: 10% 10px;
        padding: 20px;
    }
        .hero-logo1 {
    max-width: 200px;
    margin-bottom: 15px;
    filter: drop-shadow(0 4px 6px rgba(0,0,0,0.2));
    }
    
}
