@import url("./header.css");
@import url("./navbar.css");
@import url("./footer.css");
@import url("./contact-expert.css");

/* ========================================
   DESTINATION GUIDE PAGE STYLES
   ======================================== */

/* Hero Section */
.hero-section {
  position: relative;
  width: 100%;
  height: 350px;
  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;
  top: 0;
  left: 0;
  right: 0;
  bottom: 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: 'Poppins', sans-serif;
  font-size: 1.15rem;
  font-weight: 400;
  line-height: 1.6;
  margin: 0;
}

/* ========================================
   CONTENT SECTIONS - ALTERNATING LAYOUT
   ======================================== */

/* Base Content Section */
.content-section {
  background-color: #000000;
  padding: 100px 0;
  margin: 0;
}

/* Remove extra spacing between sections */
.content-section + .content-section {
  padding-top: 100px;
}

/* Container - Add padding */
.content-section .container {
  padding: 0 40px;
  max-width: 100%;
}

/* Content Wrapper - Flexbox for alignment */
.content-wrapper {
  display: flex;
  align-items: center;
  gap: 60px;
  max-width: 1400px;
  margin: 0 auto;
}

/* Content Text Column */
.content-text {
  flex: 1;
  color: #ffffff;
}

.content-text h2 {
  font-family: Coldiac;
  font-size: 2.5rem;
  font-weight: 400;
  text-transform: uppercase;
  color: #d4af37;
  margin-bottom: 30px;
  line-height: 1.2;
}

.content-text p {
  font-family: 'Poppins', sans-serif;
  font-size: 1rem;
  line-height: 1.8;
  color: #ffffff;
  margin-bottom: 20px;
}

.content-text p:last-child {
  margin-bottom: 0;
}

.content-text a {
  color: #d4af37;
  text-decoration: none;
  transition: color 0.3s ease;
  font-weight: 500;
}

.content-text a:hover {
  color: #d4af37;
}

/* Content Image Column */
.content-image {
  flex: 0 0 450px;
  position: relative;
  border-radius: 15px;
  overflow: hidden;
  box-shadow: 0 15px 40px rgba(212, 175, 55, 0.15);
}

.content-image img {
  width: 100%;
  height: 380px;
  object-fit: cover;
  display: block;
  transition: transform 0.6s ease;
}

.content-image:hover img {
  transform: scale(1.05);
}

/* ========================================
   SECTION VARIATIONS
   ======================================== */

/* Image appears first in DOM = Image on LEFT */
.content-section.content-left .content-wrapper {
  flex-direction: row;
}

/* Text appears first in DOM = Image on RIGHT */
.content-section.content-right .content-wrapper {
  flex-direction: row;
}

/* ========================================
   CTA SECTION
   ======================================== */

.cta-section {
  background-color: #000000;
  padding: 100px 0;
  text-align: center;
  border-top: 2px solid #d4af37;
}

.cta-section .container {
  padding: 0 40px;
}

.cta-content h2 {
  font-family: Coldiac;
  font-size: 2.5rem;
  font-weight: 400;
  text-transform: uppercase;
  color: #d4af37;
  margin-bottom: 25px;
}

.cta-content p {
  font-family: McQueen;
  font-size: 1.1rem;
  color: #ffffff;
  max-width: 800px;
  margin: 0 auto 40px;
  line-height: 1.8;
}

.cta-buttons {
  display: flex;
  gap: 20px;
  justify-content: center;
  align-items: center;
  flex-wrap: wrap;
}

.btn-primary-cta {
  display: inline-block;
  padding: 14px 35px;
  font-family: McQueen;
  font-size: 1rem;
  font-weight: 500;
  background-color: #ffffff;
  color: #d4af37;
  border: 2px solid #ffffff;
  border-radius: 50px;
  text-decoration: none;
  transition: all 0.3s ease;
}

.btn-primary-cta:hover {
  background-color: #d4af37;
  color: #000000;
  border-color: #d4af37;
}

.btn-secondary-cta {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  padding: 14px 35px;
  font-family: McQueen;
  font-size: 1rem;
  font-weight: 500;
  background-color: transparent;
  color: #d4af37;
  border: 2px solid #d4af37;
  border-radius: 50px;
  text-decoration: none;
  transition: all 0.3s ease;
}

.btn-secondary-cta:hover {
  background-color: #d4af37;
  color: #000000;
}

