/*================================================================================
  Hindustan Hotel – Complete CSS with South Indian–Inspired Color Theme
================================================================================*/

/*--------------------------------------------------------------------------------
  1. COLOR PALETTE (South Indian–Inspired)
--------------------------------------------------------------------------------*/
:root {
  /* Core Colors */
  --color-saffron       : #FF9933;  /* Bright turmeric/orange accent */
  --color-maroon        : #800000;  /* Deep red for headers or highlights */
  --color-brass-gold    : #D4AF37;  /* Metallic gold accent for hovers/borders */
  --color-palm-green    : #2E7D32;  /* Deep leaf green for links/secondary accents */
  --color-ivory         : #F5F5DC;  /* Soft off-white background */
  --color-charcoal      : #333333;  /* Dark text color */
  --color-text-light    : #555555;  /* Secondary text color */
  --color-neutral-light : #FAF9F6;  /* Very light neutral for cards/dividers */

  /* Typography */
  --font-sans: 'Karla', sans-serif;

  /* Shadows & Transitions */
  --box-shadow: 0 4px 10px rgba(0, 0, 0, 0.05);
  --transition-speed: 0.3s;
}

/*--------------------------------------------------------------------------------
  2. RESET & BASE STYLES
--------------------------------------------------------------------------------*/
* {
  margin: 0;
  padding: 0;
  box-sizing: border-box;
}

html {
  scroll-behavior: smooth;
}

body {
  font-family: var(--font-sans);
  line-height: 1.6;
  background-color: var(--color-ivory);
  color: var(--color-charcoal);
}

/*--------------------------------------------------------------------------------
  3. CONTAINER
--------------------------------------------------------------------------------*/
.container {
  width: 90%;
  max-width: 1200px;
  margin: 0 auto;
}

/*--------------------------------------------------------------------------------
  4. NAVBAR & SITE HEADER (single‐line layout + animation)
--------------------------------------------------------------------------------*/
.site-header {
  background-color: var(--color-maroon);
  box-shadow: 0 2px 5px rgba(0, 0, 0, 0.1);
  position: sticky;
  top: 0;
  z-index: 100;
  animation: slideDown 0.5s ease forwards;
}

.header-container {
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 1rem 0;
}

.header-container .logo img {
  height: 50px;
  transition: transform var(--transition-speed) ease;
}

.header-container .logo img:hover {
  transform: scale(1.05);
}

/* Main Navigation Links */
.main-nav .nav-links {
  display: flex;
  gap: 1.5rem;
  list-style: none;
}

.main-nav .nav-links li a {
  position: relative;
  text-decoration: none;
  color: #ffffff; /* white on maroon */
  font-weight: 500;
  padding: 0.4rem 0;
  transition: color var(--transition-speed) ease;
}

.main-nav .nav-links li a::after {
  content: '';
  position: absolute;
  left: 0;
  bottom: -4px;
  width: 100%;
  height: 2px;
  background-color: var(--color-saffron);
  transform: scaleX(0);
  transform-origin: left;
  transition: transform var(--transition-speed) ease;
}

.main-nav .nav-links li a:hover,
.main-nav .nav-links li a:focus {
  color: var(--color-saffron);
}

.main-nav .nav-links li a:hover::after,
.main-nav .nav-links li a:focus::after {
  transform: scaleX(1);
}

/* Auth Buttons (Login/Register/Logout) */
.auth-links .auth-btn {
  text-decoration: none;
  background-color: var(--color-saffron);
  color: #fff;
  padding: 0.5rem 1rem;
  border-radius: 6px;
  font-weight: 500;
  transition: background-color var(--transition-speed) ease, transform var(--transition-speed) ease;
}

.auth-links .auth-btn:hover {
  background-color: var(--color-brass-gold);
  transform: translateY(-2px);
}

/* Mobile Navbar Toggle (Hidden on Desktop) */
.mobile-toggle {
  display: none;
  font-size: 1.6rem;
  cursor: pointer;
  color: #ffffff;
}

/* Slide Down Animation for Header */
@keyframes slideDown {
  from {
    transform: translateY(-100px);
    opacity: 0;
  }
  to {
    transform: translateY(0);
    opacity: 1;
  }
}

/*--------------------------------------------------------------------------------
  5. BANNER SECTION
--------------------------------------------------------------------------------*/
.banner {
  background: url('../images/banner.jpg') no-repeat center center/cover;
  height: 60vh;
  position: relative;
  display: flex;
  align-items: center;
  justify-content: center;
}

