/* === GLOBAL RESET === */
* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
  }
  
  /* === BODY FONT === */
  body {
    font-family: 'Montserrat', sans-serif;
    background: #fff;
  }
  
  /* === NAVBAR === */
  header {
    position: fixed;
    top: 0;
    width: 100%;
    padding: 12px 0;
    display: flex;
    justify-content: center;
    z-index: 1000;
    background: rgba(255, 255, 255, 0.97);  /* always white */
    box-shadow: 0 2px 10px rgba(0, 0, 0, 0.1); /* subtle shadow for separation */
  }
  
  /* NAVBAR CONTENT */
  .navbar {
    width: 90%;
    max-width: 1400px;
    display: flex;
    align-items: center;
    justify-content: space-between;
  }
  
  /* NAV LINKS */
  .nav-left, .nav-right {
    list-style: none;
    display: flex;
    align-items: center;
    gap: 40px;
  }
  
  .nav-left a, .nav-right a {
    text-decoration: none;
    color: #333;   /* dark text */
    font-weight: 500;
    font-size: 15px;
    letter-spacing: 1.5px;
    transition: color 0.3s ease;
  }
  
  /* HOVER EFFECTS */
  .nav-left a:hover, .nav-right a:hover {
    color: #e63946;
  }
  
  /* DROPDOWN MENU */
  .dropdown {
    position: relative;
  }
  
  .dropdown-menu {
    display: none;
    position: absolute;
    top: 100%;
    left: 0;
    background: rgba(255, 255, 255, 0.95);
    list-style: none;
    padding: 10px 0;
    box-shadow: 0px 4px 12px rgba(0,0,0,0.1);
    border-radius: 5px;
    min-width: 150px;
  }
  
  .dropdown:hover .dropdown-menu {
    display: block;
  }
  
  .dropdown-menu li {
    padding: 10px 20px;
  }
  
  .dropdown-menu li a {
    color: #333;
    font-size: 14px;
  }
  
  .dropdown-menu li a:hover {
    color: #e63946;
  }
  
  /* LOGO */
  .logo {
    position: relative;
    width: 90px;   
    height: 90px;  
  }
  
  .logo img {
    position: absolute;
    top: 0;       
    left: 0;
    width: 100%;   
    height: auto;
  }
  
  .logo-light {
    display: none;
  }
  
  .logo-dark {
    opacity: 1;
    z-index: 2;
    height: auto; 
    width: 100%;
  }
  
  /* BOOK A TABLE BUTTON */
  .book-btn {
    background: #e63946;
    color: #fff;
    padding: 8px 18px;
    border-radius: 30px;
    text-decoration: none;
    font-weight: 600;
    font-size: 14px;
    transition: background 0.3s ease;
  }
  
  .book-btn:hover {
    background: #b91c1c;
  }
  
  /* SECTION WITH BACKGROUND IMAGE */
  .booking-section {
    position: relative;
    width: 100%;
    height: 70vh;  
    background: url('images/bg.jpeg') center/cover no-repeat;
    display: flex;
    align-items: center;
    justify-content: center;
  }
  
  /* DARK OVERLAY FOR READABILITY */
  .booking-section::before {
    content: "";
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: rgba(0, 0, 0, 0.3);
  }
  
  /* TEXT OVERLAY */
  .text-overlay {
    position: relative;
    text-align: center;
    color: #fff;
    z-index: 1;
  }
  
  /* SMALL TEXT */
  .reservation {
    font-size: 22px;
    font-weight: 400;
    margin-bottom: 10px;
    color:#fff;
  }
  
  /* MAIN TITLE */
  .booking-title {
    font-size: 60px;
    font-weight: bold;
  }
  
  /* ======================= */
  /* RESERVATION SYSTEM CSS */
  /* ======================= */
  
  /* === PROGRESS BAR === */
  .progress-container {
    display: flex;
    align-items: center;
    justify-content: center;
    margin-top: 40px;
    margin-bottom: 30px;
    gap: 10px;
  }
  
  .step {
    background: #ccc;
    color: #fff;
    width: 30px;
    height: 30px;
    border-radius: 50%;
    display: flex;
    justify-content: center;
    align-items: center;
    position: relative;
    font-size: 14px;
    font-weight: bold;
  }
  
  .step.active {
    background: #e63946; /* Achaar Ghar red */
  }
  
  .step.completed {
    background: #3a5a40; /* Achaar Ghar green */
  }
  
  .step span {
    position: absolute;
    top: 40px;
    font-size: 13px;
    color: #333;
    white-space: nowrap;
  }
  
  .line {
    flex: 0.2;
    height: 2px;
    background: #ccc;
  }
  
  .line.active {
    background: #e63946;
  }
  
  /* === FORM CONTAINER === */
  .form-container {
    max-width: 500px;
    margin: 0 auto 60px;
    text-align: center;
  }
  
  .form-step {
    display: none;
  }
  
  .form-step.active {
    display: block;
  }
  
  h2 {
    margin-bottom: 20px;
    color: #222;
  }
  
  /* === PEOPLE/TIME GRID === */
  .people-grid, .time-grid {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 15px;
    justify-items: center;
    margin-bottom: 20px;
  }
  
  .people-btn, .time-btn {
    background: #f5f5f5;
    border: 2px solid transparent;
    width: 60px;
    height: 60px;
    border-radius: 50%;
    font-size: 16px;
    cursor: pointer;
    transition: 0.3s;
  }
  
  .people-btn:hover, .time-btn:hover {
    border-color: #e63946;
  }
  
  .people-btn.selected, .time-btn.selected {
    background: #e63946;
    color: white;
    border-color: #e63946;
  }
  
  /* === BUTTONS === */
  .next-btn, .prev-btn, .submit-btn {
    padding: 12px 20px;
    margin: 8px 5px;
    border: none;
    cursor: pointer;
    font-size: 16px;
    border-radius: 8px;
    transition: background-color 0.3s ease;
  }
  
  .next-btn {
    background: #e63946;
    color: white;
  }
  
  .prev-btn {
    background: #ccc;
    color: #333;
  }
  
  .submit-btn {
    background: #3a5a40;
    color: white;
    width: 100%;
    margin-top: 10px;
  }
  
  /* === INPUTS === */
  input, textarea {
    width: 100%;
    padding: 12px;
    margin-bottom: 12px;
    border: 1px solid #ccc;
    border-radius: 6px;
    font-size: 14px;
  }
  
  textarea { height: 80px; }
  
  /* === TERMS === */
  .terms {
    font-size: 14px;
    margin-bottom: 10px;
    display: block;
  }
  
  .terms a {
    color: #e63946;
    text-decoration: none;
  }
  
  /* === FOOTER === */
  .footer {
    background: #111;
    color: #fff;
    padding: 50px 20px 20px;
    font-family: 'Montserrat', sans-serif;
  }
  
  .footer-container {
    display: flex;
    justify-content: space-between;
    align-items: flex-start;
    flex-wrap: wrap;
    max-width: 1000px;
    margin: 0 auto;
    gap: 40px;
  }
  
  /* === LOGO === */
  .footer-logo img {
    width: 150px;   /* ❗ Consider increasing this value so the logo is visible */
    margin-bottom: 20px;
  }
  
  /* === CONTACT INFO === */
  .footer-contact h3, 
  .footer-extra h3 {
    font-size: 18px;
    margin-bottom: 10px;
    color: #e63946; /* Achaar Ghar red */
  }
  
  .footer-contact p {
    font-size: 14px;
    line-height: 1.6;
    margin: 5px 0;
  }
  
  /* === SOCIAL ICONS === */
  .social-icons {
    margin-top: 15px;
  }
  
  .social-icons a img {
    width: 35px;
    margin-right: 15px;
    transition: transform 0.3s ease;
  }
  
  .social-icons a img:hover {
    transform: scale(1.1);
  }
  
  /* === APP DOWNLOAD BUTTONS (if used) === */
  .app-buttons img {
    width: 120px;
    margin: 8px 0;
    display: block;
  }
  
  /* === BOTTOM BAR === */
  .footer-bottom {
    border-top: 1px solid rgba(255, 255, 255, 0.1);
    margin-top: 30px;
    padding-top: 15px;
    text-align: center;
    font-size: 13px;
    color: #ccc;
  }
  
  .footer-bottom a {
    color: #e63946;
    text-decoration: none;
    margin: 0 5px;
  }
  
  .footer-bottom span {
    color: #3a5a40;
  }
  
  /* === FLEX BOXES INSIDE FOOTER === */
  .footer-logo,
  .footer-contact,
  .footer-extra {
    flex: 1;
    min-width: 220px;
    text-align: left;
  }

  /* === RESPONSIVE NAVBAR === */
