/* ===== Global Styling ===== */
body {
  margin: 0;
  font-family: 'Inter', sans-serif;
  background-color: #0f172a;
  color: #f9fafb;
  line-height: 1.6;
}

h1, h2, h3 {
  font-weight: 700;
  color: #e88b18;
  margin-bottom: 10px;
}

a {
  text-decoration: none;
  color: #f9fafb;
}

img {
  max-width: 100%;
  height: auto;
  display: block;
}

.about-hero {
  padding: 40px;
  background: #fff;
}

.about-container {
  display: flex;
  justify-content: space-between;
  align-items: center;
  gap: 40px;
  flex-wrap: wrap;
}

.about-left, .about-center, .about-right {
  flex: 1;
  min-width: 280px;
}

.tagline {
  font-size: 0.9rem;
  color: #555;
}

.headline {
  font-size: 2rem;
  font-weight: bold;
  margin-top: 10px;
}

.highlight {
  color: #e88b18;
}

.barista-img {
  width: 100%;
  max-width: 280px;
  height: auto;
}

.order-bg {
  width: 100%;
  border-radius: 10px;
  margin-bottom: 10px;
  position: relative;
}

.order-card {
  background-color: #fff;
  padding: 10px;
  border-radius: 12px;
  box-shadow: 0 2px 10px rgba(0,0,0,0.1);
  margin: 5px 0;
  font-weight: bold;
}


.order-card small {
  display: block;
  font-weight: normal;
  color: #666;
  margin-top: 5px;
}

.about-info {
  text-align: center;
  padding: 50px 20px;
  background: #fafafa;
}

.about-info h2 {
  font-size: 2.5rem;
  font-weight: bold;
  margin-bottom: 20px;
}

.about-info p {
  font-size: 1.1rem;
  max-width: 800px;
  margin: 0 auto;
  line-height: 1.6;
  color: #444;
}

body {
      margin: 0;
      font-family: 'Inter', sans-serif;
      background-color: #fff;
      color: #000000;
    }
    header {
      background-color: #ffffff;
      padding: 20px 40px;
      display: flex;
      justify-content: space-between;
      align-items: center;
      box-shadow: 0 2px 10px rgba(0,0,0,0.1);
    }
    header h1 {
      font-size: 24px;
      color: #000;
    }
    nav a {
      margin: 0 15px;
      text-decoration: none;
      color: #000;
      font-weight: 600;
    }
    .hero {
      display: flex;
      align-items: center;
      justify-content: space-around;
      padding: 60px 20px;
      background-color: #f4f4f4;
    }
    .hero-text {
      max-width: 500px;
    }
    .hero-text h2 {
      font-size: 36px;
      color: #d97706;
      margin-bottom: 20px;
    }
    .about-section {
      padding: 40px 20px;
      text-align: center;
    }
    .about-section p {
      max-width: 800px;
      margin: auto;
      line-height: 1.6;
    }
    .images-row, .store-features {
      display: flex;
      justify-content: center;
      gap: 20px;
      padding: 20px;
      flex-wrap: wrap;
    }
    .images-row img, .store-features img {
      width: 300px;
      height: auto;
      border-radius: 8px;
    }
    .store-hours {
      text-align: center;
      padding: 40px 20px;
    }
    .store-hours h3 {
      font-size: 24px;
      margin-bottom: 10px;
    }
    
    .feature-boxes {
      display: flex;
      justify-content: center;
      gap: 20px;
      padding: 20px;
      flex-wrap: wrap;
    }
    .feature-box {
      width: 300px;
      background-color: #f9fafb;
      padding: 20px;
      border-radius: 10px;
      text-align: center;
      box-shadow: 0 4px 6px rgba(0,0,0,0.1);
    }
    .feature-box h4 {
      color: #d97706;
      margin-bottom: 10px;
    }
    .footer-img {
      display: flex;
      justify-content: center;
      padding: 40px 20px;
    }
    .footer-img img {
      width: 600px;
      border-radius: 12px;
    }
.about-gallery {
  display: flex;
  justify-content: center;
  gap: 20px;
  flex-wrap: wrap;
  padding: 20px;
}

.about-gallery img {
  width: 300px;              /* Normalized size */
  height: auto;
  border-radius: 16px;
  object-fit: cover;
  transition: transform 0.3s ease;
  box-shadow: 0 4px 8px rgba(0,0,0,0.1);
}