.banner::after {
  content: '';
  position: absolute;
  inset: 0;
  background: rgba(0, 0, 0, 0.3);
}

.banner .banner-text {
  position: relative;
  background-color: rgba(0, 0, 0, 0.5);
  padding: 2rem 3rem;
  border-radius: 6px;
  color: #fff;
  text-align: center;
  max-width: 80%;
}

.banner .banner-text h1 {
  font-size: 2.8rem;
  margin-bottom: 0.8rem;
}

.banner .banner-text p {
  font-size: 1.2rem;
  opacity: 0.9;
}

/*--------------------------------------------------------------------------------
  6. SECTION TITLES
--------------------------------------------------------------------------------*/
.section {
  padding: 4rem 0;
}

.section-title {
  text-align: center;
  margin-bottom: 2rem;
}

.section-title h2 {
  font-size: 2.4rem;
  position: relative;
  color: var(--color-maroon);
}

.section-title h2::after {
  content: '';
  width: 80px;
  height: 3px;
  background-color: var(--color-saffron);
  display: block;
  margin: 0.5rem auto 0;
}

/* ===========================
   1) Footer Layout (brief)
   =========================== */
.site-footer {
  background-color: #333333; /* Dark grey */
  color: #fff;
  width: 100%;
  position: fixed;
  bottom: 0;
  left: 0;
  box-shadow: 0 -2px 6px rgba(0,0,0,0.1);
}

.footer-container {
  max-width: 1200px;
  margin: 0 auto;
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 1rem 1rem;
}

.site-footer p {
  margin: 0;
  font-size: 0. nine rem;
}
.footer-nav a {
  color: #FF9933;
  text-decoration: none;
  font-size: 0. nine rem;
  margin: 0 0.25rem;
  transition: color 0.2s ease;
}
.footer-nav a:hover {
  color: #e68a00;
}
/* ===========================
   1) Header Layout (brief)
   =========================== */
.site-header {
  position: fixed;
  top: 0;
  left: 0;
  width: 100%;
  background-color: #800000; /* Maroon */
  color: #fff;
  z-index: 1000;
  box-shadow: 0 2px 6px rgba(0,0,0,0.1);
}

.header-container {
  max-width: 1200px;
  margin: 0 auto;
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 0.75rem 1rem;
}

.site-header .logo a {
  color: #fff;
  text-decoration: none;
  font-size: 1.5rem;
  font-weight: 700;
  transition: color 0.2s ease;
}
.site-header .logo a:hover {
  color: #FF9933; /* Orange on hover */
}

.main-nav ul {
  list-style: none;
  margin: 0;
  padding: 0;
  display: flex;
}
.main-nav li {
  margin-left: 1.25rem;
}
.main-nav a {
  color: #fff;
  text-decoration: none;
  font-size: 1rem;
  font-weight: 500;
  transition: color 0.2s ease;
}
.main-nav a:hover {
  color: #FF9933;
}

.header-right {
  display: flex;
  align-items: center;
}
.cart-icon {
  color: #fff;
  text-decoration: none;
  font-size: 1.25rem;
  position: relative;
  margin-right: 1rem;
}
.cart-badge {
  position: absolute;
  top: -6px;
  right: -10px;
  background: #FF9933;
  color: #fff;
  border-radius: 50%;
  padding: 2px 6px;
  font-size: 0.75rem;
}
.btn-login,
.btn-logout {
  background: #FF9933;
  color: #fff;
  padding: 0.4rem 0.8rem;
  border-radius: 4px;
  text-decoration: none;
  font-size: 0.9rem;
  font-weight: 500;
  transition: background 0.2s ease, color 0.2s ease;
}
.btn-login:hover,
.btn-logout:hover {
  background: #e68a00;
}

/* ===========================
   2) Slide‐down Animation
   =========================== */

/* Keyframes for sliding header in from above */
@keyframes slideDown {
  0% {
    transform: translateY(-100%);
    opacity: 0;
  }
  100% {
    transform: translateY(0);
    opacity: 1;
  }
}

/* Apply the animation to .animated-header */
.animated-header {
  animation: slideDown 0.6s ease-out forwards;
}

/* ===========================
   3) Sticky Placeholder
   =========================== */
