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

:root {
    /* Dark Theme Color Variables */
    --primary-bg: #0a0a0a;
    --secondary-bg: #1a1a1a;
    --card-bg: #1e1e1e;
    --accent-bg: #252525;
    --red-primary: #e63946;
    --red-secondary: #CC2936;
    --text-white: #ffffff;
    --text-light: #f0f0f0;
    --text-grey: #b3b3b3;
    --border-dark: #444444;
    --flame-orange: #ff6b35;
    --flame-yellow: #f7931e;
    
    /* Spacing */
    --container-max-width: 1200px;
    --section-padding: 80px 0;
    --card-padding: 2rem;
    
    /* Transitions */
    --transition-smooth: all 0.3s ease;
    --transition-fast: all 0.2s ease;
}

body {
    font-family: 'Segoe UI', Tahoma, Geneva, Verdana, sans-serif;
    background-color: var(--primary-bg);
    color: var(--text-light);
    line-height: 1.6;
    overflow-x: hidden;
}

.container {
    max-width: var(--container-max-width);
    margin: 0 auto;
    padding: 0 20px;
}

/* Typography */
h1, h2, h3, h4, h5, h6 {
    color: var(--text-white);
    font-weight: 600;
    line-height: 1.2;
}

.flame-text {
    background: linear-gradient(45deg, var(--red-primary), var(--flame-orange));
    background-clip: text;
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    font-weight: 700;
}

.section-title {
    font-size: 2.5rem;
    text-align: center;
    margin-bottom: 3rem;
}

/* Buttons */
.btn {
    display: inline-block;
    padding: 12px 24px;
    border-radius: 25px;
    text-decoration: none;
    font-weight: 600;
    transition: var(--transition-smooth);
    border: 2px solid transparent;
    cursor: pointer;
    position: relative;
    overflow: hidden;
}

.btn::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: var(--transition-smooth);
}

.btn:hover::before {
    left: 100%;
}

.btn-primary {
    background: linear-gradient(45deg, var(--red-primary), var(--flame-orange));
    color: var(--text-white);
    box-shadow: 0 4px 15px rgba(230, 57, 70, 0.3);
}

.btn-primary:hover {
    transform: translateY(-2px);
    box-shadow: 0 8px 25px rgba(230, 57, 70, 0.5);
}

.btn-secondary {
    background: transparent;
    color: var(--text-white);
    border: 2px solid var(--red-primary);
}

.btn-secondary:hover {
    background: var(--red-primary);
    color: var(--text-white);
    transform: translateY(-2px);
}

.btn-outline {
    background: transparent;
    color: var(--text-white);
    border: 2px solid var(--text-white);
}

.btn-outline:hover {
    background: var(--text-white);
    color: var(--primary-bg);
    transform: translateY(-2px);
}

.btn-zomato {
    background: #e23744;
    color: white;
    padding: 8px 16px;
    font-size: 0.9rem;
}

.btn-zomato:hover {
    background-color: #620202;
}

.btn-whatsapp {
    background: #25D366;
    color: white;
    padding: 8px 12px;
    font-size: 1.1rem;
    width: 40px;
    height: 40px;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
   
}

.btn-whatsapp:hover {
    background-color: darkgreen;
}

/* Navigation */
.navbar {
    position: fixed;
    top: 0;
    width: 100%;
    background: rgba(10, 10, 10, 0.95);
    backdrop-filter: blur(10px);
    z-index: 1000;
    padding: 1rem 0;
    transition: var(--transition-smooth);
}

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

.logo-img {
    height: 50px;
    width: auto;
}

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

.nav-link {
    color: var(--text-light);
    text-decoration: none;
    font-weight: 500;
    transition: var(--transition-fast);
    position: relative;
}

.nav-link::after {
    content: '';
    position: absolute;
    bottom: -5px;
    left: 0;
    width: 0;
    height: 2px;
    background: var(--red-primary);
    transition: var(--transition-fast);
}

.nav-link:hover::after,
.nav-link.active::after {
    width: 100%;
}

.nav-link:hover,
.nav-link.active {
    color: var(--red-primary);
}

.nav-buttons {
    display: flex;
    gap: 1rem;
    align-items: center;
}



