: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 {
    width: 100%;
    background-color: var(--background-color);
    overflow-x: hidden;
  }
  
  body {
    min-height: 100vh;
  }
  
  #main {
    min-height: 100vh;
    padding-top: 126px;  
    pointer-events: auto !important; 
  }
  

  #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 X button */
#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;
  }
}

  .card {
    cursor: default;
    display: flex;
    flex-direction: row;
    margin: 2rem auto;
    max-width: 1000px;
    height: 350px; /* ✅ Fixed height */
    background: rgba(255, 255, 255, 0.05);
    backdrop-filter: blur(15px);
    border-radius: 20px;
    overflow: hidden;
    box-shadow: 0 8px 32px rgba(255, 255, 255, 0.1);
    transition: transform 0.4s ease, box-shadow 0.4s ease;
    animation: fadeInUp 1s ease forwards;
  }
  

  .card:hover {
    transform: scale(1.02) !important;
    box-shadow: 0 10px 40px rgba(255, 204, 112, 0.4) !important;
  }

  .card img {
    width: 40%;
    height: 100%; /* ✅ Full card height */
    object-fit: cover; /* ✅ Maintain image ratio nicely */
  }
  
  .card-content {
    padding: 1.2rem;
    width: 60%;
    height: 100%; /* ✅ Full height */
    overflow-y: auto; /* ✅ Scroll if content is more */
  }
  
  .card-content h2 {
    font-size: 1.8rem;
    margin-bottom: 0.5rem;
    color: #fdd835;
  }

  .card-content p strong{
    color: #fdd835;
  }
  .card-content p {
    font-family: 'DM Sans';
    font-size: 1.2rem;
    color: #fff;
    padding-top: 18px;
    overflow: hidden;
    text-overflow: ellipsis;
    display: -webkit-box;
    -webkit-line-clamp: 6; /* ✅ Only 6 lines shown */
    -webkit-box-orient: vertical;
  }
  

  @keyframes fadeInDown {
    0% { opacity: 0; transform: translateY(-30px); }
    100% { opacity: 1; transform: translateY(0); }
  }

  @keyframes fadeInUp {
    0% { opacity: 0; transform: translateY(30px); }
    100% { opacity: 1; transform: translateY(0); }
  }

  @media (max-width: 768px) {
    .card {
      flex-direction: column;
      height: auto; /* ✅ Let it adjust naturally on small screens */
    }
  
    .card img,
    .card-content {
      width: 100%;
      height: auto;
    }
  }
  


/* 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;
  }
}