/* To prevent content “jump” under the header, add a top margin to <main> equal to header height. */
body {
  padding-top: 60px; /* adjust if your header is taller/shorter */
}

/* ===========================
   End of Header Styles
   =========================== */

/* ===========================
   2) Slide‐up Animation
   =========================== */

/* Keyframes for sliding footer up from below */
@keyframes slideUp {
  0% {
    transform: translateY(100%);
    opacity: 0;
  }
  100% {
    transform: translateY(0);
    opacity: 1;
  }
}

/* Apply the animation to .animated-footer */
.animated-footer {
  animation: slideUp 0.6s ease-out forwards;
  /* If you only want footer to slide up once it’s in the viewport, 
     you can change to animation-delay or control via JavaScript/IntersectionObserver. */
}
.star-rating .star 
{ color: #ccc;
   font-size: 2rem;
    display: inline-block;
    transition: color var(--transition-speed) ease;
   }


/* ===========================
   3) Body Padding for Footer
   =========================== */
/* Prevent content from hiding beneath the fixed footer */
body {
  padding-bottom: 60px; /* adjust if your footer is taller/shorter */
}

/* ===========================
   End of Footer Styles
   =========================== */


/*--------------------------------------------------------------------------------
  7. ABOUT US
--------------------------------------------------------------------------------*/
.about-content {
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  gap: 2rem;
  justify-content: center;
}

.about-content .about-image img {
  width: 100%;
  max-width: 500px;
  border-radius: 8px;
  box-shadow: var(--box-shadow);
}

.about-content .about-text {
  flex: 1;
  min-width: 280px;
  font-size: 1rem;
  color: var(--color-text-light);
}

/*--------------------------------------------------------------------------------
  8. MENU GRID (Cards)
--------------------------------------------------------------------------------*/
.menu-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(260px, 1fr));
  gap: 2rem;
}

.menu-item {
  background-color: #ffffff;
  border-radius: 8px;
  overflow: hidden;
  box-shadow: var(--box-shadow);
  transition: transform var(--transition-speed) ease, box-shadow var(--transition-speed) ease;
}

.menu-item:hover {
  transform: translateY(-5px);
  box-shadow: 0 6px 14px rgba(0, 0, 0, 0.1);
}

.menu-item img {
  width: 100%;
  height: 180px;
  object-fit: cover;
}

.menu-item-content {
  padding: 1.2rem;
}

.menu-item-content h3 {
  font-size: 1.3rem;
  margin-bottom: 0.6rem;
  color: var(--color-charcoal);
}

.menu-item-content p {
  margin-bottom: 0.6rem;
  font-size: 0.95rem;
  color: var(--color-text-light);
}

.menu-item-content .price {
  display: block;
  margin-bottom: 0.8rem;
  font-weight: 700;
  color: var(--color-saffron);
  font-size: 1.1rem;
}

.menu-item-content .btn {
  display: inline-block;
  text-decoration: none;
  background-color: var(--color-saffron);
  color: #fff;
  padding: 0.4rem 0.8rem;
  border-radius: 6px;
  font-weight: 500;
  transition: background-color var(--transition-speed) ease;
}

.menu-item-content .btn:hover {
  background-color: var(--color-brass-gold);
}

/*--------------------------------------------------------------------------------
  9. ORDER & BOOK A TABLE (Form Containers)
--------------------------------------------------------------------------------*/
.form-container {
  background-color: #ffffff;
  padding: 2rem;
  border-radius: 8px;
  box-shadow: var(--box-shadow);
  max-width: 600px;
  margin: 0 auto;
}

.form-container form label {
  display: block;
  margin-bottom: 0.5rem;
  font-weight: 500;
  color: var(--color-text-light);
}

.form-container form input,
.form-container form select,
.form-container form textarea {
  width: 100%;
  padding: 0.6rem;
  margin-bottom: 1rem;
  border: 1.2px solid var(--color-neutral-light);
  border-radius: 6px;
  font-size: 1rem;
  transition: border-color var(--transition-speed) ease;
}

.form-container form input:focus,
.form-container form select:focus,
.form-container form textarea:focus {
  outline: none;
  border-color: var(--color-saffron);
}

.form-container form button {
  background-color: var(--color-saffron);
  color: #fff;
  padding: 0.7rem 1.3rem;
  border: none;
  border-radius: 6px;
  cursor: pointer;
  font-size: 1rem;
  font-weight: 500;
  transition: background-color var(--transition-speed) ease;
}