/* Hamburger Menu */
.hamburger {
    display: none;
    flex-direction: column;
    cursor: pointer;
    gap: 4px;
}

.hamburger span {
    width: 25px;
    height: 3px;
    background: var(--text-white);
    transition: var(--transition-fast);
}

.hamburger.active span:nth-child(1) {
    transform: rotate(45deg) translate(5px, 5px);
}

.hamburger.active span:nth-child(2) {
    opacity: 0;
}

.hamburger.active span:nth-child(3) {
    transform: rotate(-45deg) translate(7px, -6px);
}

/* Hero Section */
.hero {
    min-height: 100vh;
    display: flex;
    align-items: center;
    background: linear-gradient(135deg, var(--primary-bg) 0%, var(--secondary-bg) 100%);
    padding: 120px 20px 80px;
}
.cloud-kitchen-name {
    font-size: 3rem;   /* Bigger text */
    font-weight: 800;  /* Extra bold */
    margin-bottom: 1rem;
    color: #222;       /* Dark color for emphasis */
    text-transform: uppercase;
    letter-spacing: 2px;
}


.hero-content {
    max-width: var(--container-max-width);
    margin: 0 auto;
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 4rem;
    align-items: center;
}

.hero-title {
    font-size: 3.5rem;
    margin-bottom: 1.5rem;
    line-height: 1.1;
}

.hero-subtitle {
    font-size: 1.2rem;
    color: var(--text-grey);
    margin-bottom: 2.5rem;
    line-height: 1.6;
}

.hero-buttons {
    display: flex;
    gap: 1.5rem;
    flex-wrap: wrap;
}

.hero-image {
    position: relative;
}

.hero-img {
    width: 100%;
    height: 400px;
    object-fit: cover;
    border-radius: 20px;
    box-shadow: 0 20px 60px rgba(0, 0, 0, 0.5);
    position: relative;
    z-index: 1;
}

.hero-image::before {
    content: '';
    position: absolute;
    top: -20px;
    left: -20px;
    right: -20px;
    bottom: -20px;
    background: linear-gradient(45deg, var(--red-primary), var(--flame-orange));
    border-radius: 30px;
    opacity: 0.3;
    z-index: 0;
}

/* Features Section */
.features {
    padding: var(--section-padding);
    background: var(--secondary-bg);
}

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

.feature-card {
    background: var(--card-bg);
    border-radius: 15px;
    overflow: hidden;
    transition: var(--transition-smooth);
    border: 1px solid var(--border-dark);
}

.feature-card:hover {
    transform: translateY(-10px);
    box-shadow: 0 20px 40px rgba(230, 57, 70, 0.2);
}

.feature-img {
    width: 100%;
    height: 200px;
    object-fit: cover;
}

.feature-content {
    padding: var(--card-padding);
}

.feature-content h3 {
    font-size: 1.4rem;
    margin-bottom: 1rem;
    color: var(--red-primary);
}

.feature-content p {
    color: var(--text-grey);
    line-height: 1.6;
}

/* About Section */
.about {
    padding: var(--section-padding);
    background: var(--primary-bg);
}

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

.about-text h2 {
    font-size: 2.5rem;
    margin-bottom: 2rem;
}

.about-text p {
    color: var(--text-grey);
    margin-bottom: 1.5rem;
    font-size: 1.1rem;
}

.about-highlights {
    display: flex;
    gap: 2rem;
    margin-top: 2rem;
}

.highlight-item {
    display: flex;
    align-items: center;
    gap: 0.5rem;
    color: var(--text-light);
}

.highlight-item i {
    color: var(--red-primary);
    font-size: 1.2rem;
}

.about-img {
    width: 100%;
    height: 400px;
    object-fit: cover;
    border-radius: 15px;
    box-shadow: 0 15px 35px rgba(0, 0, 0, 0.3);
}

/* Why Choose Us Section */
.why-choose {
    padding: var(--section-padding);
    background: var(--secondary-bg);
}

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

.reason-card {
    background: var(--card-bg);
    padding: var(--card-padding);
    border-radius: 15px;
    text-align: center;
    border: 1px solid var(--border-dark);
    transition: var(--transition-smooth);
}

.reason-card:hover {
    transform: translateY(-5px);
    border-color: var(--red-primary);
}

