/*               STYLES FOR CHIKA'S FAST FOOD WEBSITE
<==============> DEVELOPED BY AHMAD CODER <=============>
*/
    * {
      margin: 0;
      padding: 0;
      box-sizing: border-box;
    }

    :root {
      --deep-teal: #1A4D4D;        /* premium, trustworthy */
      --warm-coral: #E67E4A;       /* vibrant, appetite-stimulating */
      --soft-gold: #E8C39E;        /* elegant accent */
      --cream-bg: #FEF9F2;          /* warm background */
      --white: #FFFFFF;
      --charcoal: #2E3B3B;
      --shadow-sm: 0 8px 20px -6px rgba(0,0,0,0.1);
      --shadow-hover: 0 20px 30px -8px rgba(26,77,77,0.2);
      --transition: all 0.25s ease;
      --whatsapp-green: #25D366;
    }

    body {
      font-family: 'Inter', sans-serif;
      background: var(--cream-bg);
      color: var(--charcoal);
      line-height: 1.5;
      overflow-x: hidden;
    }
    h1, h2, h3, .logo, .ceo-name {
      font-family: 'Playfair Display', serif;
      font-weight: 800;
    }

    a{
        text-decoration: none;
    }
    /* fixed typo: margin-button → margin-bottom */
    .fa-whatsapp{
        margin-bottom: -2px; /* subtle alignment */
    }
    .container {
      max-width: 1280px;
      margin: 0 auto;
      padding: 2.5rem 1.5rem;
    }
    .section-title {
      font-size: 2.8rem;
      color: var(--deep-teal);
      margin-bottom: 1.5rem;
      position: relative;
      display: inline-block;
    }
    .section-title::after {
      content: '';
      display: block;
      width: 50%;
      height: 3px;
      background: var(--warm-coral);
      margin-top: 0.2rem;
    }

    /* ----- NAVBAR (sticky, mobile-first) ----- */
    .navbar {
      position: sticky;
      top: 0;
      width: 100%;
      background: var(--white);
      padding: 0.8rem 1.5rem;
      display: flex;
      align-items: center;
      justify-content: space-between;
      z-index: 1000;
      box-shadow: 0 4px 12px rgba(0,0,0,0.03);
    }
    .logo {
      font-size: 2.2rem;
      color: var(--deep-teal);
      letter-spacing: -0.5px;
    }
    .logo span {
      color: var(--warm-coral);
      font-size: 1.8rem;
    }
    .nav-links { display: none; }
    .hamburger {
      display: block;
      font-size: 2.2rem;
      color: var(--deep-teal);
      cursor: pointer;
    }
    .mobile-menu {
      position: fixed;
      width: 100vw;
      transition: 0.4s;
      display: none;
      flex-direction: column;
      background: var(--white);
      padding: 1.5rem;
      gap: 1rem;
      box-shadow: 0 20px 30px -12px rgba(0,0,0,0.1);
      border-radius: 0 0 28px 28px;
      z-index: 100000;
    }
    .mobile-menu.show { display: flex; }
    .mobile-menu a {
      text-decoration: none;
      color: var(--charcoal);
      font-weight: 600;
      border-bottom: 1px solid #f0e0d0;
      padding-bottom: 0.5rem;
    }

    /* ----- HERO (dual message: delivery + occasions) ----- */
    .hero {
      background: linear-gradient(105deg, rgba(26,77,77,0.97) 0%, rgba(230,126,74,0.85) 100%), url('img/chika_bg.webp?w=1260&h=750&auto=format');
      background-size: cover;
      background-position: center 30%;
      color: white;
      padding: 4rem 1.5rem 5rem;
      text-align: center;
    }
    .hero h1 {
      font-size: 3rem;
      line-height: 1.2;
    }
    .hero h1 small {
      font-size: 1.6rem;
      font-family: 'Inter', sans-serif;
      font-weight: 400;
      color: var(--soft-gold);
    }
    .hero p {
      font-size: 1.2rem;
      max-width: 650px;
      margin: 1.5rem auto 2rem;
    }
    .btn {
      display: inline-block;
      background: var(--warm-coral);
      color: white;
      font-weight: 700;
      padding: 1rem 2.5rem;
      border: none;
      border-radius: 60px;
      font-size: 1.1rem;
      cursor: pointer;
      transition: var(--transition);
      box-shadow: 0 8px 18px -6px rgba(0,0,0,0.2);
      text-decoration: none;
      margin: 0.3rem;
    }
    .btn-outline {
      background: transparent;
      border: 2px solid white;
      color: white;
    }
    .btn-outline:hover {
      background: white;
      color: var(--deep-teal);
    }
    /* WhatsApp button style */
    .btn-wa {
      background: var(--whatsapp-green);
      color: white;
    }
    .btn-wa i {
      margin-right: 0.5rem;
    }

    /* ----- GOMBI badge (service area) ----- */
    .service-badge {
      display: flex;
      flex-wrap: wrap;
      justify-content: center;
      gap: 2rem;
      background: var(--white);
      border-radius: 80px;
      padding: 1rem 2.5rem;
      margin: -2rem auto 2rem;
      width: fit-content;
      box-shadow: var(--shadow-sm);
      border-left: 6px solid var(--warm-coral);
    }

    /* ----- CEO SECTION (prominent, with occasion mention) ----- */
    .ceo-section {
      background: var(--white);
      border-radius: 60px;
      padding: 2.5rem;
      margin: 2rem 0;
      display: flex;
      flex-wrap: wrap;
      align-items: center;
      gap: 3rem;
      box-shadow: var(--shadow-sm);
    }
    .ceo-image img {
      width: 240px;
      height: 240px;
      object-fit: cover;
      border-radius: 50%;
      border: 4px solid var(--warm-coral);
    }
    .ceo-text {
      flex: 1;
    }
    .ceo-name {
      font-size: 2.6rem;
      color: var(--deep-teal);
    }
    .ceo-title {
      color: var(--warm-coral);
      font-weight: 600;
      letter-spacing: 1px;
      margin: 0.5rem 0 1rem;
    }
    .highlight-badge {
      background: var(--deep-teal);
      color: var(--soft-gold);
      padding: 0.5rem 1.5rem;
      border-radius: 60px;
      display: inline-block;
      margin: 0.5rem 0;
    }

    /* ----- OCCASION CATERING SECTION (new) ----- */
    .occasion-showcase {
      background: linear-gradient(145deg, var(--white), #FDF3E7);
      border-radius: 60px;
      padding: 2.5rem;
      margin: 2rem 0;
    }
    .occasion-grid {
      display: grid;
      grid-template-columns: repeat(auto-fit, minmax(240px, 1fr));
      gap: 2rem;
      margin-top: 2rem;
    }
    .occasion-card {
      background: var(--white);
      border-radius: 32px;
      padding: 2rem 1rem;
      text-align: center;
      box-shadow: var(--shadow-sm);
      border-bottom: 4px solid var(--warm-coral);
    }
    .occasion-card i {
      font-size: 3rem;
      color: var(--deep-teal);
      margin-bottom: 1rem;
    }
    
    .food-action{
      display:flex;
      align-items: center;
      justify-content: space-around;
    }
    
    .wa-small-btn {
      background: var(--whatsapp-green);
      color: white;
      border: none;
      border-radius: 40px;
      font-weight: 600;
      margin-top: 1rem;
      cursor: pointer;
      width: 100%;
      font-size: 0.95rem;
      display: flex;
     align-items: center;
     justify-content: space-around;
     padding: 10px 5px;
    }
    .wa-small-btn i {
        padding: 0;
        margin: 0;
    }

    /* ----- MENU GRID (fast food + local) ----- */
    .menu-grid {
      display: grid;
      grid-template-columns: repeat(auto-fit, minmax(260px, 1fr));
      gap: 2rem;
      margin: 2rem 0;
    }
    .food-card {
      background: var(--white);
      border-radius: 28px;
      overflow: hidden;
      box-shadow: var(--shadow-sm);
      transition: var(--transition);
    }
    .food-card:hover {
      transform: translateY(-8px);
      box-shadow: var(--shadow-hover);
    }
    .food-img {
      height: 190px;
      background-size: cover;
      background-position: center;
    }
    .food-info {
      padding: 1.5rem;
    }
    .food-info h3 {
      font-size: 1.8rem;
      color: var(--deep-teal);
    }
    .price {
      font-size: 1.8rem;
      font-weight: 700;
      color: var(--warm-coral);
    }
    .wa-order-btn {
      background: var(--whatsapp-green);
      color: white;
      border: none;
      border-radius: 40px;
      font-weight: 600;
      margin-top: 0.8rem;
      cursor: pointer;
      display: flex;
      align-items: center;
      justify-content: space-around;
      width: 45%;
      padding: 8px
    }

    /* ----- DUAL CTA (WhatsApp focused) ----- */
    .dual-cta {
      display: flex;
      flex-wrap: wrap;
      gap: 2rem;
      background: var(--deep-teal);
      border-radius: 60px;
      padding: 2.5rem;
      color: white;
      justify-content: center;
      text-align: center;
    }
    .cta-wa-button {
      background: var(--whatsapp-green);
      color: white;
      padding: 1rem 2rem;
      border-radius: 60px;
      text-decoration: none;
      font-weight: 700;
      display: inline-flex;
      align-items: center;
      gap: 0.6rem;
      font-size: 1.2rem;
      margin: 0.5rem;
    }

    /* ----- floating WhatsApp (optional) ----- */
    .floating-wa {
      position: fixed;
      bottom: 30px;
      right: 25px;
      background: var(--whatsapp-green);
      color: white;
      width: 65px;
      height: 65px;
      border-radius: 50%;
      display: flex;
      align-items: center;
      justify-content: center;
      font-size: 2.5rem;
      box-shadow: 0 10px 20px rgba(0,0,0,0.3);
      z-index: 999;
      cursor: pointer;
      border: 3px solid white;
      transition: 0.2s;
    }
    .floating-wa:hover {
      transform: scale(1.1);
    }

    .footer {
      background: var(--charcoal);
      color: #ccc;
      padding: 3rem 1.5rem 1.5rem;
      border-radius: 40px 40px 0 0;
    }

    @media (min-width: 750px) {
      .nav-links {
        display: flex;
        gap: 2rem;
      }
      .nav-links a {
        text-decoration: none;
        color: var(--charcoal);
        font-weight: 600;
      }
      .hamburger { display: none; }
      .hero h1 { font-size: 4rem; }
    }