/* ============================================================
   TRAVEL TOURS LANDING PAGE — styles.css
   Naming convention (for Dreamweaver editing):
   - Page sections:  #tt-header, #tt-intro, #tt-boxes, #tt-banner, #tt-footer
   - Components:     .tt-hero-title, .tt-box-card, .tt-box-img, .tt-box-body,
                     .tt-box-heading, .tt-box-text, .tt-box-btn,
                     .tt-wide-banner, .tt-footer-inner
   - Utility:        .tt-gold-line, .tt-section-label
   ============================================================ */

/* ---------- Reset & Base ---------- */
*, *::before, *::after {
  box-sizing: border-box;
  margin: 0;
  padding: 0;
}

html {
  font-size: 16px;
  scroll-behavior: smooth;
}

body {
  background-color: #0e0b08;
  color: #e8dcc8;
  font-family: 'Georgia', 'Times New Roman', serif;
  line-height: 1.7;
  -webkit-font-smoothing: antialiased;
}

a {
  color: inherit;
  text-decoration: none;
}

img {
  display: block;
  max-width: 100%;
  height: auto;
}

/* ---------- Gold Accent Line ---------- */
.tt-gold-line {
  display: block;
  width: 80px;
  height: 2px;
  background: linear-gradient(90deg, #b8922a, #f0c040, #b8922a);
  margin: 0 auto 1.2rem auto;
}

/* ---------- Section Label (small caps above heading) ---------- */
.tt-section-label {
  display: block;
  font-size: 0.72rem;
  letter-spacing: 0.22em;
  text-transform: uppercase;
  color: #c9a84c;
  margin-bottom: 0.5rem;
}

/* ============================================================
   #tt-header — Hero Section
   ============================================================ */
#tt-header {
  position: relative;
  width: 100%;
  /* Hero image fills the header; text overlays the sky area */
  background-color: #0e0b08;
  overflow: hidden;
}

/* The hero image itself */
#tt-header .tt-hero-img {
  width: 100%;
  display: block;
  /* Ensure image is never stretched taller than viewport */
  max-height: 90vh;
  object-fit: cover;
  object-position: center top;
}

/* Overlay gradient — darkens bottom so text above is readable */
#tt-header .tt-hero-overlay {
  position: absolute;
  inset: 0;
  /* Subtle dark vignette at top for title legibility */
  background: linear-gradient(
    to bottom,
    rgba(10, 7, 4, 0.52) 0%,
    rgba(10, 7, 4, 0.10) 38%,
    rgba(10, 7, 4, 0.00) 60%,
    rgba(10, 7, 4, 0.55) 100%
  );
  pointer-events: none;
}

/* Title block — positioned in the sky area (top portion) */
#tt-header .tt-hero-title-wrap {
  position: absolute;
  top: 6%;
  left: 0;
  right: 0;
  text-align: center;
  padding: 0 1rem;
  pointer-events: none;
}

#tt-header .tt-hero-title {
  font-size: clamp(1.6rem, 5vw, 3.4rem);
  font-weight: 700;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  color: #ffffff;
  text-shadow:
    0 2px 18px rgba(0,0,0,0.85),
    0 0 40px rgba(184,146,42,0.55);
  line-height: 1.2;
}

#tt-header .tt-hero-subtitle {
  margin-top: 0.5rem;
  font-size: clamp(0.85rem, 2.2vw, 1.2rem);
  letter-spacing: 0.18em;
  text-transform: uppercase;
  color: #f0c040;
  text-shadow: 0 1px 10px rgba(0,0,0,0.9);
}

/* ============================================================
   #tt-intro — Intro Text Block
   ============================================================ */
#tt-intro {
  background-color: #1a1208;
  border-top: 1px solid #3a2c14;
  border-bottom: 1px solid #3a2c14;
  padding: 3rem 1.5rem;
  text-align: center;
}

#tt-intro .tt-intro-inner {
  max-width: 820px;
  margin: 0 auto;
}

#tt-intro h2 {
  font-size: clamp(1.3rem, 3.5vw, 2rem);
  color: #f0c040;
  letter-spacing: 0.06em;
  margin-bottom: 0.8rem;
  text-transform: uppercase;
}

#tt-intro p {
  font-size: clamp(0.92rem, 2vw, 1.08rem);
  color: #d4c4a0;
  max-width: 680px;
  margin: 0 auto 1rem auto;
}

#tt-intro .tt-keywords {
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
  gap: 0.5rem 1rem;
  margin-top: 1.4rem;
}

#tt-intro .tt-keywords span {
  font-size: 0.78rem;
  letter-spacing: 0.14em;
  text-transform: uppercase;
  color: #c9a84c;
  border: 1px solid #3a2c14;
  padding: 0.3rem 0.8rem;
  border-radius: 2px;
  background: rgba(184,146,42,0.07);
}

/* ============================================================
   #tt-boxes — 4 Destination Cards (2×2 grid)
   ============================================================ */
#tt-boxes {
  background-color: #110e07;
  padding: 3rem 1.5rem 3.5rem;
}

#tt-boxes .tt-boxes-header {
  text-align: center;
  margin-bottom: 2.2rem;
}

#tt-boxes .tt-boxes-header h2 {
  font-size: clamp(1.2rem, 3vw, 1.8rem);
  color: #f0c040;
  text-transform: uppercase;
  letter-spacing: 0.08em;
}