.reason-icon {
    width: 80px;
    height: 80px;
    margin: 0 auto 1.5rem;
    background: linear-gradient(45deg, var(--red-primary), var(--flame-orange));
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
}

.reason-icon i {
    font-size: 2rem;
    color: var(--text-white);
}

.reason-card h3 {
    font-size: 1.3rem;
    margin-bottom: 1rem;
    color: var(--text-white);
}

.reason-card p {
    color: var(--text-grey);
}

/* CTA Section */
.cta-section {
    padding: var(--section-padding);
    background: var(--primary-bg);
    text-align: center;
}

.cta-content h2 {
    font-size: 2.5rem;
    margin-bottom: 1rem;
}

.cta-content p {
    font-size: 1.2rem;
    color: var(--text-grey);
    margin-bottom: 2.5rem;
    max-width: 600px;
    margin-left: auto;
    margin-right: auto;
}

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

/* Footer */
.footer {
    background: var(--card-bg);
    padding: 3rem 0 1rem;
    border-top: 1px solid var(--border-dark);
}

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

.footer-section h3 {
    color: var(--red-primary);
    margin-bottom: 1rem;
    font-size: 1.2rem;
}

.footer-section ul {
    list-style: none;
}

.footer-section ul li {
    margin-bottom: 0.5rem;
}

.footer-section ul li a {
    color: var(--text-grey);
    text-decoration: none;
    transition: var(--transition-fast);
}

.footer-section ul li a:hover {
    color: var(--red-primary);
}

.footer-section p {
    color: var(--text-grey);
    margin-bottom: 0.5rem;
}

.footer-section p i {
    color: var(--red-primary);
    margin-right: 0.5rem;
}

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

.social-links a {
    width: 40px;
    height: 40px;
    background: var(--red-primary);
    color: var(--text-white);
    display: flex;
    align-items: center;
    justify-content: center;
    border-radius: 50%;
    transition: var(--transition-fast);
}

.social-links a:hover {
    background: var(--flame-orange);
    transform: translateY(-2px);
}

.footer-bottom {
    border-top: 1px solid var(--border-dark);
    padding-top: 1rem;
    text-align: center;
    color: var(--text-grey);
}

/* WhatsApp Floating Button */
.whatsapp-float {
    position: fixed;
    bottom: 30px;
    right: 30px;
    z-index: 1000;
}

.whatsapp-button {
    width: 60px;
    height: 60px;
    background: #25D366;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    color: white;
    font-size: 1.5rem;
    text-decoration: none;
    box-shadow: 0 4px 20px rgba(37, 211, 102, 0.4);
    transition: var(--transition-smooth);
    animation: pulse 2s infinite;
}

.whatsapp-button:hover {
    transform: scale(1.1);
    box-shadow: 0 6px 30px rgba(37, 211, 102, 0.6);
}

@keyframes pulse {
    0% { box-shadow: 0 0 0 0 rgba(37, 211, 102, 0.7); }
    70% { box-shadow: 0 0 0 10px rgba(37, 211, 102, 0); }
    100% { box-shadow: 0 0 0 0 rgba(37, 211, 102, 0); }
}

/* Menu Page Styles */
.menu-hero {
    padding: 140px 20px 80px;
    background: var(--secondary-bg);
    text-align: center;
}

.menu-hero h1 {
    font-size: 3rem;
    margin-bottom: 1rem;
}

.menu-hero p {
    font-size: 1.2rem;
    color: var(--text-grey);
    max-width: 600px;
    margin: 0 auto;
}

.menu-section {
    padding: 4rem 0;
    background: var(--primary-bg);
}

.menu-section:nth-child(even) {
    background: var(--secondary-bg);
}

.menu-category {
    margin-bottom: 3rem;
}

.category-title {
    font-size: 2rem;
    color: var(--red-primary);
    margin-bottom: 2rem;
    text-align: center;
}

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

.menu-item {
    background: var(--card-bg);
    padding: var(--card-padding);
    border-radius: 15px;
    border: 1px solid var(--border-dark);
    transition: var(--transition-smooth);
}

.menu-item:hover {
    transform: translateY(-5px);
    border-color: var(--red-primary);
}

.menu-item-header {
    display: flex;
    justify-content: space-between;
    align-items: flex-start;
    margin-bottom: 1rem;
}