.about-gallery img:hover {
  transform: scale(1.05);   /* Subtle zoom effect */
}
    body {
      font-family: 'Segoe UI', sans-serif;
      background: #f5f5f5;
      color: #000000;
    }

    nav {
      display: flex;
      justify-content: center;
      padding: 16px;
      background: #fff;
      box-shadow: 0 2px 4px rgba(0,0,0,0.05);
    }

    nav a {
      margin: 0 8px;
      padding: 8px 16px;
      text-decoration: none;
      color: #000000;
      font-weight: 500;
      border-radius: 20px;
      transition: 0.3s;
    }

    nav a.active {
      background-color: #e68e2e;
      color: white;
    }

    .hero {
      display: flex;
      flex-direction: column;
      align-items: center;
      background-color: white;
      padding: 30px 20px;
      border-radius: 16px;
      margin: 16px;
    }

    .hero-text {
      text-align: center;
      margin-bottom: 20px;
    }

    .hero-text p {
      font-size: 14px;
      color: #666;
      margin-bottom: 6px;
    }

    .hero-text h2 {
      font-size: 24px;
      font-weight: 700;
    }

    .hero-text h2 .blue {
      color: #1d1f29;
    }

    .hero-text h2 .orange {
      color: #e68e2e;
    }

    .hero img {
      width: 220px;
      height: auto;
      border-radius: 12px;
    }

    .order-status {
      background-color: #e68e2e;
      margin: 20px 16px;
      padding: 20px;
      border-radius: 20px;
      color: white;
    }

    .order-step {
      background-color: white;
      color: #1d1f29;
      border-radius: 12px;
      padding: 12px;
      margin-bottom: 16px;
      box-shadow: 0 2px 6px rgba(0,0,0,0.1);
      position: relative;
    }

    .order-step::after {
      content: attr(data-step);
      position: absolute;
      right: -12px;
      top: 50%;
      transform: translateY(-50%);
      font-size: 24px;
      font-weight: bold;
      color: #fff;
    }

    .order-step p {
      margin: 0;
      font-size: 13px;
    }

    .order-step .title {
      font-weight: 600;
    }

    .food-img {
      width: 100%;
      max-width: 400px;
      margin: 0 auto;
      display: block;
      border-radius: 12px;
    }

    @media (min-width: 768px) {
      .hero {
        flex-direction: row;
        justify-content: space-between;
        text-align: left;
      }

      .hero-text {
        text-align: left;
        flex: 1;
        padding-right: 20px;
      }

      .hero img {
        flex: 1;
      }

      .order-status {
        max-width: 500px;
        margin-left: auto;
        margin-right: auto;
      }
  .contact-section {
    max-width: 1100px;
    margin: 3rem auto;
    display: flex;
    flex-wrap: wrap;
    gap: 2rem;
    justify-content: center;
  }

  .contact-left,
  .contact-right {
    flex: 1 1 400px;
    border-radius: 12px;
    overflow: hidden;
    box-shadow: 0 4px 12px rgba(0, 0, 0, 0.05);
  }

  .contact-left img {
    width: 100%;
    height: auto;
    border-radius: 12px;
    object-fit: cover;
    display: block;
  }

  .contact-left {
    background-color: #ffffff;
    padding: 1rem;
  }

  .contact-right {
    background-color: #111827; /* Matches the soft black/gray style */
    color: white;
    padding: 2rem;
    display: flex;
    flex-direction: column;
    justify-content: center;
  }

  .contact-right h3 {
    margin-top: 0;
    font-size: 1.25rem;
  }

  .contact-right p {
    font-size: 0.95rem;
    line-height: 1.6;
  }
 .map-container {
  text-align: center;
  margin: 50px auto;
  max-width: 900px;
  animation: fadeIn 1s ease-in-out;
}

.map-container h3 {
  color: #f57c00;
  font-size: 28px;
  margin-bottom: 20px;
  font-weight: 700;
  animation: slideDown 0.8s ease-out;
}

.map-container a {
  display: inline-block;
  position: relative;
  overflow: hidden;
  border-radius: 16px;
  box-shadow: 0 10px 20px rgba(0, 0, 0, 0.15);
  transition: transform 0.3s ease, box-shadow 0.3s ease;
}

.map-container a:hover {
  transform: scale(1.03);
  box-shadow: 0 14px 28px rgba(0, 0, 0, 0.25);
}

.map-container img {
  width: 100%;
  height: auto;
  border-radius: 16px;
  transition: transform 0.4s ease;
}

.map-container a::after {
  content: "Click to open in Google Maps";
  position: absolute;
  bottom: 15px;
  left: 50%;
  transform: translateX(-50%);
  background-color: rgba(245, 124, 0, 0.85);
  color: #fff;
  padding: 8px 16px;
  border-radius: 20px;
  font-size: 14px;
  opacity: 0;
  transition: opacity 0.3s ease;
  pointer-events: none;
}

.map-container a:hover::after {
  opacity: 1;
}

/* Optional entrance animation */
@keyframes fadeIn {
  from { opacity: 0; transform: translateY(20px); }
  to { opacity: 1; transform: translateY(0); }
}



/*Menu Style */
body {
  margin: 0;
  font-family: 'Inter', sans-serif;
  background-color: #fff;
  color: #1f2937;
}

header {
  background-color: #ffffff;
  padding: 20px 40px;
  display: flex;
  justify-content: space-between;
  align-items: center;
  border-bottom: 3px solid #f59e0b;
}

header h1 {
  font-size: 24px;
  color: #000;
}

nav a {
  margin: 0 15px;
  text-decoration: none;
  color: #000;
  font-weight: 600;
}

.nav-highlight {
  color: #fff;
  background-color: #f59e0b;
  padding: 5px 12px;
  border-radius: 6px;
}

.category-tabs {
  display: flex;
  justify-content: center;
  background-color: #f59e0b;
  padding: 10px;
  gap: 20px;
}

.category-tabs button {
  background: none;
  border: none;
  font-weight: bold;
  color: white;
  font-size: 16px;
  cursor: pointer;
}

.menu-section {
  padding: 40px 20px;
  max-width: 1200px;
  margin: auto;
}

.section-title {
  font-size: 28px;
  margin: 20px 0;
  font-weight: bold;
  color: #1f2937;
}

.menu-grid {
  display: grid;
  grid-template-columns: repeat(auto-fill, minmax(220px, 1fr));
  gap: 20px;
  margin-top: 20px;
}

.menu-card {
  background-color: #fff;
  border-radius: 12px;
  overflow: hidden;
  box-shadow: 0 2px 8px rgba(0,0,0,0.1);
  transition: transform 0.2s;
}



.menu-card img {
  width: 100%;
  height: 150px;
  object-fit: cover;
}

.menu-card-body {
  padding: 15px;
}

.menu-card-body h4 {
  margin: 0;
  font-size: 16px;
  color: #f59e0b;
}

.menu-card-body p {
  font-size: 14px;
  margin: 8px 0 0;
}

.menu-price {
  font-size: 14px;
  font-weight: bold;
  margin-top: 6px;
  color: #374151;
}.menu-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
  gap: 20px;
  padding: 20px 0;
}

.menu-card {
  display: flex;
  flex-direction: column;
  background-color: white;
  border-radius: 16px;
  overflow: hidden;
  box-shadow: 0 6px 12px rgba(0, 0, 0, 0.08);
  position: relative;
  transition: transform 0.2s ease;
}


.menu-card img {
  width: 100%;
  height: 160px;
  object-fit: cover;
  border-top-left-radius: 16px;
  border-top-right-radius: 16px;
}

.menu-card-body {
  padding: 16px;
}

