/*
Theme Name: Bridget Travel
Theme URI: https://travel.cgmtx.com
Description: Caribbean travel agent theme for Bridget Thompson Travel. Child of Astra. Pre-configured with matching colors, layout, and custom post types for deals, destinations, and testimonials.
Author: Chuck
Template: astra
Version: 1.0.0
Text Domain: bridget-travel
*/

/* ================================================================
   CARIBBEAN PALETTE — Bridget's updated look
   ================================================================ */
@import url('https://fonts.googleapis.com/css2?family=Poppins:wght@300;400;600;700&display=swap');

:root {
  --bt-sand:        #f4e3c3;
  --bt-sand-light:  #f9efd6;
  --bt-ocean:       #007c91;
  --bt-ocean-dark:  #003b44;
  --bt-ocean-mid:   #00bcd4;
  --bt-sunset:      #ff7a00;
  --bt-sunset-dark: #d96500;
  --bt-ink:         #333333;
}

body {
  background: #fff;
  color: var(--bt-ink);
  font-family: 'Poppins', system-ui, -apple-system, sans-serif;
  line-height: 1.6;
}

h1, h2, h3, h4 {
  color: var(--bt-ocean);
  font-family: Georgia, 'Times New Roman', serif;
  line-height: 1.2;
}

a { color: var(--bt-ocean); }
a:hover { color: var(--bt-sunset); }

/* ================================================================
   HERO
   ================================================================ */
.bt-hero {
  position: relative;
  color: #fff;
  text-align: center;
  min-height: 100vh;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  padding: 4rem 1.5rem;
  background-size: cover;
  background-position: center;
}

.bt-hero::before {
  content: '';
  position: absolute; inset: 0;
  background: linear-gradient(rgba(0, 0, 0, 0.15), rgba(0, 0, 0, 0.15));
}

.bt-hero > * { position: relative; z-index: 1; }

.bt-hero h1 {
  color: #fff;
  font-size: clamp(2.2rem, 5vw, 3.8rem);
  margin: 0 auto 1rem;
  max-width: 48rem;
}

.bt-hero p.lead {
  font-size: clamp(1.05rem, 1.4vw, 1.25rem);
  max-width: 36rem;
  margin: 0 auto 2rem;
  color: rgba(255,255,255,0.95);
}

.bt-hero .bt-btn-group {
  display: flex; gap: 1rem; justify-content: center; flex-wrap: wrap;
}

/* ================================================================
   BUTTONS
   ================================================================ */
.bt-btn {
  display: inline-block;
  padding: 0.85rem 1.75rem;
  border-radius: 999px;
  font-weight: 600;
  text-decoration: none;
  transition: all 0.2s;
  box-shadow: 0 4px 12px rgba(10, 106, 163, 0.15);
}

.bt-btn-primary {
  background: var(--bt-sunset);
  color: #fff;
}
.bt-btn-primary:hover {
  background: var(--bt-sunset-dark);
  color: #fff;
  transform: translateY(-1px);
}

.bt-btn-secondary {
  background: #fff;
  color: var(--bt-ocean);
}
.bt-btn-secondary:hover {
  background: var(--bt-sand);
  color: var(--bt-ocean);
}

/* ================================================================
   SECTIONS
   ================================================================ */
.bt-section {
  padding: 4rem 1.5rem;
}
.bt-section-inner {
  max-width: 72rem;
  margin: 0 auto;
}

/* Middle sections get a sand-colored band */
.bt-section.bg-sand       { background: var(--bt-sand); }
.bt-section.bg-ocean-light{ background: var(--bt-sand); }

/* Featured Deals, Testimonials, CTA sit inside a continuous water gradient.
   Each class below acts as one slice of that gradient. */
