:root {
    --background-color: #000;
    --text-color: #fff;
    --primary-color: #fdd835;
    --hover-color: #a37000;
    --form-bg: #1a1a1a;
    --border-color: #333;
  }
  
  * {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
    font-family: 'Poppins', sans-serif;
  }
  
  html, body {
    /* height: 100%; */
    width: 100%;
    background-color: var(--background-color);
    /* color: var(--text-color); */
    overflow-x: hidden !important;
  }
  
  body {
    min-height: 100vh;
  }
  
  #main {
    min-height: 100vh;
    padding-top: 126px; /* navbar ki height ke hisaab se */  
  }
  
  #nav {
    /* background-color: rgba(0, 0, 0, 0.38); */
    background-color: rgba(255, 255, 255, 0.2);  /*Transparent white color */
    backdrop-filter: blur(2px); /* Zyada blur effect */
    -webkit-backdrop-filter: blur(20px); /* Safari support */
    position: absolute;
    top: 0;
    width: 100%;
    padding: 0 300px;
    display: flex;
    align-items: center;
    justify-content: space-between;
    z-index: 100;
    gap: 50px;
  }
  
  #nav img {
    height: 125px;
    width: 120px;
    transition: all 0.4s ease;
  }
  
  #nav h4 {
    justify-content: center;
    display: flex;
    text-align: center;
    align-items: center;
    text-transform: uppercase;
    font-weight: 500;
    font-size: 15px;
    color: var(--text-color);
  }
  
  .nav-button {
    background-color: rgba(73, 71, 71, 0.23);
    padding: 15px;
    border-radius: 30px;
    border: 2px solid #000;
    cursor: pointer;
    transition: all 0.4s ease;
    color: white;
    width: 110px;
    height: 25px;
    display: flex;
    align-items: center;
    justify-content: center;
  }
  
  .nav-button:hover {
    transform: translateY(-8px);
    background-color: #fdd835;
    border: 2px solid #a37000;
    box-shadow: 0 0 6px #a37000;
  }
  
  .nav-button:hover h4 {
    color: #000 !important;
  }
  
  
  /* ✅ Default transparent nav state hover (like Watch Video) */
  #nav:not(.scrolled) .nav-button:hover {
    background-color: rgba(255, 255, 255, 0.3);
    border: 2px solid #fff;
    box-shadow: 0 6px 15px rgba(255, 255, 255, 0.2);
  }
  
  #nav:not(.scrolled) .nav-button:hover h4 {
    color: #fff !important;
  }
  
  /* ✅ When navbar becomes black — golden hover effect */
  #nav.scrolled .nav-button:hover {
    background-color: #fdd835 !important;
    border: 2px solid #a37000 !important;
    box-shadow: 0 0 6px #a37000 !important;
  }
  
  #nav.scrolled .nav-button:hover h4 {
    color: #000 !important;
  }
  

 
  /* 🍔 Hamburger Icon */
  #hamburger {
    display: none;
    position: absolute;
    top: 30px;
    right: 20px;
    font-size: 28px;
    z-index: 1001;
    color: #fdd835;
    cursor: pointer;
  }
  
  /* 📱 Mobile Menu Styling */
  #mobile-menu {
    position: fixed;
    top: 0;
    right: -100%;
    height: 100vh;
    width: 260px;
    background-color: #000;
    display: flex;
    flex-direction: column;
    padding: 40px 20px;
    gap: 20px;
    transition: right 0.4s ease;
    z-index: 1000;
  }
  
  #mobile-menu a {
    color: #fdd835;
    text-decoration: none;
    font-weight: 600;
    font-size: 16px;
    text-transform: uppercase;
    border-bottom: 1px solid #fff2;
  }
  
  #mobile-menu.show {
    right: 0;
  }
  
  #close-menu {
    font-size: 24px;
    color: #fff;
    text-align: left;
    margin-bottom: 20px;
    cursor: pointer;
    display: inline-block;
    transition: transform 0.3s ease;
  }
  
  #close-menu:hover {
    transform: scale(1.3);
  }
  


  h1 {
    cursor: default;
    text-align: center;
    font-family: 'Playfair Display', serif;
    font-size: 3rem;
    margin: 2rem 0;
    color: #fdd835;
    /* text-shadow: 2px 2px 8px rgba(255, 204, 112, 0.5); */
    animation: fadeInDown 1.5s ease-out;
  }

  @media screen and (max-width: 768px) {

    h1 {
      font-size: 1.9rem;
      margin: 1.4rem 0;
    }
  }
  
  

/*-- special tour section --*/