/* ========================================
   RESPONSIVE STYLES
   ======================================== */

/* Large Desktop */
@media (min-width: 1400px) {
  .content-wrapper {
    gap: 80px;
  }
  
  .content-image {
    flex: 0 0 500px;
  }
}

/* Laptop/Desktop */
@media (min-width: 992px) and (max-width: 1399px) {
  .content-wrapper {
    gap: 50px;
  }

  .content-text h2 {
    font-size: 2.2rem;
  }

  .content-image {
    flex: 0 0 400px;
  }

  .content-image img {
    height: 350px;
  }
}

/* Tablet */
@media (max-width: 991px) {
  .hero-section {
    height: 280px;
  }

  .hero-content {
    padding: 0 40px;
  }

  .hero-content h1 {
    font-size: 2.5rem;
  }

  .hero-content p {
    font-size: 1rem;
  }

  .content-section {
    padding: 80px 0;
  }

  .content-section + .content-section {
    padding-top: 80px;
  }

  .content-section .container {
    padding: 0 30px;
  }

  /* Stack content vertically on tablet */
  .content-wrapper,
  .content-section.content-left .content-wrapper,
  .content-section.content-right .content-wrapper {
    flex-direction: column !important;
    gap: 40px;
  }

  .content-image {
    flex: 1;
    width: 100%;
  }

  .content-text h2 {
    font-size: 2rem;
  }

  .content-image img {
    height: 400px;
  }

  .cta-section {
    padding: 80px 0;
  }

  .cta-content h2 {
    font-size: 2rem;
  }

  .cta-content p {
    font-size: 1rem;
  }
}

/* Mobile */
@media (max-width: 767px) {
  .hero-section {
    height: 240px;
  }

  .hero-content {
    padding: 0 30px;
  }

  .hero-content h1 {
    font-size: 2rem;
  }

  .hero-content p {
    font-size: 0.95rem;
  }

  .content-section {
    padding: 60px 0;
  }

  .content-section + .content-section {
    padding-top: 60px;
  }

  .content-section .container {
    padding: 0 20px;
  }

  .content-wrapper {
    gap: 30px;
  }

  .content-text h2 {
    font-size: 1.8rem;
    margin-bottom: 20px;
  }

  .content-text p {
    font-size: 0.95rem;
    margin-bottom: 15px;
  }

  .content-image img {
    height: 350px;
    border-radius: 15px;
  }

  .cta-section {
    padding: 60px 0;
  }

  .cta-section .container {
    padding: 0 20px;
  }

  .cta-content h2 {
    font-size: 1.8rem;
  }

  .cta-content p {
    font-size: 0.95rem;
    margin-bottom: 30px;
  }

  .cta-buttons {
    flex-direction: column;
    gap: 15px;
  }

  .btn-primary-cta,
  .btn-secondary-cta {
    width: 100%;
    max-width: 300px;
    text-align: center;
    justify-content: center;
  }
}

/* Small Mobile */
@media (max-width: 576px) {
  .hero-section {
    height: 200px;
  }

  .hero-content h1 {
    font-size: 1.75rem;
  }

  .hero-content p {
    font-size: 0.9rem;
  }

  .content-text h2 {
    font-size: 1.5rem;
  }

  .content-text p {
    font-size: 0.9rem;
  }

  .content-image img {
    height: 300px;
    border-radius: 12px;
  }

  .cta-content h2 {
    font-size: 1.5rem;
  }

  .cta-content p {
    font-size: 0.9rem;
  }

  .btn-primary-cta,
  .btn-secondary-cta {
    padding: 12px 30px;
    font-size: 0.9rem;
  }
}

/* ========================================
   DARK BACKGROUND CONSISTENCY
   ======================================== */

body.destination-guide-page {
  background-color: #000000;
}

.main {
  background-color: #000000;
}

.tour-intro {
  max-width: 1200px;
  margin: 0 auto 60px;
  text-align: center;
}

.tour-intro h2 {
  font-family: Coldiac;
  font-size: 42px;
  font-weight: 400;
  text-transform: uppercase;
  color: #d4af37;
  margin-bottom: 25px;
  margin-top: 30px;
}

.tour-intro p {
  font-family: 'Poppins', sans-serif;
  font-size: 18px;
  line-height: 1.8;
  color: #ffffff;
  margin-bottom: 20px;
}