.menu-card-body h4 {
  font-size: 18px;
  margin: 0 0 8px;
  font-weight: 700;
}

.menu-card-body p {
  font-size: 14px;
  margin: 0 0 12px;
  color: #555;
}

.menu-price {
  font-size: 16px;
  font-weight: bold;
  margin-bottom: 10px;
}

.add-to-cart-form select,
.add-to-cart-form input[type="number"] {
  margin-top: 6px;
  padding: 4px;
  border: 1px solid #ddd;
  border-radius: 4px;
  font-size: 14px;
}

.circle-btn {
  position: absolute;
  bottom: 12px;
  right: 12px;
  width: 42px;
  height: 42px;
  border-radius: 50%;
  background-color: #1f2937;
  color: white;
  font-size: 28px;
  font-weight: bold;
  border: none;
  display: flex;
  align-items: center;
  justify-content: center;
  box-shadow: 0 4px 10px rgba(0,0,0,0.2);
  cursor: pointer;
  transition: background-color 0.3s ease;
}

.circle-btn:hover {
  background-color: #374151;
}


/* CART ITEMS SECTION */
.cart-items {
  flex: 1 1 60%;
  background-color: #ffffff;
  border-radius: 10px;
  padding: 1.5rem;
  box-shadow: 0 2px 10px rgba(0, 0, 0, 0.05);
}

.cart-items h2 {
  margin-bottom: 1rem;
}

.cart-items table {
  width: 100%;
  border-collapse: collapse;
}

.cart-items th, .cart-items td {
  padding: 0.75rem;
  text-align: center;
  border-bottom: 1px solid #e5e7eb;
}

.cart-items th {
  background-color: #f3f4f6;
  font-weight: bold;
}

.cart-items tr:hover {
  background-color: #f9fafb;
}

.cart-items .total-amount {
  margin-top: 1rem;
  font-size: 1.2rem;
  font-weight: bold;
  text-align: right;
}

/* REMOVE BUTTON */
button[type="submit"] {
  background-color: #000000;
  color: white;
  padding: 0.4rem 0.8rem;
  border: none;
  border-radius: 5px;
  cursor: pointer;
  font-size: 0.9rem;
}

button[type="submit"]:hover {
  background-color: #000000;
}

/* ORDER FORM SECTION */
.order-form-section {
  flex: 1 1 35%;
  background-color: #ffffff;
  border-radius: 10px;
  padding: 1.5rem;
  box-shadow: 0 2px 10px rgba(0, 0, 0, 0.05);
}

.order-form-section h2 {
  margin-bottom: 1rem;
}

.order-form label {
  display: block;
  margin-top: 1rem;
  font-weight: 500;
}


.plus-btn {
  background-color: #1f2937;
  color: #fff;
  border: none;
  border-radius: 50%;
  width: 40px;
  height: 40px;
  font-size: 24px;
  cursor: pointer;
  display: flex;
  align-items: center;
  justify-content: center;
  transition: background-color 0.3s ease;
  margin-top: 10px;
  position: relative;
  float: right;
}

.plus-btn:hover {
  background-color: #e68e2e;
}

/* GCASH SECTION */
.gcash-payment {
  margin-top: 1rem;
  padding: 1rem;
  background-color: #fef3c7;
  border-radius: 8px;
  text-align: center;
}

.gcash-qr {
  margin-top: 0.5rem;
  width: 150px;
}



/* Footer */
footer {
    background-color: #000;
    color: #fff;
    text-align: center;
    padding: 15px;
    font-size: 0.9em;
    margin-top: 40px;
}
/* Order Card */
/* styles.css */
main {
    max-width: 480px;
    margin: 40px auto;
    background: white;
    padding: 30px 40px;
    border-radius: 15px;
    box-shadow: 0 8px 25px rgba(230,126,34,0.3);
}


h2 {
    color: #e67e22;
    font-weight: 700;
    margin-bottom: 25px;
    text-align: center;
    font-size: 28px;
}

.order-form label {
    display: block;
    margin-bottom: 8px;
    color: #555;
    font-weight: 600;
    font-size: 14px;
}

.order-form input[type="text"],
.order-form select,
.order-form input[type="number"] {
    width: 100%;
    padding: 12px 15px;
    margin-bottom: 20px;
    border: 2px solid #ddd;
    border-radius: 8px;
    font-size: 16px;
    transition: border-color 0.3s ease;
}

.order-form input[type="text"]:focus,
.order-form select:focus,
.order-form input[type="number"]:focus {
    border-color: #e67e22;
    outline: none;
}

.order-form button {
    background-color: #e67e22;
    color: white;
    font-weight: 700;
    padding: 12px 30px;
    border: none;
    border-radius: 12px;
    cursor: pointer;
    font-size: 18px;
    transition: background-color 0.3s ease;
    box-shadow: 0 4px 10px rgba(230,126,34,0.4);
    margin-right: 10px;
}

.order-form button:hover {
    background-color: #d96d16;
    box-shadow: 0 6px 14px rgba(217,109,22,0.6);
}

 /* Basic layout for two columns */
    main.order-container {
      display: flex;
      flex-wrap: wrap;
      gap: 2rem;
      max-width: 1200px;
      margin: 2rem auto;
      padding: 0 1rem;
    }

    body.cart-body {
  font-family: 'Inter', sans-serif;
  margin: 0;
  padding: 0;
  background-color: #fdfcfb;
  color: #1f2937;
}



main.order-page-combined {
  max-width: 1000px;
  margin: 2rem auto;
  padding: 1rem;
}

.order-hero-header h2 {
  text-align: center;
  font-size: 2rem;
  margin-bottom: 1rem;
}

.cart-items table {
  width: 100%;
  border-collapse: collapse;
  margin-bottom: 2rem;
}

.cart-items th, .cart-items td {
  border: 1px solid #ddd;
  padding: 0.75rem;
  text-align: center;
}

.cart-items th {
  background-color: #f59e0b;
  color: white;
}