.destinations {
    display: flex;
    flex-wrap: wrap;
    gap: 2rem;
    justify-content: center;
    align-items: flex-start;
    padding: 4rem 2rem;
    max-width: 1200px;
    margin: auto;
  }
  
  .left-content {
    padding-top: 0px;
    flex: 1 1 350px;
    max-width: 400px;
  }
  
  .tagline {
    font-size: 0.85rem;
    color: #f97316;
    font-weight: bold;
    letter-spacing: 1px;
  }
  .tagline h3{
    font-family: "Playfair Display", "serif";
    cursor: default;
    /* text-align: center; */
    font-size: 45px;
    font-weight: 800;
    text-transform: uppercase;
    color: #fdd835;
  }
  
  .left-content h2 {
    cursor: default;
    color: #fff;
    font-size: 2.5rem;
  }
  
  .left-content p {
    cursor: default;
    font-size: 18px;
    font-family: emojis;
    color: #fff;
  }
  .button{
    margin: 6px;
    padding-left: 110px;
  }
  
  .package-btn {
    background-color: #fdd835;
    color: #000;
    padding: 0.75rem 1.25rem;
    border: none;
    border-radius: 0.4rem;
    text-decoration: none;
    font-weight: 600;
    box-shadow: 0 4px 10px rgba(0, 0, 0, 0.2);
    transform: scale(1);
    display: inline-block;
    /* margin-top: 0.5rem; */
    transition: all 0.3s ease;
  }
  
  .package-btn:hover {
    background-color: #fff176;
    color: #000;
    transform: scale(1.05);
    box-shadow: 0 6px 15px rgba(0, 0, 0, 0.3);
  }
  
  .card {
    cursor: pointer;
    position: relative;
    background-size: cover;
    background-position: center;
    height: 280px;
    border-radius: 2rem;
    display: flex;
    align-items: end;
    overflow: hidden;
    transition: transform 0.3s ease;
  }
  
  .card span {
    text-align: center;
    width: 100%;
    cursor: default;
    color: #fdd835;
    background: rgba(0, 0, 0, 0.6);
    font-weight: bold;
    padding: 1rem;
    text-shadow: 0 0 10px rgba(0,0,0,0.5);
  }
  
  .card:hover {
    transform: scale(1.03);
    box-shadow: 0 0 30px rgba(253, 216, 53, 0.7);
    transition: transform 0.3s ease, box-shadow 0.3s ease;
  }
  
  .london {
    width: 100%;
    margin-top: 20px;
  }
  
  .right-cards {
    flex: 1 1 500px;
    display: flex;
    flex-direction: column;
    gap: 1rem;
  }
  
  .top-row,
  .bottom-row {
    display: flex;
    gap: 1rem;
  }
  
  .top-row .card,
  .bottom-row .card {
    flex: 1;
  }
  
 
/* Footer styles */
#footer {
  background: linear-gradient(to left bottom, #fff176 20%, #fdd835 80%);
  position: relative;
  display: flex;
  flex-wrap: wrap;
  align-items: flex-start;
  justify-content: center;
  gap: 50px;
  padding: 60px 30px 20px;
  text-align: left;
}

#footer > img {
  position: absolute;
  left: 0;
  height: 100%;
  z-index: 0;
  opacity: 0.1;
}

#f1 img {
  background-color: #000;
  height: 150px;
}

#f2, #f3, #f4 {
  color: #000;
  cursor: default;
  width: fit-content;
  position: relative;
  z-index: 2;
}

#f2 h3, #f3 h3 {
  font-size: 20px;
  text-transform: uppercase;
  font-weight: 700;
  margin-bottom: 15px;
}

#f2 a {
  display: block;
  text-decoration: none;
  color: #333;
  margin-bottom: 8px;
  font-weight: 500;
  transition: color 0.3s ease;
}

#f2 a:hover {
  color: #000;
}

#f3 #qr {
  width: 100px;
  margin-bottom: 10px;
}

#f3 p {
  font-size: 14px;
  font-weight: 500;
}

#f4 h4 {
  font-size: 16px;
  font-weight: 600;
  line-height: 22px;
}

.address-icon {
  width: 18px;
  vertical-align: middle;
  margin-right: 6px;
}

#f4 a {
  display: inline-block;
  color: #000;
  font-weight: 600;
  text-decoration: underline;
  margin-top: 4px;
}

#f5 {
  width: 100%;
  text-align: center;
  margin-top: 40px;
  z-index: 2;
  color: #333;
  font-size: 14px;
  font-weight: 600;
}

@media (max-width: 768px) {
  #nav {
    padding: 10px 20px;
    flex-wrap: wrap;
    position: fixed;
    background-color: rgba(0, 0, 0, 0.85);
    gap: 15px;
  }

  #nav img {
    height: 80px;
    width: 75px;
  }

  #nav h4 {
    font-size: 12px;
  }

  .nav-button {
    display: none;
  }

  #hamburger {
    display: block;
    top: 20px;
    right: 16px;
  }
  #footer {
    flex-direction: column;
    align-items: center;
    gap: 30px;
    padding: 40px 20px;
    text-align: center;
  }

  #f2, #f3, #f4 {
    width: 100%;
    text-align: center;
  }

  #f2 a, #f3 p, #f4 h4 {
    font-size: 13px;
  }

  #f5 {
    margin-top: 20px;
    font-size: 13px;
  }

  #footer > img {
    display: none;
  }
}