.form-container form button:hover {
  background-color: var(--color-brass-gold);
}

/*--------------------------------------------------------------------------------
  10. CONTACT SECTION
--------------------------------------------------------------------------------*/
.contact-info {
  display: flex;
  flex-direction: column;
  gap: 1.4rem;
  max-width: 400px;
  margin: 0 auto;
  font-size: 1rem;
  color: var(--color-charcoal);
}

.contact-info div {
  display: flex;
  align-items: center;
  gap: 0.8rem;
}

.contact-info div i {
  font-size: 1.4rem;
  color: var(--color-saffron);
}

/*--------------------------------------------------------------------------------
  11. REVIEWS SECTION
--------------------------------------------------------------------------------*/
.review-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(320px, 1fr));
  gap: 2rem;
}

.review-card {
  background-color: #ffffff;
  border-radius: 8px;
  padding: 1.5rem;
  box-shadow: var(--box-shadow);
  transition: transform var(--transition-speed) ease, box-shadow var(--transition-speed) ease;
}

.review-card:hover {
  transform: translateY(-4px);
  box-shadow: 0 6px 14px rgba(0, 0, 0, 0.1);
}

.review-card h4 {
  margin-bottom: 0.6rem;
  font-size: 1.1rem;
  color: var(--color-charcoal);
}

.review-card .rating {
  color: #f1c40f;
  margin-bottom: 0.6rem;
}

.review-card p {
  color: var(--color-text-light);
  margin-bottom: 0.6rem;
}

.review-card small {
  color: #888;
  font-size: 0.9rem;
}


.star-rating label:hover,
.star-rating label:hover ~ label {
  color: #FF9933;  /* Turn hovered star (and all to its left) orange */
}
.star-rating input:checked ~ label {
  color: #FF9933;  /* Once clicked, that star (and all to its left) stay orange */
}
.star-rating input {
  display: none; /* Hide the radio inputs */
}
.star-rating {
  display: inline-flex;
  direction: rtl; /* Reverse the order for easier hover effect */
  font-size: 2rem;
  cursor: pointer;
}
.star-rating label {
  color: #ccc; /* Default star color */
  transition: color var(--transition-speed) ease;
}



 body {
      background: #f9f6e8;
      font-family: 'Karla', sans-serif;
    }
    .review-page-container {
      max-width: 800px;
      margin: 2rem auto;
      padding: 0 1rem;
    }
    .review-form-card {
      background: #fff;
      border-radius: 8px;
      box-shadow: 0 2px 8px rgba(0,0,0,0.1);
      padding: 2rem 1.5rem;
      margin-bottom: 2rem;
      animation: fadeIn 0.6s ease-out;
    }
    .review-form-card h2 {
      text-align: center;
      color: #800000;
      margin-bottom: 1rem;
    }
    .message-alert {
      padding: 0.75rem 1rem;
      border-radius: 4px;
      margin-bottom: 1rem;
      text-align: center;
      font-size: 0.95rem;
    }
    .message-alert.success {
      background: #d4edda;
      color: #155724;
      border: 1px solid #c3e6cb;
    }
    .message-alert.error {
      background: #f8d7da;
      color: #721c24;
      border: 1px solid #f5c6cb;
    }

    /* ★ Star Rating ★ */
    .star-rating {
      display: inline-flex;
      justify-content: center;
      margin-bottom: 1rem;
      font-size: 2rem;
      direction: rtl; /* Flip order so that CSS sibling selectors work */
    }
    .star-rating input {
      display: none; /* Hide actual radio inputs */
    }
    .star-rating label {
      cursor: pointer;
      color: #ccc;      /* Gray by default */
      padding: 0 5px;
      transition: color 0.2s ease;
    }
    /* On hover, color star and all to the left */
    .star-rating label:hover,
    .star-rating label:hover ~ label {
      color: #FF9933;   /* Orange */
    }
    /* When checked, color star and all to the left */
    .star-rating input:checked ~ label {
      color: #FF9933;
    }

    textarea {
      width: 100%;
      padding: 0.75rem;
      border: 1px solid #ccc;
      border-radius: 4px;
      min-height: 100px;
      font-size: 1rem;
      margin-bottom: 1rem;
    }
    button.submit-review {
      background: #FF9933;
      color: #fff;
      border: none;
      padding: 0.75rem 1.5rem;
      border-radius: 4px;
      font-size: 1rem;
      cursor: pointer;
      display: block;
      margin: 0 auto;
      transition: background 0.2s ease, transform 0.2s ease;
    }
    button.submit-review:hover {
      background: #e68a00;
      transform: translateY(-2px);
    }

    .reviews-list h2 {
      text-align: center;
      color: #800000;
      margin-bottom: 1rem;
    }
    .review-card {
      background: #fff;
      border-radius: 8px;
      box-shadow: 0 2px 8px rgba(0,0,0,0.1);
      padding: 1rem;
      margin-bottom: 1rem;
      animation: fadeIn 0.6s ease-out;
    }
    .review-header {
      display: flex;
      align-items: center;
      margin-bottom: 0.5rem;
    }
    .review-header .author {
      font-weight: 700;
      color: #333;
      margin-right: 1rem;
    }
    .review-header .stars {
      display: flex;
    }
    .review-header .stars i {
      color: #FF9933;
      margin-right: 4px;
      font-size: 1.25rem;
    }
    .review-header .date {
      margin-left: auto;
      font-size: 0.9rem;
      color: #777;
    }
    .review-comment {
      color: #555;
      line-height: 1.5;
      margin-top: 0.5rem;
    }

    @keyframes fadeIn {
      from { opacity: 0; }
      to   { opacity: 1; }
    }

    @media (max-width: 600px) {
      .star-rating label {
        font-size: 1.75rem;
      }
      .review-header .author {
        font-size: 0.9rem;
      }
      .review-header .stars i {
        font-size: 1rem;
      }
      .review-header .date {
        font-size: 0.8rem;
      }
    }
