/* Reset defaults */
* {
  margin: 0;
  padding: 0;
  box-sizing: border-box;
  font-family: 'Segoe UI', Tahoma, Geneva, Verdana, sans-serif;
}

body {
  background-color: #fffaf0;
  color: #3b2f2f;
  line-height: 1.6;
}

/* Header */
.header {
  display: flex;
  justify-content: space-between;
  align-items: center;
  padding: 15px 30px;
  background-color: #6f2da8; /* Purple Mardi Gras */
  color: #fffaf0;
  box-shadow: 0 2px 5px rgba(0,0,0,0.1);
  flex-wrap: wrap;
}

/* Header Logo */
.header .logo {
  height: 80px;        /* increase size for visibility */
  width: auto;         /* maintain aspect ratio */
  background: none;    /* remove any background */
  padding: 0;          /* remove padding */
  border: none;        /* remove border */
  box-shadow: none;    /* remove shadow */
  display: block;
}


.header .nav a {
  margin: 5px 15px;
  color: #fffaf0;
  text-decoration: none;
  font-weight: bold;
  transition: 0.3s;
}

.header .nav a:hover {
  color: #f0c419; /* gold hover */
}

/* Hero Section Mardi Gras Professional */
.hero {
  background: linear-gradient(135deg, #6f2da8, #28a745, #f0c419); /* purple, green, gold */
  background-size: 400% 400%;
  animation: gradientMove 15s ease infinite; /* subtle moving effect */
  height: 350px;
  display: flex;
  align-items: center;
  justify-content: center;
  text-align: center;
  color: #fffaf0; /* cream text for readability */
  padding: 0 20px;
}

/* Hero Text */
.hero-text h1 {
  font-family: 'Playfair Display', serif;
  font-size: 3rem;
  font-weight: 700;
  color: #fffaf0; /* cream for readability */
  margin-bottom: 10px;
}

.hero-text p {
  font-family: 'Segoe UI', Tahoma, sans-serif;
  font-size: 1.5rem;
  color: #fffaf0; /* keep subtitle clean */
  margin-top: 0;
}

/* Gradient Animation */
@keyframes gradientMove {
  0% {background-position: 0% 50%;}
  50% {background-position: 100% 50%;}
  100% {background-position: 0% 50%;}
}




/* Menu Section */
.menu-section {
  padding: 50px 20px;
  background: linear-gradient(135deg, #f0c41933, #6f2da833); /* subtle Mardi Gras gradient */
}

.section-title {
  text-align: center;
  font-size: 2.5rem;
  margin-bottom: 40px;
  color: #6f2da8;
  text-shadow: 1px 1px #f0c419;
}

.menu-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
  gap: 20px;
}

.menu-card {
  background-color: #fffaf0;
  border: 2px solid #6f2da8;
  border-radius: 15px;
  overflow: hidden;
  transition: transform 0.3s, box-shadow 0.3s;
}

.menu-card:hover {
  transform: translateY(-5px);
  box-shadow: 0 8px 15px rgba(0,0,0,0.2);
}

.menu-card img {
  width: 100%;
  height: 180px;
  object-fit: cover;
}

.menu-card-body {
  padding: 15px;
  text-align: center;
}

.menu-card-body h3 {
  margin-bottom: 10px;
  color: #6f2da8;
}

.menu-card-body .description {
  font-size: 0.9rem;
  color: #3b2f2f;
  margin-bottom: 10px;
  font-style: italic;
}

.menu-card-body .price {
  font-weight: bold;
  margin-bottom: 15px;
  color: #3b2f2f;
}

.order-btn {
  padding: 10px 20px;
  background-color: #28a745; /* green */
  border: none;
  border-radius: 10px;
  color: #fffaf0;
  font-weight: bold;
  cursor: pointer;
  transition: 0.3s;
}

.order-btn:hover {
  background-color: #f0c419; /* gold */
  color: #3b2f2f;
}

/* DoorDash Section */
.order-section {
  padding: 50px 20px;
  text-align: center;
  background-color: #fff0e1;
}

.order-section h2 {
  font-size: 2rem;
  margin-bottom: 20px;
  color: #6f2da8;
}

.dd-btn {
  padding: 15px 30px;
  background-color: #f0c419; /* gold */
  color: #3b2f2f;
  text-decoration: none;
  border-radius: 10px;
  font-weight: bold;
  transition: 0.3s;
}

.dd-btn:hover {
  background-color: #28a745; /* green hover */
  color: #fffaf0;
}

/* ===== Contact Section ===== */
.contact-section {
  padding: 60px 20px;
  text-align: center;
  background: linear-gradient(135deg, #6f2c91, #009f4d, #ffd700); /* Mardi Gras colors */
  color: #fff;
}

.contact-section h2 {
  font-size: 2.5rem;
  margin-bottom: 40px;
  text-shadow: 1px 1px 2px #000;
}

.contact-card {
  max-width: 500px;
  margin: 0 auto;
  background: rgba(255, 255, 255, 0.1);
  padding: 30px;
  border-radius: 15px;
  box-shadow: 0 8px 20px rgba(0,0,0,0.3);
}

.contact-card label {
  display: block;
  margin: 15px 0 5px;
  font-weight: bold;
  text-align: left;
}

.contact-card input,
.contact-card textarea {
  width: 100%;
  padding: 12px 15px;
  border: none;
  border-radius: 8px;
  margin-bottom: 10px;
  outline: none;
}

.contact-card input:focus,
.contact-card textarea:focus {
  box-shadow: 0 0 5px #ffd700;
}

.contact-card button {
  background: #ffd700; /* Gold */
  color: #6f2c91; /* Purple text */
  border: none;
  padding: 15px 30px;
  border-radius: 10px;
  font-size: 1.1rem;
  cursor: pointer;
  transition: 0.3s ease;
}

.contact-card button:hover {
  background: #009f4d; /* Green hover */
  color: #fff;
  transform: scale(1.05);
}

/* Responsive */
@media (max-width: 600px) {
  .contact-card {
    padding: 20px;
  }

  .contact-section h2 {
    font-size: 2rem;
  }
}



/* Modal */
.modal {
  display: none;
  position: fixed;
  z-index: 999;
  left: 0;
  top: 0;
  width: 100%;
  height: 100%;
  overflow: auto;
  background-color: rgba(0,0,0,0.6);
}

.modal-content {
  background-color: #fffaf0;
  margin: 15% auto;
  padding: 30px;
  border: 2px solid #6f2da8;
  width: 90%;
  max-width: 400px;
  text-align: center;
  border-radius: 15px;
}

.modal-content h3 {
  margin-bottom: 15px;
  color: #6f2da8;
}

.pay-btn, .close-btn {
  padding: 10px 20px;
  margin: 10px 5px 0 5px;
  border: none;
  border-radius: 10px;
  font-weight: bold;
  cursor: pointer;
}

.pay-btn {
  background-color: #28a745;
  color: #fffaf0;
}

.pay-btn:hover {
  background-color: #f0c419;
  color: #3b2f2f;
}

.close-btn {
  background-color: #3b2f2f;
  color: #f0c419;
}

.close-btn:hover {
  background-color: #6f2da8;
  color: #fffaf0;
}

/* Responsive Styles */
@media(max-width: 1024px) {
  .hero-text h1 { font-size: 2.5rem; }
  .hero-text p { font-size: 1.3rem; }
}

@media(max-width: 768px) {
  .header {
    flex-direction: column;
    align-items: flex-start;
    padding: 15px 20px;
  }

  .menu-grid {
    grid-template-columns: 1fr;
  }

  .hero-text h1 { font-size: 2rem; }
  .hero-text p { font-size: 1.2rem; }
}

@media(max-width: 480px) {
  .hero {
    height: 250px;
  }

  .menu-card img {
    height: 150px;
  }

  .order-btn, .dd-btn, .contact-form button {
    padding: 8px 15px;
    font-size: 0.9rem;
  }
}.dd-disclaimer {
  font-size: 0.9rem;
  color: #6f2c91; /* Purple from Mardi Gras */
  margin-top: 8px;
}.grand-opening-banner {
  background: linear-gradient(90deg, #6f2c91, #009f4d, #ffd700); /* Mardi Gras gradient */
  color: #ffffff; /* White text */
  text-align: center;
  font-weight: bold;
  padding: 12px 0;
  font-size: 1.2rem;
  text-transform: uppercase;
  letter-spacing: 1px;
}/* HEADER MAIN */
.site-header {
  width: 100%;
  background: linear-gradient(90deg, #6f2c91, #009f4d, #ffd700);
  padding: 10px 0;
  position: sticky;
  top: 0;
  z-index: 999;
  box-shadow: 0 2px 8px rgba(0,0,0,0.25);
}

.header-inner {
  width: 90%;
  max-width: 1200px;
  margin: auto;
  display: flex;
  align-items: center;
  justify-content: space-between;
}

/* Header logo */
.header .logo {
  width: 180px;   /* Adjust as needed */
  height: auto;
  display: block; /* Ensure it’s visible */
  margin: 0 auto; /* Center it in header if desired */
}


@keyframes floatLogo {
  0%, 100% {
    transform: translateY(0px);
  }
  50% {
    transform: translateY(-5px);
  }
}

/* NAVIGATION */
.nav-menu ul {
  display: flex;
  gap: 25px;
  list-style: none;
  margin: 0;
  padding: 0;
}

.nav-menu a {
  text-decoration: none;
  color: white;
  font-weight: 600;
  font-size: 1rem;
  transition: 0.2s ease-in-out;
}

.nav-menu a:hover {
  color: #ffd700;
}

/* HAMBURGER MENU */
.hamburger {
  display: none;
  flex-direction: column;
  gap: 4px;
  cursor: pointer;
}

.hamburger span {
  width: 28px;
  height: 3px;
  background: white;
  border-radius: 2px;
}

/* MOBILE STYLING */
@media only screen and (max-width: 768px) {
  .nav-menu {
    position: absolute;
    top: 80px;
    right: 0;
    background: #6f2c91;
    width: 60%;
    padding: 20px;
    display: none;
    flex-direction: column;
    border-bottom-left-radius: 12px;
    box-shadow: 0 4px 10px rgba(0,0,0,0.4);
  }

  .nav-menu ul {
    flex-direction: column;
    gap: 15px;
  }

  .hamburger {
    display: flex;
  }

  .nav-menu.active {
    display: flex;
  }
}
/* MODAL */
.modal {
  display: none;
  position: fixed;
  z-index: 9999;
  left: 0;
  top: 0;
  width: 100%;
  height: 100%;
  background: rgba(0, 0, 0, 0.7);
}

.modal-content {
  background: #fff;
  margin: 8% auto;
  padding: 20px;
  width: 90%;
  max-width: 500px;
  border-radius: 12px;
  position: relative;
}

.close {
  position: absolute;
  right: 15px;
  top: 10px;
  font-size: 26px;
  cursor: pointer;
}

.pay-btn {
  width: 100%;
  padding: 12px;
  background: purple;
  color: white;
  border: none;
  border-radius: 10px;
  font-size: 18px;
  cursor: pointer;
}
.condiment-options {
  margin-top: 10px;
  padding: 10px;
  background: #fefefe;
  border-radius: 8px;
  border: 1px solid #ddd;
}

.condiment-options label {
  display: block;
  margin-bottom: 6px;
  font-size: 0.95rem;
}

.option-title {
  font-weight: bold;
  margin-bottom: 8px;
  color: #333;
}
.quantity-selection {
  margin: 10px 0;
  display: flex;
  align-items: center;
  gap: 10px;
}

.quantity-selection label {
  font-weight: bold;
}

.quantity-selection input[type="number"] {
  width: 60px;
  padding: 4px;
  border-radius: 6px;
  border: 1px solid #ccc;
}
.plate-options {
  margin: 10px 0;
  display: flex;
  flex-direction: column;
  gap: 10px;
}

.plate-options label {
  font-weight: bold;
}

.plate-options select {
  padding: 6px;
  border-radius: 6px;
  border: 1px solid #ccc;
}/* Header */
.header {
  background-color: #3f0; /* Mardi Gras green for visibility */
  display: flex;
  justify-content: space-between;
  align-items: center;
  padding: 10px 20px;
  flex-wrap: wrap;
}

/* Logo */
.logo-container {
  flex: 0 0 auto;
  display: flex;
  justify-content: center;
  align-items: center;
}

.header .logo {
  width: 180px;
  height: auto;
  display: block;
}

/* Navigation */
.nav {
  display: flex;
  gap: 20px;
}

.nav a {
  text-decoration: none;
  color: #fff; /* White tabs */
  font-weight: bold;
  padding: 8px 15px;
  border-radius: 5px;
  transition: background 0.3s, color 0.3s;
}

.nav a:hover {
  background-color: #900; /* Mardi Gras purple hover */
  color: #ff0; /* Yellow text on hover */
}

/* Responsive: stack on small screens */
@media (max-width: 768px) {
  .header {
    flex-direction: column;
    align-items: center;
  }

  .nav {
    margin: 5px 0;
  }
}
/* Header */
.header {
  background: linear-gradient(90deg, #6f2da8, #008000, #ffcc00); /* purple, green, gold gradient */
  display: flex;
  justify-content: space-between;
  align-items: center;
  padding: 10px 20px;
  flex-wrap: wrap;
  box-shadow: 0 4px 6px rgba(0,0,0,0.2);
}

/* Logo */
.logo-container {
  flex: 0 0 auto;
  display: flex;
  justify-content: center;
  align-items: center;
}

.header .logo {
  width: 180px;
  height: auto;
  display: block;
}

/* Navigation */
.nav {
  display: flex;
  gap: 20px;
}

.nav a {
  text-decoration: none;
  color: #fff; /* white text */
  font-weight: bold;
  padding: 8px 15px;
  border-radius: 5px;
  transition: background 0.3s, color 0.3s;
}

.nav a:hover {
  background-color: rgba(255, 255, 255, 0.2); /* subtle white overlay on hover */
  color: #000; /* black text on hover */
}

/* Responsive: stack on small screens */
@media (max-width: 768px) {
  .header {
    flex-direction: column;
    align-items: center;
  }

  .nav {
    margin: 5px 0;
  }
}
/* Footer */
.footer {
  background: linear-gradient(90deg, #6f2da8, #008000, #ffcc00); /* Mardi Gras gradient */
  color: #fff;
  text-align: center;
  padding: 30px 20px;
  display: flex;
  flex-direction: column;
  gap: 15px;
}

.footer-logo-img {
  width: 120px;
  height: auto;
  margin: 0 auto;
}

.footer-info p,
.footer-copy p {
  margin: 5px 0;
  font-size: 14px;
}

.footer-social {
  display: flex;
  justify-content: center;
  gap: 15px;
}

.footer-social a {
  color: #fff;
  text-decoration: none;
  font-weight: bold;
  padding: 5px 10px;
  border-radius: 5px;
  transition: background 0.3s, color 0.3s;
}

.footer-social a:hover {
  background-color: rgba(255, 255, 255, 0.2);
  color: #000;
}

/* Responsive: stack items nicely */
@media (max-width: 768px) {
  .footer {
    padding: 20px 10px;
  }

  .footer-social {
    flex-direction: column;
    gap: 10px;
  }
}
/* Back to Top Button */
.back-to-top {
  margin-top: 10px;
  font-weight: bold;
  cursor: pointer;
  background-color: rgba(0,0,0,0.25);
  padding: 8px 15px;
  border-radius: 8px;
  display: inline-block;
  transition: 0.3s;
}

.back-to-top:hover {
  background-color: rgba(255, 255, 255, 0.3);
  color: #000;
}
.order-summary {
    background: #ffffffcc;
    padding: 20px;
    border-radius: 12px;
    width: 90%;
    max-width: 500px;
    margin: 40px auto;
    box-shadow: 0 4px 12px rgba(0,0,0,0.15);
}

.order-summary h2 {
    text-align: center;
    margin-bottom: 15px;
}

.order-items {
    margin-bottom: 10px;
}

.order-total {
    font-size: 1.2em;
    text-align: right;
    margin-top: 10px;
}

.checkout-btn {
    width: 100%;
    margin-top: 15px;
    padding: 12px;
    font-size: 1.1em;
    background-color: #6a0dad; /* Mardi Gras purple */
    color: white;
    border: none;
    border-radius: 8px;
    cursor: pointer;
}

.checkout-btn:hover {
    opacity: 0.9;
}
.menu-card-body {
  display: flex;
  flex-direction: column;
  gap: 10px; /* space between elements */
}

.order-btn {
  display: inline-block;
  text-align: center;
  padding: 10px 20px;
  background-color: #d32f2f; /* match your site theme */
  color: white;
  font-weight: bold;
  text-decoration: none;
  border-radius: 5px;
  transition: background 0.3s ease;
}

.order-btn:hover {
  background-color: #b71c1c;
}
.order-btn {
  display: inline-block;
  text-align: center;
  padding: 10px 20px;
  background-color: #d32f2f; /* match your site theme */
  color: white;
  font-weight: bold;
  text-decoration: none; /* removes underline */
  border-radius: 5px;
  transition: background 0.3s ease;
}

.order-btn:hover {
  background-color: #b71c1c;
}
/* Style for all menu order buttons */
.menu-btn {
  display: inline-block;
  text-decoration: none;      /* Remove underline */
  background: #e63946;        /* Vibrant red background */
  color: #fff;                /* White text */
  font-weight: bold;
  font-size: 1rem;
  padding: 12px 20px;
  border-radius: 8px;
  border: none;
  text-align: center;
  cursor: pointer;
  transition: all 0.3s ease;
  box-shadow: 0 4px 8px rgba(0,0,0,0.2);
}

.menu-btn:hover {
  background: #d62828;        /* Darker red on hover */
  transform: translateY(-2px);
  box-shadow: 0 6px 12px rgba(0,0,0,0.3);
}

.menu-btn:active {
  background: #b71c1c;       /* Even darker red on click */
  transform: translateY(0);
  box-shadow: 0 4px 8px rgba(0,0,0,0.2);
}

/* Ensure buttons are full width on smaller screens */
@media (max-width: 768px) {
  .menu-btn {
    width: 100%;
  }
}
/* Style for all menu order buttons */
.menu-btn {
  display: inline-block;
  text-decoration: none;      /* Remove underline */
  background: linear-gradient(45deg, #ff7f50, #e63946); /* Orange to red gradient */
  color: #fff;                /* White text */
  font-weight: bold;
  font-size: 1rem;
  padding: 12px 20px;
  border-radius: 8px;
  border: none;
  text-align: center;
  cursor: pointer;
  transition: all 0.3s ease;
  box-shadow: 0 4px 8px rgba(0,0,0,0.2);
}

.menu-btn:hover {
  background: linear-gradient(45deg, #ffa07a, #d62828); /* Lighter orange to darker red on hover */
  transform: translateY(-2px);
  box-shadow: 0 6px 12px rgba(0,0,0,0.3);
}

.menu-btn:active {
  background: linear-gradient(45deg, #ff4500, #b71c1c); /* Stronger orange-red on click */
  transform: translateY(0);
  box-shadow: 0 4px 8px rgba(0,0,0,0.2);
}

/* Ensure buttons are full width on smaller screens */
@media (max-width: 768px) {
  .menu-btn {
    width: 100%;
  }
}





