/* === GLOBAL RESET === */
* { margin: 0; padding: 0; box-sizing: border-box; }

/* === BODY / FONTS === */
body {
  font-family: 'Montserrat', sans-serif;
  background: #fff;
  color: #333;
  line-height: 1.6;
}

/* ===== NAVBAR (your styles) ===== */
header {
  position: fixed;
  top: 0;
  width: 100%;
  padding: 25px 0;
  display: flex;
  justify-content: center;
  z-index: 1000;
  background: rgba(255, 255, 255, 0.97);
  box-shadow: 0 2px 10px rgba(0,0,0,0.1);
}

/* 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;
  font-weight: 500;
  font-size: 15px;
  letter-spacing: 1.5px;
  transition: color .3s ease;
}
.nav-left a:hover, .nav-right a:hover { color: #e63946; }

/* DROPDOWN */
.dropdown { position: relative; }
.dropdown-menu {
  display: none;
  position: absolute;
  top: 100%; left: 0;
  background: rgba(255,255,255,.95);
  list-style: none;
  padding: 10px 0;
  box-shadow: 0 4px 12px rgba(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: 70px; }
.logo img {
  position: absolute; top: -5px; left: 0;
  width: 100%; height: auto;
}
.logo-light { display: none; }
.logo-dark  { opacity: 1; z-index: 2; }

/* 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 .3s ease;
}
.book-btn:hover { background: #b91c1c; }

/* === LAYOUT HELPERS === */
.container { max-width: 1100px; margin: 0 auto; padding: 0 24px; }

/* Add space so fixed navbar doesn't overlap hero */
.page-offset { height: 100px; } /* add <div class="page-offset"></div> right after </header> OR use .hero margin-top below */

/* ===== HERO ===== */
.hero {
  position: relative;
  min-height: 48vh;
  display: grid;
  place-items: center;
  overflow: hidden;
  margin-top: 88px; /* offset for fixed header (use instead of .page-offset if you prefer) */
}
.hero::before {
  content: "";
  position: absolute; inset: 0;
  background-image: url("images/location.jpeg"); /* <- replace with your hero image */
  background-size: cover;
  background-position: center;
  filter: brightness(55%);
}
.hero__content { position: relative; text-align: center; padding: 6rem 1rem; }
.hero h1 {
  margin: 0; color: #fff;
  font-size: clamp(2rem, 4.8vw, 3.5rem);
  font-weight: 800;
  letter-spacing: .5px;
  text-shadow: 0 2px 20px rgba(0,0,0,.35);
}

/* ===== INTRO ===== */
.intro { padding: 56px 0 32px; }
.intro p {
  max-width: 860px; margin: 0 auto; text-align: center;
  color: #555; font-weight: 300;
}

/* ===== MISSION ===== */
.mission { padding: 16px 0 80px; }
.mission__grid {
  display: grid;
  grid-template-columns: 1.2fr 1fr; /* image a bit wider */
  gap: 32px; align-items: stretch;
}
.mission__image img {
  width: 100%; height: 100%;
  object-fit: cover; border-radius: 6px;
}
.mission__card {
  background: #f0f0f0;
  border-radius: 6px;
  padding: 32px 28px;
  display: flex; flex-direction: column; justify-content: center;
}
.mission__card h2 { margin: 0 0 12px; font-size: 1.4rem; color: #333; }
.mission__card p  { margin: 0; color: #666; font-weight: 300; }

/* ===== RESPONSIVE ===== */
@media (max-width: 900px) {
  .nav-left, .nav-right { gap: 20px; }
  .mission__grid { grid-template-columns: 1fr; }
}

/* ===== TEAM ===== */
.team { padding: 32px 0 96px; }
.team__title {
  text-align: center;
  font-size: clamp(1.8rem, 3.5vw, 3rem);
  font-weight: 700;
  color: #3a3a3a;
  margin-bottom: 8px;
}
.team__tag {
  text-align: center;
  color: #8a8a8a;
  font-style: italic;
  margin-bottom: 36px;
}

.team__grid {
  display:grid;
  gap: 0px;
  justify-content: center;
  max-width: 300px;
  margin: 0 auto;
}

.team-card {
  background: #fff;
  border-radius: 6px;
  overflow: hidden;
  box-shadow: 0 6px 22px rgba(0,0,0,0.06);
  transition: transform .2s ease, box-shadow .2s ease;
}
.team-card:hover {
  transform: translateY(-4px);
  box-shadow: 0 10px 28px rgba(0,0,0,0.08);
}

.team-card__img {
  width: 100%;
  height: 420px;           /* close to screenshot proportions */
  object-fit: cover;
  display: block;
}

.team-card__info {
  background: #f2f2f2;     /* light panel like screenshot */
  padding: 22px 26px;
}
.team-card__name {
  margin: 0 0 6px;
  font-size: 0.95rem;
  letter-spacing: 1px;
  font-weight: 800;
  color: #2e2e2e;
}
.team-card__role {
  margin: 0;
  color: #7a7a7a;
  font-weight: 400;
}

/* Responsive */
@media (max-width: 760px) {
  .team__grid { grid-template-columns: 1fr; gap: 28px; }
  .team-card__img { height: 360px; }
}

/* === FOOTER === */
.footer {
  background: #111;
  color: #fff;
  padding: 50px 20px 20px;
  font-family: 'Montserrat', sans-serif;
}

.footer-container {
  display: flex;
  justify-content: space-between;
  flex-wrap: wrap;
  max-width: 1200px;
  margin: 0 auto;
}

/* === LOGO === */
.footer-logo img {
  width: 150px;
  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 === */
.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; 
}

/* (Alt layout override used later in your file) */
.footer-container {
  display: flex;
  justify-content: space-between;
  align-items: flex-start;
  max-width: 1000px;   
  margin: 0 auto;
  gap: 40px;         
}

.footer-logo,
.footer-contact,
.footer-extra {
  flex: 1;
  min-width: 220px;   
  text-align: left;
}

/* Responsive adjustments */
@media (max-width: 768px) {
/* 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;
  font-weight: 500;
  font-size: 7px;
  letter-spacing: 0.5px;
  transition: color .3s ease;
}
.nav-left a:hover, .nav-right a:hover { color: #e63946; }
/* DROPDOWN */
.dropdown { position: relative; }
.dropdown-menu {
  display: none;
  position: absolute;
  top: 100%; left: 0;
  background: rgba(255,255,255,.95);
  list-style: none;
  padding: 10px 0;
  box-shadow: 0 4px 12px rgba(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;
}

  .nav-left a:hover, .nav-right a:hover {
    color: #e63946;
  }

  .logo {
      margin-top: 10px;
  }

  .mission-container {
      flex-direction: column;
      text-align: center;
  }
  .mission-image, .mission-text {
      min-width: unset;
      width: 100%;
      padding: 0;
  }
  .mission-text h3, .mission-text p {
      text-align: center;
  }
  /* Footer adjustments */
  .footer-container {
    flex-direction: column;
    align-items: center;
    gap: 20px;
  }

  .footer-logo,
  .footer-contact,
  .footer-extra {
    min-width: 100%;
    text-align: center;
  }
}

.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;
}



