/* ========================================
   DESTINATION GUIDE PAGE STYLES
   Used on: /destinations/croatia
   ======================================== */

body.destination-guide-page,
.main {
  background-color: #000000;
}

/* ========================================
   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;
  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: 40px;
  font-weight: 600;
  text-transform: uppercase;
  margin-bottom: 15px;
  line-height: 1.2;
}

.hero-content p {
  font-family: 'Poppins', sans-serif;
  font-size: 18px;
  font-weight: 400;
  line-height: 1.6;
  margin: 0;
}

/* ========================================
   INTRO SECTION
   ======================================== */

.tour-content-section {
  background-color: #000000;
  padding: 80px 0;
}

.tour-intro {
  max-width: 1200px;
  margin: 0 auto;
  text-align: center;
}

.tour-intro h2 {
  font-family: Coldiac;
  font-size: 36px;
  font-weight: 400;
  text-transform: uppercase;
  color: #d4af37;
  margin: 30px 0 25px;
}

.tour-intro p {
  font-family: 'Poppins', sans-serif;
  font-size: 18px;
  line-height: 1.8;
  color: #ffffff;
  margin-bottom: 20px;
}

.tour-intro a {
  color: #d4af37;
  text-decoration: none;
}

.tour-intro a:hover,
.tour-intro a:focus {
  color: #d4af37;
  text-decoration: none;
}

/* ========================================
   CONTENT SECTIONS
   ======================================== */

.content-section {
  background-color: #000000;
  padding: 100px 0;
  margin: 0;
}

.content-section + .content-section {
  padding-top: 100px;
}

.content-section .container {
  padding: 0 40px;
  max-width: 100%;
}

.content-wrapper {
  display: flex;
  align-items: center;
  gap: 60px;
  max-width: 1400px;
  margin: 0 auto;
}

.content-text {
  flex: 1;
  color: #ffffff;
}

.content-text h2 {
  font-family: Coldiac;
  font-size: 36px;
  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: 16px;
  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,
.content-text a:focus {
  color: #d4af37;
  text-decoration: none;
}

.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);
}

/* Layout helpers */
.content-section.content-left .content-wrapper,
.content-section.content-right .content-wrapper {
  flex-direction: row;
}

/* Text-only sections (no image) — left aligned, full width */
.content-section.content-text-only .content-wrapper {
  max-width: 1400px;
  margin: 0;
}

.content-section.content-text-only .content-text {
  text-align: left;
}

/* ========================================
   FAQ SECTION
   ======================================== */

.luxury-faq-section {
  background-color: #000000;
  padding: 80px 0;
}

.luxury-faq-section .container {
  padding: 0 40px;
}

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

.faq-header h2 {
  font-family: Coldiac;
  font-size: 42px;
  font-weight: 400;
  text-transform: uppercase;
  color: #d4af37;
  margin: 0;
}

.faq-wrapper {
  max-width: 1200px;
  margin: 0 auto;
}

.faq-item {
  background-color: #1a1a1a;
  border-radius: 8px;
  margin-bottom: 20px;
  overflow: hidden;
  transition: all 0.3s ease;
}

.faq-question {
  display: flex;
  justify-content: space-between;
  align-items: center;
  padding: 25px 30px;
  cursor: pointer;
  transition: all 0.3s ease;
}

.faq-question h3 {
  font-family: McQueen;
  font-size: 20px;
  font-weight: 500;
  color: #ffffff;
  margin: 0;
  padding-right: 20px;
  text-transform: none;
}

.faq-question i {
  font-size: 1.2rem;
  color: #ffffff;
  transition: transform 0.3s ease;
  flex-shrink: 0;
}

.faq-item.active .faq-question i {
  transform: rotate(180deg);
}

.faq-answer {
  max-height: 0;
  overflow: hidden;
  transition: max-height 0.3s ease, padding 0.3s ease;
}

.faq-item.active .faq-answer {
  max-height: 500px;
  padding: 0 30px 25px 30px;
}

.faq-answer p {
  font-family: 'Poppins', sans-serif;
  font-size: 0.95rem;
  line-height: 1.7;
  color: #cccccc;
  margin: 0;
}


/* ========================================
   RESPONSIVE
   ======================================== */

@media (min-width: 1400px) {
  .content-wrapper {
    gap: 80px;
  }

  .content-image {
    flex: 0 0 500px;
  }
}

@media (min-width: 992px) and (max-width: 1399px) {
  .content-wrapper {
    gap: 50px;
  }

  .content-text h2 {
    font-size: 36px;
  }

  .content-image {
    flex: 0 0 400px;
  }

  .content-image img {
    height: 350px;
  }
}

@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;
  }

  .tour-content-section {
    padding: 70px 0;
  }

  .content-section {
    padding: 80px 0;
  }

  .content-section + .content-section {
    padding-top: 80px;
  }

  .content-section .container,
  .luxury-faq-section .container {
    padding: 0 30px;
  }

  .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,
  .cta-section h3 {
    font-size: 2rem;
  }

  .content-image img {
    height: 400px;
  }

  .tour-intro h2,
  .faq-header h2 {
    font-size: 2rem;
  }

  .tour-intro p,
  .cta-section p {
    font-size: 1rem;
  }

  .cta-section {
    padding: 80px 0;
  }
}

@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;
  }

  .tour-content-section {
    padding: 60px 0;
  }

  .content-section {
    padding: 60px 0;
  }

  .content-section + .content-section {
    padding-top: 60px;
  }

  .content-section .container,
  .luxury-faq-section .container {
    padding: 0 20px;
  }

  .content-wrapper {
    gap: 30px;
  }

  .content-text h2,
  .cta-section h3 {
    font-size: 1.8rem;
    margin-bottom: 20px;
  }

  .content-text p,
  .tour-intro p {
    font-size: 0.95rem;
    margin-bottom: 15px;
  }

  .content-image img {
    height: 350px;
    border-radius: 15px;
  }

  .tour-intro h2,
  .faq-header h2 {
    font-size: 1.8rem;
  }

  .faq-question {
    padding: 20px;
  }

  .faq-question h3 {
    font-family: McQueen;
    font-size: 1rem;
  }

  .faq-item.active .faq-answer {
    padding: 0 20px 20px 20px;
  }

  .faq-answer p {
    font-size: 0.92rem;
  }

  .cta-section {
    padding: 60px 0;
  }

  .cta-section p {
    font-size: 0.95rem;
    margin-bottom: 30px;
  }

  .cta-section .btn {
    width: 100%;
    max-width: 300px;
    text-align: center;
    justify-content: center;
  }
}

@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,
  .cta-section h3,
  .tour-intro h2,
  .faq-header h2 {
    font-size: 1.5rem;
  }

  .content-text p,
  .tour-intro p,
  .cta-section p {
    font-size: 0.9rem;
  }

  .content-image img {
    height: 300px;
    border-radius: 12px;
  }

  .faq-question h3 {
    font-size: 0.95rem;
  }

  .faq-answer p {
    font-size: 0.9rem;
  }

  .cta-section .btn {
    padding: 12px 30px;
    font-size: 0.9rem;
  }
}