/* =========================================== */
/* LUXURY SECTION TITLES - UNIFIED DESIGN SYSTEM */
/* Consistent two-line title format for all sections */
/* Pattern: Gold Subtitle + Large Bold Title */
/* =========================================== */

/* ========================================= */
/* SECTION TITLE CONTAINER */
/* ========================================= */
.section-title-block {
  text-align: center;
  margin-bottom: 3.5rem;
}

/* Left-aligned version for specific sections */
.section-title-block.text-left {
  text-align: left;
}

/* ========================================= */
/* GOLD SUBTITLE (Top Line) */
/* Uppercase, letter-spaced, brand gold color */
/* ========================================= */
.section-subtitle {
  /* Typography */
  font-size: 0.95rem;
  font-weight: 600;
  text-transform: uppercase;
  letter-spacing: 2px;
  line-height: 1;
  
  /* Color */
  color: #bc6c25;
  
  /* Spacing */
  margin: 0 0 0.5em 0;
  padding: 0;
  
  /* Visual refinement */
  opacity: 0.95;
}

/* ========================================= */
/* MAIN TITLE (Bottom Line) */
/* Large, bold, deep blue, evocative phrases */
/* ========================================= */
.section-main-title {
  /* Typography */
  font-family: 'Playfair Display', serif;
  font-size: 2.8rem;
  font-weight: 900;
  line-height: 1.05;
  text-transform: none;
  
  /* Color */
  color: #172139;
  
  /* Spacing */
  margin: 0 0 1.2em 0;
  padding: 0;
  
  /* Visual refinement */
  text-rendering: optimizeLegibility;
  -webkit-font-smoothing: antialiased;
}

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

/* Tablet */
@media (max-width: 1024px) {
  .section-main-title {
    font-size: 2.4rem;
  }
  
  .section-title-block {
    margin-bottom: 3rem;
  }
}

/* Mobile */
@media (max-width: 768px) {
  .section-subtitle {
    font-size: 0.85rem;
    letter-spacing: 1.5px;
  }
  
  .section-main-title {
    font-size: 2rem;
    line-height: 1.1;
  }
  
  .section-title-block {
    margin-bottom: 2.5rem;
  }
}

/* Small mobile */
@media (max-width: 480px) {
  .section-main-title {
    font-size: 1.75rem;
  }
  
  .section-subtitle {
    font-size: 0.8rem;
  }
}

/* ========================================= */
/* ACCESSIBILITY */
/* ========================================= */

/* High contrast mode */
@media (prefers-contrast: high) {
  .section-main-title {
    color: #000000;
  }
  
  .section-subtitle {
    opacity: 1;
  }
}

/* ========================================= */
/* USAGE EXAMPLES (HTML) */
/* ========================================= */

/*
<!-- Activities Section Title -->
<div class="section-title-block">
  <p class="section-subtitle">Agafay Marrakech Desert</p>
  <h2 class="section-main-title">Découvrez Nos Activités D'Exception dans le Désert</h2>
</div>

<!-- Packages Section Title -->
<div class="section-title-block">
  <p class="section-subtitle">Best Packages</p>
  <h2 class="section-main-title">Nos Meilleures Formules Pour Découvrir Agafay</h2>
</div>

<!-- Gallery Section Title -->
<div class="section-title-block">
  <p class="section-subtitle">Galerie</p>
  <h2 class="section-main-title">Galerie de Souvenirs Inoubliables</h2>
</div>

<!-- FAQ Section Title -->
<div class="section-title-block">
  <p class="section-subtitle">FAQ</p>
  <h2 class="section-main-title">Tout Savoir Sur L'Expérience Agafay</h2>
</div>
*/