.menu-item h3 {
    font-size: 1.3rem;
    color: var(--text-white);
}

.menu-price {
    color: var(--red-primary);
    font-weight: 700;
    font-size: 1.2rem;
}

.menu-description {
    color: var(--text-grey);
    line-height: 1.6;
}
.menu-img {
  width: 100px;
  height: 100px;
  object-fit: cover;
  border-radius: 10px;
  border: 1px solid #ddd;
  transition: transform 0.3s ease;
}

.signature {
    position: relative;
}

.signature::before {
    content: '⭐';
    position: absolute;
    top: -5px;
    right: -10px;
    color: var(--flame-orange);
}

/* Catering Section */
.catering-highlight {
    background: linear-gradient(135deg, var(--red-primary), var(--flame-orange));
    padding: 3rem;
    border-radius: 20px;
    margin: 3rem 0;
    text-align: center;
}

.catering-highlight h2 {
    font-size: 2rem;
    margin-bottom: 1rem;
    color: var(--text-white);
}

.catering-highlight p {
    font-size: 1.1rem;
    margin-bottom: 2rem;
    color: var(--text-white);
    opacity: 0.9;
}

/* Contact Page Styles */
.contact-hero {
    padding: 140px 20px 80px;
    background: var(--secondary-bg);
    text-align: center;
}

.contact-hero h1 {
    font-size: 3rem;
    margin-bottom: 1rem;
}

.contact-hero p {
    font-size: 1.2rem;
    color: var(--text-grey);
    max-width: 600px;
    margin: 0 auto;
}

.contact-main {
    padding: var(--section-padding);
    background: var(--primary-bg);
}

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

.contact-form {
    background: var(--card-bg);
    padding: var(--card-padding);
    border-radius: 15px;
    border: 1px solid var(--border-dark);
}

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

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

.form-group input,
.form-group select,
.form-group textarea {
    width: 100%;
    padding: 12px 15px;
    background: var(--accent-bg);
    border: 1px solid var(--border-dark);
    border-radius: 8px;
    color: var(--text-light);
    font-size: 1rem;
    transition: var(--transition-fast);
}

.form-group input:focus,
.form-group select:focus,
.form-group textarea:focus {
    outline: none;
    border-color: var(--red-primary);
    box-shadow: 0 0 0 3px rgba(230, 57, 70, 0.1);
}

.form-group textarea {
    resize: vertical;
    min-height: 120px;
}

.contact-info {
    background: var(--card-bg);
    padding: var(--card-padding);
    border-radius: 15px;
    border: 1px solid var(--border-dark);
    height: fit-content;
}

.contact-info h2 {
    font-size: 1.8rem;
    margin-bottom: 2rem;
    color: var(--red-primary);
}

.info-item {
    display: flex;
    align-items: center;
    gap: 1rem;
    margin-bottom: 1.5rem;
    padding: 1rem;
    background: var(--accent-bg);
    border-radius: 10px;
}

.info-icon {
    width: 50px;
    height: 50px;
    background: var(--red-primary);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    color: var(--text-white);
    font-size: 1.2rem;
}

.info-details h3 {
    font-size: 1.1rem;
    margin-bottom: 0.5rem;
    color: var(--text-white);
}

.info-details p {
    color: var(--text-grey);
    margin: 0;
}

.business-hours {
    margin-top: 2rem;
}

.hours-grid {
    display: grid;
    gap: 0.5rem;
}

.hour-item {
    display: flex;
    justify-content: space-between;
    padding: 0.5rem 0;
    border-bottom: 1px solid var(--border-dark);
}

.hour-day {
    color: var(--text-light);
}

.hour-time {
    color: var(--text-grey);
}

/* FAQ Section */
.faq-section {
    padding: var(--section-padding);
    background: var(--secondary-bg);
}

.faq-container {
    max-width: 800px;
    margin: 0 auto;
}

.faq-item {
    background: var(--card-bg);
    border: 1px solid var(--border-dark);
    border-radius: 10px;
    margin-bottom: 1rem;
    overflow: hidden;
}

.faq-question {
    padding: 1.5rem;
    background: var(--accent-bg);
    cursor: pointer;
    display: flex;
    justify-content: space-between;
    align-items: center;
    transition: var(--transition-fast);
    text-decoration: none;
}