.cart-items td button {
  background-color: #ef4444;
  color: white;
  border: none;
  padding: 0.5rem 0.75rem;
  cursor: pointer;
  border-radius: 5px;
  transition: background-color 0.3s ease;
}

.cart-items td button:hover {
  background-color: #dc2626;
}

.total-amount {
  text-align: right;
  font-size: 1.5rem;
  font-weight: bold;
  margin-top: 1rem;
}

.order-form-section {
  background-color: #f9fafb;
  padding: 2rem;
  border-radius: 8px;
  box-shadow: 0 0 10px rgba(0, 0, 0, 0.1);
}

.order-form label {
  display: block;
  margin-top: 1rem;
  font-weight: 600;
}

.order-form input,
.order-form textarea {
  width: 100%;
  padding: 0.75rem;
  margin-top: 0.5rem;
  border: 1px solid #ccc;
  border-radius: 5px;
}

.order-form button {
  margin-top: 1.5rem;
  background-color: #10b981;
  color: white;
  padding: 0.75rem 1.5rem;
  border: none;
  border-radius: 8px;
  font-weight: bold;
  cursor: pointer;
  transition: background-color 0.3s ease;
}

.order-form button:hover {
  background-color: #059669;
}

.gcash-payment {
  margin-top: 2rem;
  padding: 1rem;
  background-color: #fff7ed;
  border-left: 6px solid #f59e0b;
  border-radius: 6px;
}

.gcash-qr {
  width: 150px;
  display: block;
  margin: 1rem 0;
}
.empty-cart-message {
  background-color: #fff7ed;
  border: 2px dashed #f59e0b;
  padding: 2rem;
  text-align: center;
  border-radius: 12px;
  margin-bottom: 2rem;
  box-shadow: 0 8px 16px rgba(245, 158, 11, 0.1);
  font-family: 'Inter', sans-serif;
  color: #78350f;
}

.empty-cart-message h3 {
  font-size: 1.5rem;
  margin-bottom: 0.5rem;
  color: #b45309;
}

.empty-cart-message p {
  font-size: 1rem;
  margin-bottom: 1rem;
}

.empty-cart-message a {
  background-color: #f59e0b;
  color: white;
  padding: 0.6rem 1.2rem;
  border-radius: 8px;
  text-decoration: none;
  font-weight: 600;
  transition: background-color 0.3s ease;
}

.empty-cart-message a:hover {
  background-color: #d97706;
}
.customer-info-container {
    background-color: #f8f8f8;
    padding: 30px;
    border-radius: 12px;
    max-width: 800px;
    margin: 30px auto;
    box-shadow: 0 4px 12px rgba(0,0,0,0.1);
  }

  .customer-info-container h3 {
    font-size: 24px;
    margin-bottom: 20px;
    text-align: center;
    color: #333;
    font-weight: bold;
  }

  .form-row {
    display: flex;
    flex-wrap: wrap;
    gap: 20px;
    margin-bottom: 15px;
  }

  .form-group {
    flex: 1;
    min-width: 200px;
  }

  .form-group label {
    display: block;
    margin-bottom: 6px;
    font-weight: 600;
    color: #444;
  }

  .form-group input,
  .form-group textarea {
    width: 100%;
    padding: 10px 12px;
    border: 1px solid #ccc;
    border-radius: 6px;
    font-size: 16px;
    transition: border 0.3s;
  }

  .form-group input:focus,
  .form-group textarea:focus {
    border-color: #6a994e;
    outline: none;
  }

  textarea {
    resize: vertical;
    min-height: 80px;
  }

  .submit-row {
    text-align: center;
    margin-top: 20px;
  }

  .submit-row button {
    padding: 12px 30px;
    background-color: #28a745;
    color: #fff;
    font-size: 16px;
    font-weight: 600;
    border: none;
    border-radius: 6px;
    cursor: pointer;
    transition: background-color 0.3s;
  }

  .submit-row button:hover {
    background-color: #218838;
  }

  @media (max-width: 600px) {
    .form-row {
      flex-direction: column;
    }
  }
/* GCash Section */
.gcash-payment {
  background-color: #fef3c7;
  border: 1px solid #fcd34d;
  padding: 1rem;
  border-radius: 12px;
  margin-top: 1rem;
}

.gcash-payment h3 {
  margin-top: 0;
  color: #92400e;
}

.gcash-qr {
  max-width: 180px;
  margin: 0.75rem 0;
  border-radius: 8px;
}

    /* Responsive for smaller screens */
    @media (max-width: 768px) {
      main.order-container {
        flex-direction: column;
      }
      .cart-summary, .order-form-container {
        max-height: none;
      }
    }

.order-process {
  padding: 4rem 1rem;
  background-color: #fff;
  display: flex;
  justify-content: center;
}

.order-wrapper {
  display: flex;
  max-width: 1200px;
  width: 100%;
  position: relative;
  gap: 2rem;
  flex-wrap: wrap;
}

.barista-img {
  width: 300px;
  z-index: 2;
}

.right-layer {
  position: relative;
  flex: 1;
  min-width: 300px;
}

.orange-bg {
  background-color: #d97706;
  position: absolute;
  top: 0;
  right: 0;
  width: 60%;
  height: 100%;
  border-top-left-radius: 80px;
  z-index: 0;
}

.tray-img {
  width: 100%;
  max-width: 500px;
  position: relative;
  z-index: 1;
  border-radius: 20px;
}

.order-card {
  position: absolute;
  background: #fff;
  padding: 1rem;
  border-radius: 12px;
  box-shadow: 0 4px 10px rgba(0,0,0,0.1);
  width: 300px;
  z-index: 3;
}

.order-card h4 {
  margin: 0;
  font-size: 14px;
  color: #1f2937;
}

.order-card span {
  color: #f59e0b;
}

.order-card strong {
  display: block;
  margin-top: 0.25rem;
  font-size: 16px;
  color: #111827;
}

.order-card p {
  margin: 0;
  font-size: 13px;
  color: #6b7280;
}

.card1 {
  top: 30px;
  right: 30px;
}