@media (max-width: 768px) {
  .navbar {
    width: 90%;
    max-width: 1400px;
    display: flex;
    align-items: center;
    justify-content: space-between;
  }
  
  /* NAV LINKS */
  .nav-left, .nav-right {
    list-style: none;
    display: flex;
    align-items: center;
    gap: 40px;
  }
  
  .nav-left a, .nav-right a {
    text-decoration: none;
    color: #333;   /* dark text */
    font-weight: 500;
    font-size: 7px;
    letter-spacing: 0.5px;
    transition: color 0.3s ease;
  }
  
  /* HOVER EFFECTS */
  .nav-left a:hover, .nav-right a:hover {
    color: #e63946;
  }
  
  /* DROPDOWN MENU */
  .dropdown {
    position: relative;
  }
  
  .dropdown-menu {
    display: none;
    position: absolute;
    top: 100%;
    left: 0;
    background: rgba(255, 255, 255, 0.95);
    list-style: none;
    padding: 10px 0;
    box-shadow: 0px 4px 12px rgba(0,0,0,0.1);
    border-radius: 5px;
    min-width: 100px;
  }
  
  .dropdown:hover .dropdown-menu {
    display: block;
  }
  
  .dropdown-menu li {
    padding: 2px 20px;
  }
  
  .dropdown-menu li a {
    color: #333;
    font-size: 7px;
  }
  
  .dropdown-menu li a:hover {
    color: #e63946;
  }
}