.bt-section.bg-ocean {
  background: linear-gradient(to bottom, var(--bt-ocean-mid) 0%, var(--bt-ocean-dark) 100%);
  color: #fff;
}
.bt-section.bg-ocean h2   { color: #fff; }

.bt-section h2 {
  font-size: clamp(1.75rem, 3vw, 2.5rem);
  text-align: center;
  margin-bottom: 2.5rem;
}

/* ================================================================
   GRID & CARDS
   ================================================================ */
.bt-grid {
  display: grid;
  gap: 1.5rem;
  grid-template-columns: repeat(auto-fit, minmax(260px, 1fr));
}

.bt-card {
  background: #fff;
  border-radius: 14px;
  overflow: hidden;
  box-shadow: 0 6px 20px rgba(10, 106, 163, 0.08);
  transition: box-shadow 0.2s, transform 0.2s;
  display: flex; flex-direction: column;
}

.bt-card:hover {
  box-shadow: 0 12px 28px rgba(10, 106, 163, 0.15);
  transform: translateY(-2px);
}

.bt-card-image {
  aspect-ratio: 4 / 3;
  background: var(--bt-ocean-light);
  overflow: hidden;
  position: relative;
}
.bt-card-image img {
  width: 100%; height: 100%; object-fit: cover;
  transition: transform 0.4s;
}
.bt-card:hover .bt-card-image img { transform: scale(1.05); }

.bt-card-image .bt-featured-badge {
  position: absolute; top: 0.75rem; left: 0.75rem;
  background: var(--bt-sunset); color: #fff;
  padding: 0.2rem 0.65rem;
  border-radius: 999px;
  font-size: 0.75rem;
  font-weight: 600;
}

.bt-card-body {
  padding: 1.25rem;
  display: flex; flex-direction: column;
  flex: 1;
}

.bt-card-body .bt-eyebrow {
  font-size: 0.7rem;
  text-transform: uppercase;
  letter-spacing: 0.05em;
  color: rgba(10, 106, 163, 0.6);
  font-weight: 600;
  margin-bottom: 0.25rem;
}

.bt-card-body h3 {
  font-size: 1.25rem;
  margin: 0 0 0.5rem;
  transition: color 0.2s;
}
.bt-card:hover .bt-card-body h3 { color: var(--bt-sunset); }

.bt-card-body p { margin: 0 0 0.5rem; color: rgba(26,43,58,0.7); font-size: 0.9rem; }
.bt-card-body .bt-price {
  margin-top: auto;
  padding-top: 0.75rem;
  color: var(--bt-ocean);
  font-weight: 700;
  font-size: 1.1rem;
}

/* Why-book cards — simpler, centered, with big emoji */
.bt-why-card {
  background: #fff;
  border-radius: 14px;
  padding: 1.75rem 1.25rem;
  text-align: center;
  box-shadow: 0 6px 20px rgba(10, 106, 163, 0.08);
}
.bt-why-card .bt-emoji {
  font-size: 2.25rem;
  display: block;
  margin-bottom: 0.75rem;
}
.bt-why-card p { margin: 0; font-weight: 500; }

/* Testimonials */
.bt-testimonial {
  background: #fff;
  border-radius: 14px;
  padding: 1.75rem 1.5rem;
  box-shadow: 0 6px 20px rgba(10, 106, 163, 0.08);
  display: flex; flex-direction: column;
}
.bt-testimonial blockquote {
  font-style: italic;
  margin: 0 0 1rem;
  flex: 1;
}
.bt-testimonial .bt-attribution {
  padding-top: 1rem;
  border-top: 1px solid var(--bt-ocean-light);
  font-size: 0.9rem;
}
.bt-testimonial .bt-author { color: var(--bt-ocean); font-weight: 600; }
.bt-testimonial .bt-trip { color: rgba(26,43,58,0.6); }

/* ================================================================
   ABOUT ME
   ================================================================ */
.bt-about-grid {
  display: grid;
  gap: 2rem;
  align-items: center;
  grid-template-columns: auto 1fr;
  max-width: 56rem; margin: 0 auto;
}
@media (max-width: 640px) {
  .bt-about-grid { grid-template-columns: 1fr; text-align: center; }
}
.bt-about-photo {
  width: 12rem; height: 12rem;
  border-radius: 999px;
  overflow: hidden;
  box-shadow: 0 6px 20px rgba(10, 106, 163, 0.15);
  margin: 0 auto;
}
.bt-about-photo img { width: 100%; height: 100%; object-fit: cover; }
.bt-about-text h2 { text-align: left; }
@media (max-width: 640px) {
  .bt-about-text h2 { text-align: center; }
}

/* ================================================================
   SINGLE DEAL / DESTINATION
   ================================================================ */
.bt-single {
  max-width: 56rem; margin: 0 auto; padding: 2rem 1.5rem;
}
.bt-single .bt-back {
  font-size: 0.9rem;
  color: var(--bt-sunset);
  text-decoration: none;
}
.bt-single .bt-back:hover { text-decoration: underline; }

.bt-single-hero {
  aspect-ratio: 16 / 9;
  border-radius: 14px;
  overflow: hidden;
  margin: 1rem 0 2rem;
  background: var(--bt-ocean-light);
}
.bt-single-hero img { width: 100%; height: auto; object-fit: cover; }

.bt-single h1 {
  font-size: clamp(2rem, 4vw, 3rem);
  margin: 0 0 1rem;
}

.bt-meta-row {
  display: flex; gap: 2rem; flex-wrap: wrap;
  margin: 1.5rem 0;
  padding: 1rem 0;
  border-top: 1px solid rgba(10, 106, 163, 0.1);
  border-bottom: 1px solid rgba(10, 106, 163, 0.1);
}
.bt-meta-row .bt-meta-label {
  font-size: 0.7rem;
  text-transform: uppercase;
  letter-spacing: 0.05em;
  color: rgba(10, 106, 163, 0.6);
  font-weight: 600;
}
.bt-meta-row .bt-meta-value {
  font-size: 1.1rem; color: var(--bt-ocean); font-weight: 600;
}

.bt-includes {
  background: #fff;
  border-radius: 14px;
  padding: 1.5rem;
  margin: 2rem 0;
}
.bt-includes h2 { text-align: left; font-size: 1.35rem; margin: 0 0 1rem; }
.bt-includes ul { list-style: none; padding: 0; margin: 0; }
.bt-includes li {
  display: flex; gap: 0.5rem; padding: 0.35rem 0;
}
.bt-includes li::before {
  content: '✓';
  color: var(--bt-sunset);
  font-weight: 700;
}

.bt-gallery {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(180px, 1fr));
  gap: 0.75rem;
  margin-top: 1.5rem;
}
.bt-gallery a {
  aspect-ratio: 1;
  border-radius: 10px;
  overflow: hidden;
  background: var(--bt-ocean-light);
  display: block;
}
.bt-gallery img { width: 100%; height: 100%; object-fit: cover; }