.card2 {
  top: 150px;
  right: 50px;
}

.card3 {
  top: 270px;
  right: 70px;
}

.order-numbers {
  position: absolute;
  top: 20px;
  right: 10px;
  z-index: 2;
  font-size: 60px;
  font-weight: 600;
  color: rgba(255, 255, 255, 0.15);
  display: flex;
  flex-direction: column;
  gap: 90px;
}


.brew-footer {
  background: linear-gradient(135deg, #111827, #1f2937);
  color: #f3f4f6;
  font-family: 'Inter', sans-serif;
  margin-top: 80px;
  position: relative;
  overflow: hidden;
}

.footer-wave svg {
  display: block;
  width: 100%;
  margin-top: -1px;
}

.brew-footer-container {
  max-width: 1100px;
  margin: 0 auto;
  padding: 60px 20px 40px;
  display: flex;
  flex-wrap: wrap;
  justify-content: space-between;
  gap: 40px;
}

.footer-logo h2 {
  font-size: 32px;
  color: white;
  margin-bottom: 10px;
}

.footer-logo span {
  color: #f59e0b;
}

.footer-logo p {
  font-size: 14px;
  color: #d1d5db;
  max-width: 300px;
}

.footer-grid {
  display: flex;
  flex-wrap: wrap;
  gap: 40px;
}

.footer-grid h4 {
  color: #fbbf24;
  font-size: 16px;
  margin-bottom: 12px;
}

.footer-grid ul {
  list-style: none;
  padding: 0;
}

.footer-grid li {
  margin-bottom: 8px;
}

.footer-grid a {
  text-decoration: none;
  color: #e5e7eb;
  transition: color 0.2s ease;
}

.footer-grid a:hover {
  color: #fbbf24;
}

.footer-grid p {
  margin: 4px 0;
  font-size: 14px;
  color: #d1d5db;
}

.brew-footer-bottom {
  text-align: center;
  padding: 20px;
  background-color: #111827;
  color: #9ca3af;
  font-size: 13px;
  border-top: 1px solid #374151;
}

/* Add to Cart Button */
.add-to-cart-btn {
  display: inline-block;
  background-color: #f59e0b;
  color: white;
  font-weight: 700;
  padding: 10px 18px;
  border: none;
  border-radius: 8px;
  cursor: pointer;
  font-size: 14px;
  margin-top: 10px;
  transition: background-color 0.3s ease;
  box-shadow: 0 4px 10px rgba(245, 158, 11, 0.4);
  text-align: center;
  width: 100%;
}

.add-to-cart-btn:hover {
  background-color: #d97706;
  box-shadow: 0 6px 14px rgba(217, 109, 22, 0.6);
}

/* Image Section for Menu Preview */
.menu-preview {
    display: flex;
    justify-content: center;
    gap: 20px;
    margin-top: 30px;
}

.menu-preview img {
    width: 30%;
    border-radius: 10px;
    box-shadow: 0px 4px 10px rgba(0, 0, 0, 0.1);
    transition: transform 0.3s ease;
}

.menu-preview img:hover {
    transform: scale(1.05); /* Image scale on hover */
}
/* Animations */
/* Smooth hover transition effects */

}

/* Cursor effects */
a:hover, button:hover, .menu-card:hover, .feature-box:hover, .menu-preview img:hover {
  cursor: pointer;
  transform: translateY(-3px);
  box-shadow: 0 6px 12px rgba(0,0,0,0.15);
}

/* Add slight zoom to feature boxes on hover */
.feature-box:hover {
  transform: scale(1.03);
}

/* Add hover animation to nav links */
nav a:hover {
  color: #f59e0b;
  transform: scale(1.05);
}
/* Smooth element transitions */
*, *::before, *::after {
  transition: all 0.3s ease-in-out;
}

/* Interactive hover effect for menu cards */
.menu-card:hover {
  transform: translateY(-8px) scale(1.02);
  box-shadow: 0 10px 20px rgba(0,0,0,0.15);
}

/* Animate feature boxes on hover */
.feature-box:hover {
  background-color: #fff7ed;
  transform: scale(1.05);
  box-shadow: 0 8px 18px rgba(0,0,0,0.1);
}

/* Glow effect on nav links */
nav a:hover {
  color: #f59e0b;
  text-shadow: 0 0 5px rgba(245, 158, 11, 0.6);
  transform: scale(1.1);
}

/* Button ripple effect imitation */
button:active {
  transform: scale(0.96);
  box-shadow: 0 2px 6px rgba(0,0,0,0.2);
}

/* Cursor change for all interactive elements */
a, button, .menu-card, .feature-box, .menu-preview img {
  cursor: pointer;
}

/* Zoom effect for preview images */
.menu-preview img:hover {
  transform: scale(1.1) rotate(1deg);
}

/* Staff image hover bounce */
.staff-img img:hover {
  transform: scale(1.05) rotate(-1deg);
  box-shadow: 0 8px 16px rgba(0,0,0,0.15);
}

/* Fade-in effect when scrolling */
@keyframes fadeInUp {
  from {
    opacity: 0;
    transform: translateY(30px);
  }
  to {
    opacity: 1;
    transform: translateY(0);
  }
}

.about-section,
.feature-box,
.menu-card,
.footer-img img,
.staff-img {
  opacity: 0;
  animation: fadeInUp 0.6s forwards;
}