.navbar-mob {
    display: none;
    width: 100vw;
    flex-direction: column;
}

.navbar-mob-items {
    display: flex;
    justify-content: space-around;
    align-items:center;
    width: 100vw;
}

.navbar-mob-items .book-btn{
    width: 20vw;
    display: flex;
    justify-content: center;
    align-items: center;
}

.mob-dropdown  a{
  text-decoration: none;
  color: #fff;   /* white text by default on slider */
  font-weight: 500;
  font-size: 14px;
  letter-spacing: 0.5px;
  transition: color 0.3s ease;
}

.mob-dropdown a {
    width: 100%;
    padding: 8px;
    display: flex;
    align-items: center;
    color: black;
    border-bottom: 1px solid #D3D3D3;
    
}
.mob-dropdown { 
    display: none;
    flex-direction: column;
    justify-content: center;
    align-items: center;
    gap: 4px;
    padding: 10px;
    background-color: white;
    transition: all 0.3s ease, box-shadow 0.3s ease;
}


@media (max-width: 800px) {
  .navbar {
    flex-direction: row;
    justify-content: space-between;
    align-items: center;
  }

  @media (max-width: 550px) {
      .navbar {
          display: none;
      }

      .navbar-mob {
          display: flex !important;
      };
  }

.hamburger{
    padding: 10px;
    font-size: 50px;
    position: relative;
    display: flex;
    align-items: center;
    justify-content: center;
    width: 20vw;
}

.hamburger-dark{
    opacity: 1;
    color: black;
    z-index: 1;
    position: absolute;
}

