@import url("./header.css");
@import url("./navbar.css");
@import url("./footer.css");
@import url("./contact-form.css");

:root { 
  --background-color: #ffffff; /* Background color for the entire website, including individual sections */
  --default-color: #ffffff; /* Default color used for the majority of the text content across the entire website */
  --heading-color: #ffffff; /* Color for headings, subheadings and title throughout the website */
  --accent-color: #bb9a49; /* Accent color that represents your brand on the website. It's used for buttons, links, and other elements that need to stand out */
  --surface-color: #1a1a1a; /* The surface color is used as a background of boxed elements within sections, such as cards, icon boxes, or other elements that require a visual separation from the global background. */
  --contrast-color: #ffffff; /* Contrast color for text, ensuring readability against backgrounds of accent, heading, or default colors. */
}

/* Global body background */
body {
  background-color: #000000;
}
.justify-content-center{
    color: #ffffff;
    padding-top: 20px;
    padding-bottom: 20px;
}
/* ---------------------------------------------
   HERO SECTION
--------------------------------------------- */
.hero-section {
  position: relative;
  width: 100%;
  height: 350px;

  /* background-image is set per page inline */
  background-size: cover;
  background-position: center;
  background-repeat: no-repeat;

  display: flex;
  align-items: center;
  justify-content: flex-start;
  overflow: hidden;
  margin-top: 80px;
}

.hero-section::before {
  content: '';
  position: absolute;
  inset: 0;
  background: linear-gradient(to right, rgba(0, 0, 0, 0.5), rgba(0, 0, 0, 0.2));
  z-index: 1;
}

.hero-content {
  position: relative;
  z-index: 2;
  color: #ffffff;
  padding: 0 80px;
  max-width: 700px;
}

.hero-content h1 {
  font-family: Coldiac;
  font-size: 42px;
  font-weight: 600;
  text-transform: uppercase;
  margin-bottom: 15px;
  line-height: 1.2;
}

.hero-content p {
  font-family: McQueen;
  font-size: 1.15rem;
  font-weight: 400;
  line-height: 1.6;
  margin: 0;
}

/* Hero Responsive */
@media (max-width: 768px) {
  .hero-section {
    height: 280px;
  }

  .hero-content {
    padding: 0 40px;
  }

  .hero-content h1 {
    font-size: 2.5rem;
  }

  .hero-content p {
    font-size: 1rem;
  }
}

@media (max-width: 576px) {
  .hero-section {
    height: 240px;
  }

  .hero-content {
    padding: 0 30px;
  }

  .hero-content h1 {
    font-size: 2rem;
  }

  .hero-content p {
    font-size: 0.95rem;
  }
}

 .section-header {
      text-align: center;
      margin-bottom: 60px;
    }

    .section-header h2 {
      font-size: 42px;
      color: #d4af37;
      font-weight: 400;
      text-transform: uppercase;
      margin-bottom: 20px;
    }

    .section-header p {
      font-size: 1.1rem;
      color: #ffffff;
      max-width: 900px;
      margin: 0 auto 15px;
      line-height: 1.8;
    }

       /* Responsive Styles */
    @media (max-width: 992px) {

      .section-header h2 {
        font-size: 2rem;
      }
    }
        @media (max-width: 576px) {

      .section-header h2 {
        font-size: 1.8rem;
      }

      .section-header p {
        font-size: 1rem;
      }
       
        }
        
/*------------------------------------------------------------------------------ 
THE WORLD, CURATED (Destinations Grid Section)
------------------------------------------------------------------------------*/

.destination-grid-section {
  padding: 80px 0;
  background-color: #000000;
}

.section-header {
  text-align: center;
  margin-bottom: 60px;
}

.section-header h2 {
  font-size: 2.5rem;
  color: #d4af37;
  font-weight: 300;
  text-transform: uppercase;
  margin-bottom: 20px;
}

.section-header p {
  font-size: 1.1rem;
  color: #ffffff;
  max-width: 900px;
  margin: 0 auto 15px;
  line-height: 1.8;
}

.destination-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 30px;
  max-width: 1200px;
  margin: 0 auto;
  padding: 0 15px;
}


.destination-card {
  position: relative;
  width: 100%;
  padding-bottom: 100%; /* Square aspect ratio */
  overflow: hidden;
  border-radius: 20px;
  cursor: pointer;
}

.destination-card-inner {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background-size: cover;
  background-position: center;
  transition: transform 0.5s ease;
}

.destination-card::before {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background: linear-gradient(to bottom, rgba(0, 0, 0, 0.3), rgba(0, 0, 0, 0.6));
  z-index: 1;
  transition: opacity 0.5s ease;
}

.destination-card:hover .destination-card-inner {
  transform: scale(1.1);
}

.destination-card:hover::before {
  opacity: 0.8;
}

.destination-overlay {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: flex-end;
  z-index: 2;
  padding: 40px 20px;
  text-align: center;
}

