@import url("./header.css");
@import url("./navbar.css");
@import url("./footer.css");
@import url("./contact-form.css");


/* Global Colors - The following color variables are used throughout the website. Updating them here will change the color scheme of the entire website */
:root { 
  --background-color: #ffffff; /* Background color for the entire website, including individual sections */
  --default-color: #35211f; /* Default color used for the majority of the text content across the entire website */
  --heading-color: #200f0d; /* Color for headings, subheadings and title throughout the website */
  --accent-color: #f95e4d; /* 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: #ffffff; /* 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. */
}




/* ---------------------------------------------
   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;
      }
              .destinations-grid {
        grid-template-columns: 1fr;
        gap: 15px;
      }
        }
        
/*------------------------------------------------------------------------------ 
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);
}


/* 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;
  }
}
