:root {
    --primary: #c62828;
    --primary-dark: #b71c1c;
    --text-dark: #212121;
    --text-light: #666;
    --section-background: #ffebee;
}

* {
      box-sizing: border-box;
      margin: 0;
      padding: 0;
    }

    body {
      font-family: 'Quicksand', sans-serif;
      color: var(--text-dark);
      line-height: 1.6;
      background-color: #ffffff;
    }

    h1, h2, h3 {
        font-family: 'Pacifico', cursive;
        color: var(--primary);
    }

    h1 {
        font-size: clamp(1.5rem, 5vw, 3rem);
    }
    
    a {
      color: var(--primary);
      text-decoration: none;
    }
    a:hover {
      text-decoration: underline;
    }

    header {
      background: url('images/pine-hill-erial-rd.webp') no-repeat center 40%/cover;
      height: 100vh;
      color: white;
      position: relative;
      display: flex;
      flex-direction: column;
      justify-content: center;
      align-items: center;
      text-align: center;
      padding: 0 20px;
    }
    header::before {
      content: "";
      position: absolute;
      inset: 0;
      background-color: rgba(0, 0, 0, 0.55);
      z-index: 0;
    }
    header > * {
      position: relative;
      z-index: 1;
    }
    header h1 {
      font-size: 3rem;
      margin-bottom: 0.5rem;
    }

    header p {
      font-size: 1.5rem;
      margin-bottom: 1rem;
    }

    .hero-buttons {
        display: flex;
        gap: 1rem;
        justify-content: center;
        flex-wrap: wrap;
    }
    
    .btn {
      background-color: var(--primary);
      color: #ffffff;
      padding: 0.75rem 1.5rem;
      border-radius: 5px;
      font-weight: bold;
      transition: background-color 0.3s ease;
      text-decoration: none;
    }

    a.btn:hover,
    .mobile-cta a:hover {
      opacity: 0.85;
    }

    .btn:hover {
      background-color: var(--primary-dark);
    }

    a:hover {
        text-decoration: none;
    }

    .open-status {
        margin-top: 1rem;
        font-size: 1rem;
    }

    section {
      max-width: 900px;
      margin: 3rem auto;
      padding: 0 20px;
    }

    section h2 {
      font-size: 2rem;
      margin-bottom: 1rem;
      text-align: center;
      color: var(--primary-dark);
    }

    #about {
        display: flex;
        flex-wrap: wrap;
        align-items: center;
        gap: 2rem;
        padding: 3rem 20px;
        background-color: var(--section-background);
        max-width: 1000px;
        margin: auto;
    }

    .about-content {
        flex: 1 1 500px;
    }

    #about h2 {
        font-size: 2.5rem;
    }

    #about p {
      font-size: 1.05rem;
      line-height: 1.6;
      color: var(--text-dark);
      margin-bottom: 1rem;
      text-align: center;
    }

    #about blockquote {
        font-style: italic;
        color: var(--text-light);
        padding-left: 1rem;
        margin: 2rem 0;
        text-align: center;
    }

    .quote-author {
        display: block;
        font-weight: bold;
        margin-top: 0.5rem;
    }

    .about-image img {
        width: 100%;
        border-radius: 10px;
        max-width: 400px;
        object-fit: cover;
    }

    #menu {
      background-color: #f9f9f9;
      padding: 3rem 20px;
      max-width: 1000px;
      margin: auto;
      text-align: center;
    }

    #menu h2 {
        font-size: 2.5rem;
        margin-bottom: 2rem;
    }

    .menu-category {
        margin-bottom: 2.5rem;
        text-align: left;
    }

    .menu-grid {
      display: flex;
      flex-wrap: wrap;
      justify-content: space-between;
      gap: 2rem;
    }
    .menu-column {
      flex: 1 1 45%;
      min-width: 280px;
    }
    .menu-column h3 {
      font-size: 1.5rem;
      margin-bottom: 1rem;
      color: #444;
      border-bottom: 2px solid #e0e0e0;
      padding-bottom: 0.5rem;
    }

    .menu-column ul {
      list-style: none;
      padding-left: 0;
    }

    .menu-column li {
      margin-bottom: 0.75rem;
      padding-bottom: 0.8rem;
      font-size: 1.1rem;
      color: #555;
      display: flex;
      align-items: center;
      gap: 10px;
    }
    
    .menu-column strong {
      color: #222;
    }

    .menu-column span {
        margin-left: auto;
        font-weight: bold;
        color: #c59d5f;
    }

    
    .menu-note {
        font-size: 1rem;
        color: var(--text-light);
        margin-top: 2rem;
    }

    .menu-item-text {
      flex: 1;
    }

    .best-seller {
      color: var(--primary-dark);
      font-style: italic;
      font-weight: 600;
      margin-left: 6px;
    }

    .order-online {
      background: #fff8f8;
      padding: 2.5rem 1.5rem;
      margin: 4rem auto 2rem;
      border: 1px solid #f1c0c0;
      max-width: 600px;
      border-radius: 10px;
      box-shadow: 0 2px 10px rgba(198, 40, 40, 0.05);
    }

    .order-online h2 {
      margin-bottom: 1.5rem;
      font-size: 2rem;
    }

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

    .order-online label {
      font-weight: bold;
      font-size: 0.95rem;
      display: flex;
      flex-direction: column;
    }

    .order-online input,
    .order-online textarea,
    .order-online select {
      font-family: 'Quicksand', sans-serif;
      padding: 0.6rem;
      border-radius: 6px;
      border: 1px solid #ddd;
      font-size: 1rem;
      margin-top: 0.4rem;
      background-color: #fff;
    }

    .order-online textarea {
      min-height: 100px;
    }

    .order-online button {
      background-color: var(--primary);
      color: white;
      padding: 0.75rem;
      font-size: 1.1rem;
      font-weight: bold;
      border: none;
      border-radius: 6px;
      cursor: pointer;
      transition: background-color 0.3s ease; 
    }

    .order-online button:hover {
      background-color: var(--primary-dark);
    }

    .order-online .note {
      font-size: 0.9rem;
      color: var(--text-light);
      text-align: center;
      margin-top: 0.5rem;
    }

    #contact {
      text-align: center;
      padding: 3rem 20px;
    }
    #contact p {
      font-size: 1.1rem;
      margin-bottom: 0.5rem;
      color: #555;
    }
    #contact .btn {
      background-color: var(--primary);
      padding: 0.75rem 1.5rem;
      border-radius: 5px;
      font-weight: bold;
      transition: background-color 0.3s ease;
      display: inline-block;
      margin-top: 1rem;
      text-decoration: none;
    }
    #contact .btn:hover {
      background-color: var(--primary-dark);
    }


    .responsive-iframe {
        position: relative;
        width: 100%;
        padding-bottom: 56.25%; /* Aspect ratio 16:9 */
        height: 0;
        overflow: hidden;
        border-radius: 8px;
    }

    .responsive-iframe iframe {
        position: absolute;
        top: 0; left: 0;
        width: 100%;
        height: 100%;
        border: 0;
    }

    .map-container {
        max-width: 600px;
        margin: 2rem auto;
    }

    #testimonials {
        background-color: var(--section-background);
        padding: 3rem 30px;
        text-align: center;
        position: relative;
    }

    #testimonials h2 {
      font-size: 2rem;
      margin-bottom: 2rem;
    }

    .testimonial-carousel {
        max-width: 700px;
        margin: auto;
        position: relative;
    }

    .testimonial {
        display: none;
        padding: 1.5rem;
        background-color: #fff;
        border-left: 4px solid var(--primary);
        box-shadow: 0 2px 6px rgba(0,0,0,0.05);
        border-radius: 8px;
        transition: opacity 0.3s ease-in-out;
    }

    .testimonial.active {
        display: block;
    }

    .testimonial blockquote {
      font-style: italic;
      font-size: 1.1rem;
      color: #444;
      margin: 1rem 0;
    }

    .testimonial cite {
        font-weight: bold;
        color: #333;
    }

    .stars {
        width: 100px;
        margin-bottom: 1rem;
    }

    .source-badge {
        display: inline-block;
        margin-top: 0.5rem;
        font-size: 0.9rem;
        font-weight: bold;
        color: #555;
        background: #eee;
        padding: 0.3rem 0.7rem;
        border-radius: 6px;
    }

    .source-badge.google {
        background-color: #f1f6ff;
        color: #1a73e8;
    }

    .testimonial-controls {
        margin-top: 1rem;
    }

    .testimonial-controls button {
        background: none;
        border: none;
        font-size: 2rem;
        color: #c59d5f;
        cursor: pointer;
        margin: 0 0.5rem;
        transition: color 0.2s ease;
    }

    .testimonial-controls button:hover {
        color: #b4884c;
    }

    footer {
      background-color: #222;
      color: #bbb;
      text-align: center;
      padding: 1.5rem 20px;
      font-size: 0.9rem;
      margin-top: 3rem;
      margin-bottom: 50px;
    }

    .mobile-cta {
        position: fixed;
        bottom: 0;
        left: 0;
        right: 0;
        z-index: 1000;
        display: flex;
        justify-content: space-around;
        flex-wrap: wrap;
        background-color: var(--primary);
        padding: 0.75rem 1rem;
        border-top: 1px solid var(--primary-dark);
        box-shadow: 0 -2px 5px rgba(0,0,0,0.1);
        overflow-x: hidden;
    }

    .mobile-cta a {
        color: white;
        font-size: 0.95rem;
        font-weight: bold;
        text-decoration: none;
        display: flex;
        flex-direction: column;
        align-items: center;
        padding: 0.3rem;
        transition: opacity 0.2s ease;
        min-width: 0;
        flex: 1;
        word-break: break-word;
    }

    .mobile-cta a:hover {
        opacity: 0.8;
    }

    /* Responsive */
    @media (max-width: 768px) {
        #about {
            flex-direction: column;
            text-align: center;
            padding: 2rem 1rem;
        }
    }
    @media (min-width: 768px) {
        .mobile-cta {
            display: none;
        }

        footer {
            margin-bottom: 0;
        }
    }

    @media (max-width: 600px) {
      header h1 {
        font-size: 2.2rem;
      }
      header p {
        font-size: 1.1rem;
      }
      .menu-grid {
        flex-direction: column;
      }
      .menu-column {
        flex-basis: 1 1 100%;
      }
      .order-online input,
      .order-online textarea,
      .order-online select {
        font-size: 0.95rem;
        width: 100%;
      }
      .testimonial {
        padding: 1rem;
      }
      .stars {
        width: 80px;
      }
      .map-container {
        padding: 0 10px;
      }
    }

    @media (max-width: 480px) {
        header h1 {
            font-size: 1.75rem;
        }
        header p {
            font-size: 1rem;
        }
        .btn {
            padding: 0.5rem 1rem;
            font-size: 0.9rem;
        }
    }

.toast {
  visibility: hidden;
  min-width: 250px;
  margin: 0 auto;
  background-color: #333;
  color: #fff;
  text-align: center;
  border-radius: 8px;
  padding: 16px;
  position: fixed;
  bottom: 30px;
  left: 0; right: 0;
  z-index: 1000;
  font-size: 16px;
  opacity: 0;
  transition: opacity 0.3s ease, visibility 0.3s ease;
}

.toast.show {
  visibility: visible;
  opacity: 1;
}

.toast.error {
  background-color: #c0392b;
}