.destination-overlay h3 {
  font-size: 22px;
  font-family: Coldiac;
  color: #ffffff;
  font-weight: 400;
  text-transform: uppercase;
  text-shadow: 2px 2px 4px rgba(0, 0, 0, 0.5);
}

.destination-overlay p {
  font-size: 18px;
  font-family: McQueen;
  color: #ffffff;
  font-weight: 300;
  opacity: 0;
  transform: translateY(20px);
  transition: all 0.5s ease;
  text-shadow: 1px 1px 2px rgba(0, 0, 0, 0.5);
}

.destination-card:hover .destination-overlay p {
  opacity: 1;
  transform: translateY(0);
}


/* Button */
.view-all-destinations-btn {
  display: inline-block;
  padding: 13px 30px;
  font-family: McQueen;
  font-size: 16.56px;
  font-weight: 500;
  color: #d4af37;
  background-color: #ffffff;
  border: 2px solid #ffffff;
  border-radius: 50px;
  text-decoration: none;
  transition: all 0.3s ease;
}

.view-all-destinations-btn:hover {
  color: #121212;
}

/* Responsive */
@media (max-width: 992px) {
  .destination-grid {
    grid-template-columns: repeat(2, 1fr);
    gap: 20px;
  }

  .section-header h2 {
    font-size: 2rem;
  }

  .destination-overlay h3 {
    font-size: 1.5rem;
  }
}

@media (max-width: 576px) {
  .destination-grid {
    grid-template-columns: 1fr;
    gap: 15px;
  }

  .section-header h2 {
    font-size: 1.8rem;
  }

  .section-header p {
    font-size: 1rem;
  }

  .destination-overlay h3 {
    font-size: 1.3rem;
  }
}

/* =====================================================
   Destinations Grid — Page Specific Styles
   Used on: International Travel Agency in Gurgaon page
   ===================================================== */

/* Grid layout */
.destinations-grid{
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 22px;
  margin-top: 10px;
}

@media (max-width: 992px){
  .destinations-grid{
    grid-template-columns: repeat(2, 1fr);
  }
}

@media (max-width: 576px){
  .destinations-grid{
    grid-template-columns: 1fr;
  }
}

/* Clickable card wrapper */
.destination-card-link,
.contact-card-link{
  display: block;
  text-decoration: none;
  color: inherit;
}

/* Card container */
.destination-card{
  position: relative;
  width: 100%;
  padding-bottom: 100%; /* perfect square */
  overflow: hidden;
  border-radius: 20px;
  cursor: pointer;
}

/* Background image holder */
.destination-card-inner{
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  background-size: cover;
  background-position: center;
  background-repeat: no-repeat;
  transition: transform 0.6s ease;
}

/* Dark gradient overlay */
.destination-card::before{
  content: '';
  position: absolute;
  inset: 0;
  background: linear-gradient(
    to bottom,
    rgba(0,0,0,0.25),
    rgba(0,0,0,0.65)
  );
  z-index: 1;
  transition: opacity 0.4s ease;
}

/* Hover zoom */
.destination-card:hover .destination-card-inner{
  transform: scale(1.08);
}

.destination-card:hover::before{
  opacity: 0.85;
}

/* Text overlay */
.destination-overlay{
  position: absolute;
  inset: 0;
  z-index: 2;
  display: flex;
  flex-direction: column;
  justify-content: flex-end;
  align-items: center;
  padding: 38px 18px;
  text-align: center;
}

.destination-overlay h3{
  font-family: Coldiac, serif;
  font-size: 22px;
  font-weight: 400;
  text-transform: uppercase;
  color: #ffffff;
  margin-bottom: 6px;
  text-shadow: 2px 2px 4px rgba(0,0,0,0.6);
}

.destination-overlay p{
  font-family: McQueen, serif;
  font-size: 18px;
  font-weight: 300;
  color: #ffffff;
  opacity: 0;
  transform: translateY(14px);
  transition: all 0.4s ease;
  text-shadow: 1px 1px 3px rgba(0,0,0,0.6);
}

.destination-card:hover .destination-overlay p{
  opacity: 1;
  transform: translateY(0);
}

/* Supporting text block */
.lu-destinations-support{
  margin-top: 22px;
  text-align: center;
  padding: 22px 16px;
  border: 1px solid rgba(212,175,55,0.18);
  border-radius: 18px;
  background: rgba(255,255,255,0.03);
}

.lu-destinations-support h3{
  margin: 0 0 10px;
  color: #d4af37;
  font-family: Coldiac, serif;
  font-weight: 300;
  letter-spacing: 0.06em;
  text-transform: uppercase;
  font-size: 1.25rem;
}

.lu-destinations-support p{
  margin: 0 auto 10px;
  max-width: 980px;
  color: rgba(255,255,255,0.8);
  font-family: 'Poppins', sans-serif;
  font-weight: 300;
  line-height: 1.8;
}

.lu-destinations-cta a{
  color: #d4af37;
  text-decoration: none;
  border-bottom: 1px solid rgba(212,175,55,0.55);
  padding-bottom: 2px;
}

.lu-destinations-cta a:hover{
  border-bottom-color: #d4af37;
}