/*--------------------------------------------------------------------------------
  12. FOOTER (single‐line layout + animation)
--------------------------------------------------------------------------------*/
.site-footer {
  background-color: var(--color-charcoal);
  color: #ffffff;
  padding: 1rem 0;
  animation: fadeInUp 0.5s ease forwards;
}

.footer-container {
  display: flex;
  align-items: center;
  justify-content: space-between;
  flex-wrap: wrap;
  gap: 1rem;
}

.footer-info {
  display: flex;
  flex-wrap: wrap;
  gap: 1.5rem;
  font-size: 0.9rem;
}

.footer-info a {
  color: #ffffff;
  text-decoration: underline;
  transition: color var(--transition-speed) ease;
}

.footer-info a:hover {
  color: var(--color-saffron);
}

.footer-social a {
  color: #ffffff;
  margin-left: 0.8rem;
  font-size: 1.2rem;
  transition: transform var(--transition-speed) ease, color var(--transition-speed) ease;
}

.footer-social a:hover {
  color: var(--color-saffron);
  transform: scale(1.1);
}

/* Fade In Up Animation for Footer */
@keyframes fadeInUp {
  from {
    transform: translateY(50px);
    opacity: 0;
  }
  to {
    transform: translateY(0);
    opacity: 1;
  }
}

/*--------------------------------------------------------------------------------
  13. TABLES (for Cart & Admin Tables)
--------------------------------------------------------------------------------*/
table {
  width: 100%;
  border-collapse: collapse;
  margin-bottom: 2rem;
}

table th,
table td {
  padding: 0.8rem;
  border-bottom: 1px solid var(--color-neutral-light);
}

table th {
  background-color: var(--color-neutral-light);
  text-align: left;
  font-weight: 600;
}

table tr:hover {
  background-color: var(--color-neutral-light);
}

/*--------------------------------------------------------------------------------
  14. GENERIC BUTTON CLASS (for reuse)
--------------------------------------------------------------------------------*/
.btn {
  display: inline-block;
  background-color: var(--color-saffron);
  color: #fff;
  padding: 0.6rem 1.2rem;
  border: none;
  border-radius: 6px;
  text-decoration: none;
  font-weight: 500;
  cursor: pointer;
  transition: background-color var(--transition-speed) ease, transform var(--transition-speed) ease;
}

.btn:hover {
  background-color: var(--color-brass-gold);
  transform: translateY(-2px);
}

/*--------------------------------------------------------------------------------
  15. HORIZONTAL DIVIDER
--------------------------------------------------------------------------------*/
hr {
  border: none;
  border-top: 1px solid var(--color-neutral-light);
  margin: 2rem 0;
}

/*--------------------------------------------------------------------------------
  16. RESPONSIVE BREAKPOINTS
--------------------------------------------------------------------------------*/

