    :root {
      --scarlet-red: #EF3340;
      --golden-yellow: #FDB813;
      --sea-teal: #009999;
      --charcoal: #333333;
      --coconut: #FFF8F0;
    }

    body {
      background-color: var(--coconut);
      color: var(--charcoal);
      font-family: 'Lato', sans-serif;
    }

    .hero {
      background-color: var(--scarlet-red);
      color: white;
      padding: 80px 0;
      text-align: center;
    }

    .hero h1 {
      font-family: 'Dancing Script', cursive;
      font-size: 3rem;
    }

    .btn-yellow {
      background-color: var(--golden-yellow);
      color: black;
      border: none;
    }

    .about-img, .menu-img {
      border-radius: 10px;
      max-width: 100%;
    }

    .menu-card {
      background-color: white;
      border: none;
      box-shadow: 0 2px 8px rgba(0,0,0,0.1);
      transition: transform 0.2s;
    }

    .menu-card:hover {
      transform: scale(1.03);
    }

    .testimonial {
      background-color: var(--sea-teal);
      color: white;
      padding: 60px 20px;
    }

    .contact {
      background-color: var(--golden-yellow);
      padding: 60px 20px;
    }

    footer {
      background-color: var(--charcoal);
      color: white;
      padding: 20px 0;
      text-align: center;
    }

    .form-control {
      border-radius: 0.5rem;
    }
    .menu-img {
      height: 200px;
      object-fit: cover;
      width: 100%;
      border-top-left-radius: 10px;
      border-top-right-radius: 10px;
    }

    .menu-card {
      height: 100%;
      display: flex;
      flex-direction: column;
      justify-content: space-between;
    }