/* Responsive tweaks for images on very small screens */
@media (max-width: 480px) {
  .menu-preview img {
    width: 80%;
  }

  .staff-img img {
    width: 100%;
    max-width: 250px;
    margin: auto;
  }

/* Add this inside your <style> tag or CSS file */

.store-hours-section {
  padding: 40px 20px;
  background-color: #fff;
  font-family: 'Poppins', sans-serif;
}

.store-hours-container {
  display: flex;
  align-items: center;
  justify-content: center;
  flex-wrap: wrap;
  max-width: 1100px;
  margin: 0 auto;
  background-color: #fff;
  border-radius: 20px;
  box-shadow: 0 4px 20px rgba(0, 0, 0, 0.1);
  overflow: hidden;
}

.store-hours-img img {
  width: 100%;
  max-width: 350px;
  height: 350px;
  object-fit: cover;
  border-radius: 40px;
  box-shadow: 0 8px 20px rgba(0, 0, 0, 0.1);
}


.store-hours-text {
  flex: 1 1 300px;
  padding: 30px 40px;
  text-align: left;
}

.store-hours-text h2 {
  font-size: 2rem;
  letter-spacing: 4px;
  color: #000;
  font-weight: 700;
  margin-bottom: 15px;
}

.store-hours-text p {
  font-size: 1.1rem;
  color: #333;
  line-height: 1.6;
}

@media (max-width: 768px) {
  .store-hours-container {
    flex-direction: column;
  }

  .store-hours-text {
    padding: 20px;
    text-align: center;
  }

  .store-hours-text h2 {
    font-size: 1.8rem;
  }

  .store-hours-text p {
    font-size: 1rem;
  }
}
}
/* Responsive adjustments */
@media (max-width: 768px) {
  header {
    flex-direction: column;
    align-items: flex-start;
    padding: 20px;
  }

  nav {
    width: 100%;
    display: flex;
    flex-wrap: wrap;
    justify-content: center;
    margin-top: 10px;
  }

  nav a {
    margin: 5px 10px;
  }

  .category-tabs {
    flex-direction: column;
    align-items: center;
    gap: 10px;
  }

  .menu-section {
    padding: 20px 10px;
  }

  .section-title {
    font-size: 22px;
    text-align: center;
  }

  .menu-grid {
    grid-template-columns: repeat(auto-fill, minmax(160px, 1fr));
  }

  .menu-card img {
    height: 120px;
  }

  .menu-card-body {
    padding: 10px;
  }
}

@media (max-width: 480px) {
  header h1 {
    font-size: 20px;
  }

  .category-tabs button {
    font-size: 14px;
  }

  .menu-card-body h4 {
    font-size: 14px;
  }

  .menu-card-body p {
    font-size: 12px;
  }

  .menu-price {
    font-size: 13px;
  }
}
/* Make body and html take full width and height */
html, body {
  width: 100%;
  height: 100%;
  overflow-x: hidden; /* prevent horizontal scroll */
}

/* Use relative units for main containers */
body, main, header, footer, section {
  max-width: 100%;
  box-sizing: border-box;
}

/* Ensure images scale properly */
img {
  max-width: 100%;
  height: auto;
  display: block;
}


/* Flex and grid containers to wrap nicely */
.flex-wrap, .menu-grid, .feature-boxes, .images-row, .store-features {
  flex-wrap: wrap;
  max-width: 100%;
}

/* Add smooth scrolling for all devices */
html {
  scroll-behavior: smooth;
}

/* Accessibility improvements */
a, button {
  -webkit-tap-highlight-color: rgba(0,0,0,0.1);
  outline-offset: 2px;
}

/* Optional: prevent fixed width for better accessibility */
.menu-card, .feature-box, .order-form-container, .cart-summary {
  min-width: 0; /* fix flexbox overflow issues */
}


.footer-gallery {
  width: 100vw;
  position: relative;
  left: 50%;
  right: 50%;
  margin-left: -50vw;
  margin-right: -50vw;
  overflow: hidden;
  background-color: #232426; /* matches your footer */
}

.footer-gallery img {
  width: 100%;
  height: auto;
  display: block;
  transition: transform 0.6s ease, filter 0.4s ease;
  object-fit: cover;
}

/* Zoom + Darken on hover */
.footer-gallery:hover img {
  transform: scale(1.05);
  filter: brightness(0.9);
}

/* Optional parallax animation on scroll (for advanced effect) */
@media (hover: none) {
  .footer-gallery img {
    transform: none !important;
    filter: none !important;
  }
}

/* Optional: mobile tweak for height control */
@media (max-width: 768px) {
  .footer-gallery img {
    height: 250px;
    object-fit: cover;
  }
}

/* Responsive layout for navbar */
@media (max-width: 768px) {
  header {
    flex-direction: column;
    align-items: center;
    text-align: center;
  }

  nav {
    flex-direction: column;
    align-items: center;
    gap: 0.5rem;
    margin-top: 0.5rem;
  }

  .cart-summary a {
    display: inline-block;
    margin-top: 0.5rem;
  }
}

/* Responsive menu grid layout */
@media (max-width: 1024px) {
  .menu-grid {
    display: grid;
    grid-template-columns: repeat(auto-fill, minmax(220px, 1fr));
    gap: 1.2rem;
    padding: 0 1rem;
  }
}

@media (max-width: 768px) {
  .menu-grid {
    grid-template-columns: repeat(auto-fill, minmax(180px, 1fr));
  }

  .menu-card img {
    max-width: 100%;
    height: auto;
    object-fit: cover;
    border-radius: 10px;
  }

  .menu-card-body {
    padding: 1rem;
    text-align: center;
  }

  .menu-card h4 {
    font-size: 1rem;
    margin: 0.5rem 0;
  }

  .menu-price select,
  .menu-price input[type="number"] {
    width: 100%;
    margin-bottom: 0.5rem;
  }

  .circle-btn {
    width: 100%;
    padding: 0.5rem;
    font-size: 1.2rem;
  }
}

@media (max-width: 480px) {
.cart-summary a {
  display: inline-block;
  padding: 5px 10px;
}

/* Responsive category buttons */
.category-tabs {
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
  gap: 10px;
  margin: 20px 0;
}

/* Responsive menu grid */
.menu-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
  gap: 20px;
  padding: 0 10px;
}
/* === MOBILE-FIRST BASE STYLES === */
body {
  margin: 0;
  padding: 0;
  font-family: 'Inter', sans-serif;
  background-color: #fff;
  color: #000000;
}

/* Header */
header {
  display: flex;
  flex-direction: column;
  align-items: center;
  padding: 15px;
  text-align: center;
  background-color: #f8f8f8;
}