/* Mobile & Tablet: Navbar stacks and footer stacks */
@media (max-width: 992px) {
  /* Stack About Us vertically */
  .about-content {
    flex-direction: column;
  }
}

@media (max-width: 768px) {
  /* Navbar: Stack logo/nav/auth vertically */
  .header-container {
    flex-direction: column;
    gap: 1rem;
  }
  .main-nav .nav-links {
    flex-wrap: wrap;
    justify-content: center;
  }
  .auth-links {
    margin-top: 0.5rem;
  }

  /* Footer: Stack info and social vertically */
  .footer-container {
    flex-direction: column;
    text-align: center;
    gap: 1rem;
  }
  .footer-info {
    justify-content: center;
  }
}

@media (max-width: 576px) {
  /* Make nav links smaller on extra small screens */
  .main-nav .nav-links {
    gap: 1rem;
  }
  .main-nav .nav-links li a {
    font-size: 0.9rem;
  }
  .auth-links .auth-btn {
    padding: 0.4rem 0.8rem;
    font-size: 0.9rem;
  }
  .footer-info {
    font-size: 0.8rem;
  }
}

/*--------------------------------------------------------------------------------
  17. END OF CSS
--------------------------------------------------------------------------------*/
/*================================================================================
  CONTACT PAGE SPECIFIC STYLES
================================================================================*/

/*--------------------------------------------------------------------------------
  1. CONTACT HERO / BANNER
--------------------------------------------------------------------------------*/
.contact-hero {
  position: relative;
  background: url('../images/contact-banner.jpg') no-repeat center center/cover;
  height: 40vh;
  display: flex;
  align-items: center;
  justify-content: center;
  margin-bottom: 2rem;
}

.contact-hero-overlay {
  position: absolute;
  inset: 0;
  background-color: rgba(0, 0, 0, 0.5);
}

.contact-hero-content {
  position: relative;
  text-align: center;
  color: #ffffff;
  animation: fadeInDown 0.8s ease forwards;
}

.contact-hero-content h1 {
  font-size: 2.8rem;
  margin-bottom: 0.6rem;
  color: var(--color-saffron);
}

.contact-hero-content p {
  font-size: 1.1rem;
  max-width: 600px;
  margin: 0 auto;
  color: #f0f0f0;
}

/* Fade In Down Animation */
@keyframes fadeInDown {
  from {
    transform: translateY(-30px);
    opacity: 0;
  }
  to {
    transform: translateY(0);
    opacity: 1;
  }
}

/*--------------------------------------------------------------------------------
  2. CONTACT PAGE LAYOUT (TWO‐COLUMN)
--------------------------------------------------------------------------------*/
.contact-page-container {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 3rem;
}

/* Left column (form) */
.contact-form-container {
  background-color: #ffffff;
  padding: 2rem;
  border-radius: 8px;
  box-shadow: var(--box-shadow);
  animation: fadeInUp 0.8s ease forwards 0.2s;
}

.contact-form-container h2 {
  font-size: 1.8rem;
  margin-bottom: 1rem;
  color: var(--color-maroon);
}

.form-success,
.form-error {
  padding: 0.8rem 1rem;
  border-radius: 6px;
  margin-bottom: 1rem;
  font-weight: 500;
  text-align: center;
}

.form-success {
  background-color: #d4edda;
  color: #155724;
}

.form-error {
  background-color: #f8d7da;
  color: #721c24;
}

.contact-form .form-group {
  margin-bottom: 1rem;
}

.contact-form label {
  display: block;
  margin-bottom: 0.4rem;
  font-weight: 500;
  color: var(--color-charcoal);
}

.contact-form .required {
  color: #e74c3c;
}

.contact-form input[type="text"],
.contact-form input[type="email"],
.contact-form textarea {
  width: 100%;
  padding: 0.7rem;
  border: 1px solid var(--color-neutral-light);
  border-radius: 6px;
  font-size: 1rem;
  color: var(--color-charcoal);
  transition: border-color var(--transition-speed) ease;
}

.contact-form input[type="text"]:focus,
.contact-form input[type="email"]:focus,
.contact-form textarea:focus {
  outline: none;
  border-color: var(--color-saffron);
}

.contact-form textarea {
  resize: vertical;
}

