/* ========================================================================
 *  ✅ INTRODUCTION STYLES (v3.2 - Final Refined Masterpiece) ✅
 * ========================================================================
*/

/* --- Main Layout --- */
.content-and-gallery-wrapper {
  display: grid;
  grid-template-columns: 1fr 1.5fr;
  gap: 40px;
  padding: 50px 30px;
  max-width: 1600px;
  margin: 0 auto;
  align-items: start;
}

/* --- Animated Headline Styling (Desktop) --- */
.animated-headline .line {
  font-family: 'Playfair Display', serif;
  font-weight: 500;
  line-height: 1.1;
  color: #222;
  text-transform: uppercase;
  letter-spacing: 0.05em;
  opacity: 0; 
  visibility: hidden;
  font-size: 4rem; 
}

/* --- Static Text Styling (Desktop) --- */
.static-text {
  margin-top: 2em;
}

.hero-subtitle {
  font-size: 2rem;
  font-weight: 400;
  line-height: 1.3;
  margin-bottom: 1.5rem;
}

.static-text p {
  font-family: 'Open Sans', sans-serif;
  font-size: 1.1rem;
  line-height: 1.8;
  color: #4a4a4a;
}


/* ==========================================================
 *  ✅ RESPONSIVE RULES (CONSOLIDATED & PERFECTED)
 * ========================================================== */

/* --- RULE 1: LARGE TABLETS (e.g., iPad Pro) --- */
@media (min-width: 992px) and (max-width: 1366px) {
  .animated-headline .line {
    font-size: 2.3rem !important; 
  }
}

/* --- RULE 2: SMALL TABLETS & LANDSCAPE PHONES --- */
@media (min-width: 768px) and (max-width: 991px) {
  .animated-headline .line {
    font-size: 1.2rem !important; 
  }
}

      
/* --- RULE 3: PORTRAIT PHONES (and smaller) --- */
@media (max-width: 767px) {
  
  /* Make the layout stack into a single column */
  .content-and-gallery-wrapper {
    grid-template-columns: 1fr;
  }

  /* Adjust headline font size for mobile */
  .animated-headline .line {
    font-size: 2.5rem !important;
  }
  
  /* Adjust subtitle font size for mobile */
  .hero-subtitle {
    font-size: 1.5rem; 
  }

  /*
  // --- ✅ FINAL CLS FIX - MOVED INSIDE THE ROOM ✅ ---
  // This rule now ONLY applies on mobile screens.
  */
  .animated-headline {
    min-height: 150px; 
    position: relative;
  }
  
} /* The VIP room correctly ends here, after our new rule */

/* Show extra SEO text only on desktop */
.desktop-only { display: block; }

@media (max-width: 767px) {
  .desktop-only { display: none !important; }
}

    