.faq-question:hover {
    background: var(--card-bg);
}

.faq-question h3 {
    font-size: 1.1rem;
    color: var(--text-white);
}

.faq-toggle {
    color: var(--red-primary);
    font-size: 1.2rem;
    transition: var(--transition-fast);
}

.faq-answer {
    padding: 0 1.5rem;
    max-height: 0;
    overflow: auto;
    transition: max-height 0.3s ease;
}

.faq-answer.active {
    max-height: 200px;
    padding: 1.5rem;
}

.faq-answer p {
    color: var(--text-grey);
    line-height: 1.6;
}

/* Responsive Design */
@media (max-width: 768px) {
    :root {
        --section-padding: 60px 0;
    }
    
    .nav-menu {
        position: fixed;
        top: 80px;
        left: -100%;
        width: 100%;
        height: calc(100vh - 80px);
        background: var(--secondary-bg);
        flex-direction: column;
        justify-content: flex-start;
        align-items: center;
        padding-top: 2rem;
        transition: var(--transition-smooth);
    }
    
    .nav-menu.active {
        left: 0;
    }
    
    .nav-buttons {
        display: none;
    }
    
    .hamburger {
        display: flex;
    }
    
    .hero-content {
        grid-template-columns: 1fr;
        text-align: center;
        gap: 2rem;
    }
    
    .hero-title {
        font-size: 2.5rem;
    }
    
    .hero-buttons {
        justify-content: center;
    }
    
    .features-grid {
        grid-template-columns: 1fr;
        gap: 2rem;
    }
    
    .about-content {
        grid-template-columns: 1fr;
        gap: 2rem;
    }
    
    .about-highlights {
        flex-direction: column;
        gap: 1rem;
    }
    
    .reasons-grid {
        grid-template-columns: 1fr;
    }
    
    .section-title {
        font-size: 2rem;
    }
    
    .cta-buttons {
        flex-direction: column;
        align-items: center;
    }
    
    .footer-content {
        grid-template-columns: 1fr;
        text-align: center;
    }
    
    .menu-grid {
        grid-template-columns: 1fr;
    }
    
    .contact-content {
        grid-template-columns: 1fr;
        gap: 2rem;
    }
    
    .whatsapp-float {
        bottom: 20px;
        right: 20px;
    }
    
    .whatsapp-button {
        width: 50px;
        height: 50px;
        font-size: 1.3rem;
    }
}

@media (max-width: 480px) {
    .container {
        padding: 0 15px;
    }
    
    .hero {
        padding: 100px 15px 60px;
    }
    
    .hero-title {
        font-size: 2rem;
    }
    
    .hero-subtitle {
        font-size: 1rem;
    }
    
    .btn {
        padding: 10px 20px;
        font-size: 0.9rem;
    }
    
    .section-title {
        font-size: 1.8rem;
    }
    
    .feature-card,
    .reason-card,
    .menu-item {
        margin: 0 15px;
    }
    
    .features-grid,
    .reasons-grid,
    .menu-grid {
        padding: 0;
    }

    .menu-item {
    display: flex;
    flex-direction: column;
    gap: 0.5rem;
    border: 1px solid #eee;
    padding: 1rem;
    border-radius: 12px;
    background: #fff;
    box-shadow: 0 2px 8px rgba(0,0,0,0.05);

      /* Fix visibility of menu texts on white background */
  .menu-item h3 {
    color: #222 !important; /* Dark title */
  }

  .menu-description {
    color: #555 !important; /* Darker grey for description */
  }

  .menu-price {
    color: #e63946 !important; /* Keep the red price */
  }

}

.menu-item-header {
    display: flex;
    justify-content: space-between;
    align-items: center;
}

.menu-item-body {
    display: flex;
    align-items: flex-start;
    gap: 1rem;
}

.menu-img {
    width: 100px;
    height: 100px;
    object-fit: cover;
    border-radius: 10px;
    border: 1px solid #ddd;
}

@media (max-width: 480px) {
  .menu-item h3,
  .menu-item-header h3 {
    color: #222 !important;
  }

  .menu-description {
    color: #555 !important;
  }

  .menu-price {
    color: #e63946 !important;
  }
}


}