header h1 {
  font-size: 24px;
  margin: 0 0 10px;
}

header nav {
  display: flex;
  flex-direction: column;
  gap: 10px;
  text-align: center;
}

header nav a {
  text-decoration: none;
  color: #1f2937;
  font-weight: bold;
  text-align: center;
}

/* Category Buttons */
.category-tabs {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 10px;
  margin: 20px 0;
}

.category-tabs button {
  width: 80%;
  padding: 10px;
  font-size: 16px;
}

/* Section Title */
.section-title {
  font-size: 20px;
  margin: 20px 10px 10px;
}

/* Menu Grid */
.menu-grid {
  display: grid;
  grid-template-columns: 1fr;
  gap: 20px;
  padding: 0 10px;
}

@media (min-width: 600px) {
  .menu-grid {
    grid-template-columns: repeat(2, 1fr);
  }
}

@media (min-width: 900px) {
  .menu-grid {
    grid-template-columns: repeat(3, 1fr);
  }
}

/* Menu Cards */
.menu-card {
  border: 1px solid #ddd;
  border-radius: 12px;
  overflow: hidden;
  background-color: #fafafa;
  display: flex;
  flex-direction: column;
}

.menu-card img {
  width: 100%;
  height: auto;
  object-fit: cover;
}

.menu-card-body {
  padding: 10px;
}

.menu-card-body h4 {
  margin: 0;
  font-size: 18px;
}

.menu-category {
  font-size: 14px;
  color: #666;
}

.menu-price {
  margin-top: 10px;
  font-size: 15px;
}

.add-to-cart-form {
  display: flex;
  flex-direction: column;
  gap: 6px;
  margin-top: 10px;
}

.add-to-cart-form select,
.add-to-cart-form input[type="number"],
.add-to-cart-form button {
  padding: 8px;
  font-size: 14px;
  border-radius: 6px;
  border: 1px solid #ccc;
}



/* Footer */
.brew-footer {
  background-color: #1b1b1c;
  color: white;
  margin-top: 40px;
  text-align: center;
}

.footer-wave svg {
  width: 100%;
  height: auto;
  display: block;
}

.brew-footer-container {
  padding: 20px;
}

.footer-logo h2 {
  font-size: 20px;
}

.footer-logo span {
  color: #facc15;
}

.footer-grid {
  display: flex;
  flex-direction: column;
  gap: 20px;
  margin-top: 20px;
}

.footer-grid h4 {
  margin-bottom: 8px;
}

.footer-grid ul {
  list-style: none;
  padding: 0;
}

.footer-grid ul li a {
  color: white;
  text-decoration: none;
}

.brew-footer-bottom {
  font-size: 14px;
  padding: 15px;
  background-color: #37393c;
}

/* Desktop Enhancements */
@media (min-width: 768px) {
  header nav {
    flex-direction: row;
    gap: 20px;
  }

  .category-tabs {
    flex-direction: row;
  }

  .category-tabs button {
    width: auto;
  }

  .footer-grid {
    flex-direction: row;
    justify-content: space-between;
    text-align: left;
  }
}
}.customer-row {
  text-align: center;
  padding: 30px 15px;
  background-color: #2c2d2f;
}

.customer-title {
  color: #fff;
  font-size: 24px;
  margin-bottom: 20px;
}

.customer-images {
  display: flex;
  justify-content: center;
  flex-wrap: wrap;
  gap: 18px;
}

.customer-images img {
  width: 300px;
  height: 300px;
  border-radius: 50%;
  object-fit: cover;
  border: 2px solid #fff;
  transition: transform 0.3s ease;
}

.customer-images img:hover {
  transform: scale(1.1);
}
.testimonials-modern {
  padding: 80px 20px;
  text-align: center;
  position: relative;
  z-index: 2;
  color: #fff;
}

.testimonial-title {
  font-size: 2rem;
  margin-bottom: 50px;
  font-weight: bold;
  letter-spacing: 0.5px;
}

.testimonial-cards {
  display: flex;
  flex-wrap: wrap;
  gap: 30px;
  justify-content: center;
}

.testimonial-card {
  background: rgba(255, 255, 255, 0.08);
  border: 1px solid rgba(255, 255, 255, 0.15);
  backdrop-filter: blur(10px);
  box-shadow: 0 8px 24px rgba(0, 0, 0, 0.3);
  border-radius: 16px;
  max-width: 300px;
  padding: 30px 20px;
  text-align: left;
  transition: transform 0.3s ease;
}

.testimonial-card:hover {
  transform: translateY(-8px);
}

.testimonial-text {
  font-size: 1rem;
  font-style: italic;
  margin-bottom: 20px;
  color: #f1f1f1;
}

.testimonial-meta {
  display: flex;
  align-items: center;
  gap: 15px;
}

.testimonial-img {
  width: 48px;
  height: 48px;
  border-radius: 50%;
  object-fit: cover;
  border: 2px solid #fff;
}

.testimonial-name {
  font-weight: 600;
  font-size: 1rem;
  color: #fff;
}

/* Responsive */
@media (max-width: 768px) {
  .testimonial-cards {
    flex-direction: column;
    align-items: center;
  }
}
.map-container img {
  width: 100%;
  max-width: 800px;
  border-radius: 12px;
  margin-bottom: 40px;
}

/* Tabs */
.category-tabs {
  display: flex;
  justify-content: center;
  gap: 1rem;
  margin: 1rem 0;
  flex-wrap: wrap;
}
.category-tabs button {
  padding: 0.5rem 1rem;
  background-color: #1f2937;
  color: white;
  border: none;
  border-radius: 5px;
  cursor: pointer;
}
.category-tabs button:hover {
  background-color: #4b5563;
}