.bt-final-cta {
  text-align: center;
  margin-top: 3rem;
  padding-top: 2rem;
  border-top: 1px solid rgba(10, 106, 163, 0.1);
}

/* ================================================================
   CONTACT
   ================================================================ */
.bt-contact-form {
  background: #fff;
  border-radius: 14px;
  padding: 2rem;
  box-shadow: 0 6px 20px rgba(10, 106, 163, 0.08);
}
.bt-contact-form label {
  display: block;
  font-size: 0.9rem;
  font-weight: 500;
  color: var(--bt-ocean);
  margin-bottom: 0.25rem;
}
.bt-contact-form input[type="text"],
.bt-contact-form input[type="email"],
.bt-contact-form textarea {
  width: 100%;
  padding: 0.75rem 1rem;
  border: 1px solid rgba(10, 106, 163, 0.15);
  border-radius: 8px;
  background: #fff;
  font-family: inherit;
  font-size: 1rem;
  margin-bottom: 1rem;
  transition: border-color 0.15s, box-shadow 0.15s;
}
.bt-contact-form input:focus,
.bt-contact-form textarea:focus {
  outline: none;
  border-color: var(--bt-ocean);
  box-shadow: 0 0 0 3px rgba(10, 106, 163, 0.15);
}

.bt-contact-direct {
  background: var(--bt-ocean-light);
  border-radius: 14px;
  padding: 1.5rem;
  text-align: center;
  margin-top: 2rem;
}
.bt-contact-direct p {
  color: var(--bt-ocean);
  font-weight: 600;
  text-transform: uppercase;
  font-size: 0.8rem;
  letter-spacing: 0.05em;
  margin-bottom: 0.75rem;
}
.bt-contact-direct a {
  display: block;
  padding: 0.25rem;
  font-weight: 500;
}

/* ================================================================
   HEADER / FOOTER
   ================================================================ */
.site-header, .ast-primary-header-bar {
  background: #fff !important;
  border-bottom: 1px solid rgba(10, 106, 163, 0.1);
}
.site-title a, .site-title { color: var(--bt-ocean) !important; font-family: Georgia, serif !important; }

.site-footer {
  background: var(--bt-ocean-dark);
  color: #fff;
  padding: 2.5rem 1.5rem;
}
.site-footer a { color: rgba(255,255,255,0.9); }
.site-footer a:hover { color: var(--bt-sunset); }

.bt-footer-grid {
  max-width: 72rem; margin: 0 auto;
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(200px, 1fr));
  gap: 2rem;
  margin-bottom: 2rem;
}
.bt-footer-grid h3 { color: #fff; font-size: 1.15rem; margin: 0 0 0.75rem; }
.bt-footer-copyright {
  text-align: center;
  padding-top: 1.5rem;
  border-top: 1px solid rgba(255,255,255,0.15);
  font-size: 0.85rem;
  color: rgba(255,255,255,0.7);
}