/* Grid container */
.tt-boxes-grid {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 1.4rem;
  max-width: 1100px;
  margin: 0 auto;
}

/* Individual card */
.tt-box-card {
  background-color: #1c1509;
  border: 1px solid #3a2c14;
  border-radius: 4px;
  overflow: hidden;
  transition: transform 0.25s ease, box-shadow 0.25s ease;
  display: flex;
  flex-direction: column;
}

.tt-box-card:hover {
  transform: translateY(-4px);
  box-shadow: 0 8px 32px rgba(184,146,42,0.22);
}

/* Card image */
.tt-box-img {
  width: 100%;
  aspect-ratio: 4 / 3;
  object-fit: cover;
  object-position: center;
  display: block;
}

/* Card body */
.tt-box-body {
  padding: 1.1rem 1.2rem 1.4rem;
  flex: 1;
  display: flex;
  flex-direction: column;
}

.tt-box-heading {
  font-size: clamp(1rem, 2.2vw, 1.25rem);
  color: #f0c040;
  text-transform: uppercase;
  letter-spacing: 0.07em;
  margin-bottom: 0.5rem;
}

.tt-box-text {
  font-size: 0.9rem;
  color: #c4b490;
  flex: 1;
  margin-bottom: 1rem;
}

/* CTA button on each card */
.tt-box-btn {
  display: inline-block;
  align-self: flex-start;
  background: linear-gradient(135deg, #b8922a 0%, #f0c040 50%, #b8922a 100%);
  color: #0e0b08;
  font-size: 0.8rem;
  font-weight: 700;
  letter-spacing: 0.14em;
  text-transform: uppercase;
  padding: 0.6rem 1.4rem;
  border-radius: 2px;
  transition: opacity 0.2s ease, transform 0.2s ease;
}

.tt-box-btn:hover {
  opacity: 0.88;
  transform: scale(1.03);
}

/* ============================================================
   #tt-banner — Second Wide Image Banner
   ============================================================ */
#tt-banner {
  position: relative;
  width: 100%;
  overflow: hidden;
  background-color: #0e0b08;
}

.tt-wide-banner {
  width: 100%;
  display: block;
  max-height: 520px;
  object-fit: cover;
  object-position: center 30%;
}

/* Dark overlay on wide banner */
#tt-banner .tt-banner-overlay {
  position: absolute;
  inset: 0;
  background: linear-gradient(
    to bottom,
    rgba(10,7,4,0.45) 0%,
    rgba(10,7,4,0.10) 40%,
    rgba(10,7,4,0.55) 100%
  );
  pointer-events: none;
}

/* Text centred on the wide banner */
#tt-banner .tt-banner-text {
  position: absolute;
  bottom: 12%;
  left: 0;
  right: 0;
  text-align: center;
  padding: 0 1rem;
  pointer-events: none;
}

#tt-banner .tt-banner-text h3 {
  font-size: clamp(1.1rem, 3.5vw, 2.2rem);
  color: #ffffff;
  text-transform: uppercase;
  letter-spacing: 0.12em;
  text-shadow: 0 2px 16px rgba(0,0,0,0.85);
}

#tt-banner .tt-banner-text p {
  font-size: clamp(0.8rem, 1.8vw, 1rem);
  color: #f0c040;
  letter-spacing: 0.14em;
  margin-top: 0.4rem;
  text-shadow: 0 1px 10px rgba(0,0,0,0.9);
}

/* ============================================================
   #tt-footer — Footer
   ============================================================ */
#tt-footer {
  background-color: #0a0702;
  border-top: 1px solid #3a2c14;
  padding: 2.8rem 1.5rem 2rem;
  text-align: center;
}

.tt-footer-inner {
  max-width: 820px;
  margin: 0 auto;
}

#tt-footer h3 {
  font-size: clamp(1rem, 2.5vw, 1.4rem);
  color: #f0c040;
  text-transform: uppercase;
  letter-spacing: 0.1em;
  margin-bottom: 0.8rem;
}

#tt-footer p {
  font-size: 0.88rem;
  color: #9a8a6a;
  margin-bottom: 0.5rem;
}

#tt-footer .tt-footer-tagline {
  font-size: 0.78rem;
  color: #5a4e38;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  margin-top: 1.5rem;
  padding-top: 1.2rem;
  border-top: 1px solid #2a2010;
}

/* ============================================================
   RESPONSIVE — Mobile First adjustments
   ============================================================ */

/* Stack boxes to 1 column on small screens */
@media (max-width: 600px) {
  .tt-boxes-grid {
    grid-template-columns: 1fr;
  }

  #tt-header .tt-hero-title-wrap {
    top: 4%;
  }

  #tt-header .tt-hero-title {
    font-size: 1.5rem;
  }

  #tt-header .tt-hero-subtitle {
    font-size: 0.78rem;
  }

  .tt-wide-banner {
    max-height: 280px;
  }

  #tt-banner .tt-banner-text h3 {
    font-size: 1rem;
  }
}

/* Tablet: keep 2-col grid but tighten spacing */
@media (min-width: 601px) and (max-width: 900px) {
  .tt-boxes-grid {
    gap: 1rem;
  }
}