.contact-btn {
  display: inline-flex;
  align-items: center;
  gap: 0.5rem;
  background-color: var(--color-saffron);
  color: #ffffff;
  padding: 0.7rem 1.3rem;
  border: none;
  border-radius: 6px;
  font-weight: 500;
  cursor: pointer;
  transition: background-color var(--transition-speed) ease, transform var(--transition-speed) ease;
}

.contact-btn i {
  font-size: 1rem;
}

.contact-btn:hover {
  background-color: var(--color-brass-gold);
  transform: translateY(-2px);
}

/* Right column (info + map) */
.contact-info-container {
  animation: fadeInUp 0.8s ease forwards 0.4s;
}

.contact-info-container h2 {
  font-size: 1.8rem;
  margin-bottom: 1rem;
  color: var(--color-maroon);
}

.contact-info-item {
  display: flex;
  align-items: flex-start;
  gap: 1rem;
  margin-bottom: 1.2rem;
}

.contact-info-item i {
  font-size: 1.5rem;
  color: var(--color-saffron);
  margin-top: 4px;
}

.contact-info-item h4 {
  font-size: 1.1rem;
  margin-bottom: 0.2rem;
  color: var(--color-charcoal);
}

.contact-info-item p,
.contact-info-item a {
  font-size: 1rem;
  color: var(--color-text-light);
}

.contact-info-item a {
  text-decoration: none;
  transition: color var(--transition-speed) ease;
}

.contact-info-item a:hover {
  color: var(--color-saffron);
}

/* Map container */
.map-container {
  margin-top: 1.5rem;
  border: 3px solid var(--color-neutral-light);
  border-radius: 6px;
  overflow: hidden;
}

/* Fade In Up Animation */
@keyframes fadeInUp {
  from {
    transform: translateY(30px);
    opacity: 0;
  }
  to {
    transform: translateY(0);
    opacity: 1;
  }
}

/*--------------------------------------------------------------------------------
  3. RESPONSIVE BEHAVIOR
--------------------------------------------------------------------------------*/
@media (max-width: 992px) {
  .contact-page-container {
    grid-template-columns: 1fr;
  }
  .map-container iframe {
    height: 200px;
  }
}

@media (max-width: 576px) {
  .contact-hero-content h1 {
    font-size: 2rem;
  }
  .contact-page-container {
    gap: 2rem;
  }
}


/* File: assets/css/menu.css */
.menu-category {
  margin-bottom: 3rem;
}
.menu-category h3 {
  font-size: 1.75rem;
  color: #800000;
  margin-bottom: 1rem;
  border-bottom: 2px solid #FF9933;
  display: inline-block;
  padding-bottom: 0.25rem;
}

.menu-items-grid {
  display: grid;
  grid-template-columns: repeat(auto-fill,minmax(280px,1fr));
  gap: 1.5rem;
}

.menu-item-card {
  background: #fff;
  border-radius: 8px;
  overflow: hidden;
  box-shadow: 0 2px 8px rgba(0,0,0,0.1);
  display: flex;
  flex-direction: column;
  transition: transform 0.3s ease, box-shadow 0.3s ease;
}
.menu-item-card:hover {
  transform: translateY(-5px);
  box-shadow: 0 6px 20px rgba(0,0,0,0.15);
}
.menu-item-card img {
  width: 100%;
  height: 180px;
  object-fit: cover;
}
.menu-item-content {
  padding: 1rem;
  flex: 1;
  display: flex;
  flex-direction: column;
}
.menu-item-content h4 {
  font-size: 1.2rem;
  margin: 0 0 0.5rem 0;
  color: #333;
}
.menu-item-content p {
  font-size: 0.95rem;
  color: #555;
  flex: 1;
}
.menu-item-content .item-footer {
  display: flex;
  align-items: center;
  justify-content: space-between;
  margin-top: 1rem;
}
.menu-item-content .price {
  font-size: 1.1rem;
  color: #FF9933;
  font-weight: bold;
}
.add-to-cart-form {
  display: flex;
  align-items: center;
}
.qty-input {
  width: 50px;
  padding: 0.25rem;
  margin-right: 0.5rem;
  border: 1px solid #ccc;
  border-radius: 4px;
  font-size: 1rem;
}
.btn-add {
  background: #FF9933;
  color: #fff;
  border: none;
  padding: 0.5rem 1rem;
  border-radius: 20px;
  cursor: pointer;
  transition: background 0.2s ease;
}
.btn-add:hover {
  background: #e68a00;
}