/* Menu Section */
.menu-section {
  padding: 1rem 2rem;
}
.section-title {
  font-size: 1.5rem;
  margin: 1.5rem 0 1rem;
  font-weight: bold;
  text-align: center;
}
.menu-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
  gap: 1.5rem;
}
.menu-card {
  background: white;
  border-radius: 10px;
  overflow: hidden;
  box-shadow: 0 4px 8px rgba(0,0,0,0.1);
  display: flex;
  flex-direction: column;
  transition: transform 0.2s;
}
.menu-card:hover {
  transform: translateY(-5px);
}
.menu-card img {
  width: 100%;
  height: 180px;
  object-fit: cover;
}
.menu-card-body {
  padding: 1rem;
  display: flex;
  flex-direction: column;
  justify-content: space-between;
}
.menu-card-body h4 {
  margin: 0 0 0.5rem;
  font-size: 1.2rem;
}
.menu-category {
  font-size: 0.9rem;
  color: #6b7280;
}
.menu-price {
  margin-top: 0.5rem;
}
.add-to-cart-form {
  display: flex;
  flex-direction: column;
  gap: 0.4rem;
}
.add-to-cart-form select,
.add-to-cart-form input[type="number"] {
  padding: 0.4rem;
  border: 1px solid #d1d5db;
  border-radius: 4px;
  font-size: 1rem;
}
.circle-btn {
  background-color: #fbbf24;
  border: none;
  border-radius: 50%;
  width: 40px;
  height: 40px;
  font-size: 1.4rem;
  color: #1f2937;
  cursor: pointer;
  align-self: flex-end;
}
.custom-footer {
  background: #1c1c1c;
  color: #e6d1b3;
  font-family: 'Inter', sans-serif;
  padding: 40px 20px 20px;
}

.footer-container {
  display: flex;
  flex-wrap: wrap;
  justify-content: space-between;
  gap: 30px;
  max-width: 1200px;
  margin: auto;
}

.footer-column {
  flex: 1 1 200px;
  min-width: 200px;
}

.footer-logo {
  font-size: 24px;
  font-weight: bold;
  margin-bottom: 10px;
}

.footer-logo span {
  color: #c28e5c;
}

.footer-links {
  list-style: none;
  padding: 0;
}

.footer-links li {
  margin-bottom: 8px;
}

.footer-links a {
  color: #e6d1b3;
  text-decoration: none;
}

.footer-links a:hover {
  text-decoration: underline;
}

.footer-news .news-item {
  display: flex;
  align-items: center;
  margin-bottom: 10px;
}

.footer-news img {
  width: 45px;
  height: 45px;
  border-radius: 6px;
  margin-right: 10px;
  object-fit: cover;
}

.news-item small {
  font-size: 12px;
  color: #ccc;
}

.news-item p {
  margin: 0;
  font-size: 14px;
  color: #fff;
}

.social-column .social-icons {
  margin-top: 10px;
}

.social-icons a {
  margin-right: 10px;
  display: inline-block;
}

.social-icons img {
  width: 24px;
  height: 24px;
  filter: brightness(0) invert(0.9);
  transition: transform 0.3s ease;
}

.social-icons img:hover {
  transform: scale(1.1);
}

.footer-bottom {
  border-top: 1px solid #444;
  margin-top: 30px;
  text-align: center;
  padding-top: 15px;
  color: #888;
  font-size: 14px;
}

/* Responsive Tweaks */
@media (max-width: 768px) {
  header {
    flex-direction: column;
    align-items: flex-start;
  }
  nav {
    flex-direction: column;
    gap: 0.5rem;
    margin-top: 0.5rem;
  }
  .menu-section {
    padding: 1rem;
  }
  .circle-btn {
    width: 35px;
    height: 35px;
    font-size: 1.2rem;
  }
}/* Responsive Cart Layout */
.cart-container {
  display: flex;
  flex-wrap: wrap;
  justify-content: space-between;
  gap: 2rem;
  padding: 1rem;
}

.cart-items, .order-form {
  flex: 1 1 48%;
  box-sizing: border-box;
  min-width: 300px;
}

@media (max-width: 768px) {
  .cart-items, .order-form {
    flex: 1 1 100%;
  }

  .cart-container {
    padding: 0.5rem;
  }

  table {
    width: 100%;
    font-size: 0.9rem;
    overflow-x: auto;
  }

  input[type="text"],
  input[type="number"],
  input[type="file"],
  select,
  textarea,
  button {
    width: 100%;
    font-size: 1rem;
  }

  .order-form button {
    margin-top: 1rem;
    width: 100%;
  }
}
.section-title-container {
  text-align: center;
  margin: 60px auto 20px;
  max-width: 700px;
  padding: 0 20px;
}

.section-title {
  font-size: 2.5rem;
  font-weight: 700;
  color: #1f2937;
  margin-bottom: 10px;
}

.section-description {
  font-size: 1.1rem;
  color: #555;
  font-style: italic;
}
.mobile-header {
  padding: 20px;
  background-color: #fdfdfd;
  text-align: center;
  box-shadow: 0 2px 10px rgba(0,0,0,0.05);
}

.brand {
  font-size: 26px;
  font-weight: 700;
  color: #111;
  margin-bottom: 10px;
}

.menu-panel {
  display: flex;
  flex-direction: column;
  gap: 10px;
  margin-bottom: 20px;
}

.menu-link,
.cart-link {
  font-size: 16px;
  color: #333;
  text-decoration: none;
  padding: 10px 15px;
  border-radius: 8px;
  transition: background 0.3s;
}

.menu-link:hover,
.cart-link:hover {
  background-color: #f1f1f1;
}

.menu-button {
  background-color: #f9a825;
  color: white;
  font-weight: 600;
  padding: 10px 15px;
  border: none;
  border-radius: 20px;
  font-size: 16px;
  cursor: pointer;
  transition: background 0.3s;
}

.menu-button:hover {
  background-color: #f57f17;
}

.toggle-buttons {
  display: flex;
  justify-content: center;
  gap: 10px;
}

.toggle-btn {
  background-color: #1f2937;
  color: white;
  padding: 8px 20px;
  font-size: 14px;
  border-radius: 8px;
  border: none;
  cursor: pointer;
  transition: background 0.3s;
}

.toggle-btn:hover {
  background-color: #374151;
}
