/*
Theme Name: Skychase Destinations
Theme URI: https://skychasedestinations.com
Author: Skychase Destinations
Author URI: https://skychasedestinations.com
Description: Official WordPress theme for Skychase Destinations travel agency - specializing in Walt Disney World, Universal Orlando, Cruises, and worldwide vacations.
Version: 1.0
License: GNU General Public License v2 or later
License URI: http://www.gnu.org/licenses/gpl-2.0.html
Text Domain: skychase
Tags: travel, agency, tourism, disney, cruise
*/

/* ============================================
   SKYCHASE DESTINATIONS - MAIN STYLESHEET
   ============================================ */

@import url('https://fonts.googleapis.com/css2?family=Playfair+Display:ital,wght@0,400;0,700;0,900;1,400&family=Nunito:wght@300;400;600;700;800&display=swap');

:root {
  --brand-orange: #D4751A;
  --brand-brown: #3D1F08;
  --brand-teal: #2A7EA6;
  --brand-cream: #FFF5E6;
  --brand-gold: #F0A830;
  --brand-dark: #1A1008;
  --brand-light: #FEF9F3;
  --gradient-hero: linear-gradient(135deg, #1A1008 0%, #3D2010 40%, #2A4A5A 100%);
  --gradient-warm: linear-gradient(135deg, #D4751A, #F0A830);
  --shadow-soft: 0 8px 32px rgba(212, 117, 26, 0.15);
  --shadow-deep: 0 20px 60px rgba(26, 16, 8, 0.3);
  --radius: 12px;
  --radius-lg: 24px;
  --transition: all 0.35s cubic-bezier(0.4, 0, 0.2, 1);
}

*, *::before, *::after { box-sizing: border-box; margin: 0; padding: 0; }

html { scroll-behavior: smooth; }

body {
  font-family: 'Nunito', sans-serif;
  background: var(--brand-light);
  color: var(--brand-dark);
  line-height: 1.7;
  overflow-x: hidden;
}

img { max-width: 100%; height: auto; display: block; }
a { color: var(--brand-teal); text-decoration: none; transition: var(--transition); }
a:hover { color: var(--brand-orange); }

h1, h2, h3, h4, h5, h6 {
  font-family: 'Playfair Display', serif;
  line-height: 1.2;
  color: var(--brand-brown);
}

/* ============ UTILITY ============ */
.container {
  max-width: 1200px;
  margin: 0 auto;
  padding: 0 24px;
}
.section { padding: 80px 0; }
.section-dark { background: var(--brand-dark); color: var(--brand-cream); }
.section-dark h2, .section-dark h3, .section-dark p { color: var(--brand-cream); }
.section-dark .destination-card { background: rgba(255,255,255,0.07); border: 1px solid rgba(255,255,255,0.1); }
.section-dark .destination-card:hover { background: rgba(255,255,255,0.12); }
.section-dark .card-title { color: #fff; }
.section-dark .card-text { color: rgba(255,255,255,0.75); }
.section-dark .card-link { color: var(--brand-gold); }
.section-dark .card-link:hover { color: white; }
.section-warm { background: var(--brand-cream); }
.text-center { text-align: center; }
.section-tag {
  display: inline-block;
  background: var(--gradient-warm);
  color: white;
  font-family: 'Nunito', sans-serif;
  font-weight: 800;
  font-size: 0.75rem;
  letter-spacing: 0.15em;
  text-transform: uppercase;
  padding: 6px 18px;
  border-radius: 50px;
  margin-bottom: 16px;
}
.section-title {
  font-size: clamp(2rem, 4vw, 3rem);
  margin-bottom: 1rem;
}
.section-subtitle {
  font-family: 'Nunito', sans-serif;
  font-size: 1.1rem;
  opacity: 0.8;
  max-width: 600px;
  margin: 0 auto 3rem;
}

/* ============ BUTTONS ============ */
.btn {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  padding: 14px 32px;
  border-radius: 50px;
  font-family: 'Nunito', sans-serif;
  font-weight: 800;
  font-size: 0.95rem;
  letter-spacing: 0.03em;
  border: none;
  cursor: pointer;
  transition: var(--transition);
}
.btn-primary {
  background: var(--gradient-warm);
  color: white;
  box-shadow: 0 4px 20px rgba(212, 117, 26, 0.4);
}
.btn-primary:hover {
  transform: translateY(-2px);
  box-shadow: 0 8px 30px rgba(212, 117, 26, 0.5);
  color: white;
}
.btn-outline {
  background: transparent;
  border: 2px solid white;
  color: white;
}
.btn-outline:hover {
  background: white;
  color: var(--brand-brown);
}
.btn-teal {
  background: var(--brand-teal);
  color: white;
  box-shadow: 0 4px 20px rgba(42, 126, 166, 0.4);
}
.btn-teal:hover {
  background: #1e6a8e;
  transform: translateY(-2px);
  color: white;
}

/* ============ HEADER / NAV ============ */
#site-header {
  position: fixed;
  top: 0; left: 0; right: 0;
  z-index: 1000;
  background: rgba(26, 16, 8, 0.95);
  backdrop-filter: blur(12px);
  -webkit-backdrop-filter: blur(12px);
  border-bottom: 1px solid rgba(212, 117, 26, 0.2);
  transition: var(--transition);
}
.header-inner {
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 12px 24px;
  max-width: 1300px;
  margin: 0 auto;
}
.site-logo img {
  height: 64px;
  width: auto;
}
.site-logo a { display: flex; align-items: center; gap: 12px; }
.logo-text {
  font-family: 'Playfair Display', serif;
  font-size: 1.1rem;
  line-height: 1.2;
}
.logo-text span { display: block; color: var(--brand-orange); font-size: 0.75rem; font-family: 'Nunito', sans-serif; letter-spacing: 0.2em; text-transform: uppercase; color: var(--brand-gold); }

#main-nav ul {
  display: flex;
  list-style: none;
  gap: 8px;
  align-items: center;
}
#main-nav a {
  color: rgba(255,255,255,0.85);
  font-family: 'Nunito', sans-serif;
  font-weight: 700;
  font-size: 0.9rem;
  padding: 8px 14px;
  border-radius: 8px;
  transition: var(--transition);
  letter-spacing: 0.02em;
}
#main-nav a:hover, #main-nav .current-menu-item a {
  color: var(--brand-gold);
  background: rgba(212, 117, 26, 0.1);
}
#main-nav .nav-cta a {
  background: var(--gradient-warm);
  color: white;
  padding: 10px 20px;
  border-radius: 50px;
}
#main-nav .nav-cta a:hover {
  transform: translateY(-1px);
  box-shadow: 0 4px 16px rgba(212,117,26,0.4);
}

.mobile-menu-toggle {
  display: none;
  background: none;
  border: none;
  color: white;
  font-size: 1.5rem;
  cursor: pointer;
  padding: 8px;
}

/* ============ HERO ============ */
.page-hero {
  min-height: 100vh;
  background: var(--gradient-hero);
  display: flex;
  align-items: center;
  position: relative;
  overflow: hidden;
  padding-top: 90px;
}
.page-hero::before {
  content: '';
  position: absolute;
  inset: 0;
  background: url('data:image/svg+xml,<svg xmlns="http://www.w3.org/2000/svg" viewBox="0 0 100 100"><circle cx="20" cy="20" r="0.5" fill="%23ffffff08"/><circle cx="80" cy="80" r="0.5" fill="%23ffffff08"/><circle cx="60" cy="30" r="0.3" fill="%23ffffff05"/></svg>') repeat;
  opacity: 0.5;
}
.hero-orb {
  position: absolute;
  border-radius: 50%;
  filter: blur(80px);
  animation: float 8s ease-in-out infinite;
}
.hero-orb-1 {
  width: 400px; height: 400px;
  background: rgba(212, 117, 26, 0.15);
  top: -100px; right: 10%;
  animation-delay: 0s;
}
.hero-orb-2 {
  width: 300px; height: 300px;
  background: rgba(42, 126, 166, 0.12);
  bottom: 10%; left: 5%;
  animation-delay: 3s;
}
@keyframes float {
  0%, 100% { transform: translateY(0px) scale(1); }
  50% { transform: translateY(-30px) scale(1.05); }
}

.hero-content {
  position: relative;
  z-index: 2;
  color: white;
  max-width: 700px;
}
.hero-badge {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  background: rgba(212, 117, 26, 0.2);
  border: 1px solid rgba(212, 117, 26, 0.4);
  color: var(--brand-gold);
  padding: 8px 20px;
  border-radius: 50px;
  font-size: 0.8rem;
  font-weight: 700;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  margin-bottom: 24px;
}
.hero-title {
  font-size: clamp(2.8rem, 6vw, 5rem);
  font-weight: 900;
  color: white;
  line-height: 1.05;
  margin-bottom: 20px;
}
.hero-title em {
  font-style: italic;
  color: var(--brand-gold);
}
.hero-subtitle {
  font-size: 1.2rem;
  color: rgba(255,255,255,0.75);
  margin-bottom: 36px;
  max-width: 550px;
  line-height: 1.7;
}
.hero-actions {
  display: flex;
  gap: 16px;
  flex-wrap: wrap;
}
.hero-stats {
  display: flex;
  gap: 40px;
  margin-top: 60px;
  padding-top: 40px;
  border-top: 1px solid rgba(255,255,255,0.1);
}
.stat-item strong {
  display: block;
  font-family: 'Playfair Display', serif;
  font-size: 2rem;
  color: var(--brand-gold);
}
.stat-item span {
  font-size: 0.85rem;
  color: rgba(255,255,255,0.6);
  text-transform: uppercase;
  letter-spacing: 0.1em;
}

/* ============ CARDS ============ */
.cards-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
  gap: 28px;
}
.destination-card {
  background: white;
  border-radius: var(--radius-lg);
  overflow: hidden;
  box-shadow: var(--shadow-soft);
  transition: var(--transition);
  position: relative;
}
.destination-card:hover {
  transform: translateY(-8px);
  box-shadow: var(--shadow-deep);
}
.card-icon-wrap {
  height: 200px;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 5rem;
  position: relative;
  overflow: hidden;
}
.card-icon-wrap.disney { background: linear-gradient(135deg, #1a3a6b, #2A7EA6); }
.card-icon-wrap.universal { background: linear-gradient(135deg, #2d6a2d, #5a9e3a); }
.card-icon-wrap.cruise { background: linear-gradient(135deg, #0d3a5c, #1a6ea6); }
.card-icon-wrap.world { background: linear-gradient(135deg, #6b2d1a, #D4751A); }
.card-body { padding: 24px; }
.card-title { font-size: 1.3rem; margin-bottom: 8px; }
.card-text { font-size: 0.95rem; color: #5a4a3a; line-height: 1.6; margin-bottom: 16px; }
.card-link {
  font-weight: 700;
  font-size: 0.9rem;
  color: var(--brand-orange);
  display: inline-flex;
  align-items: center;
  gap: 6px;
}
.card-link:hover { gap: 10px; color: var(--brand-brown); }

/* ============ EXPEDIA PARTNER SECTION ============ */
.expedia-section {
  background: linear-gradient(135deg, #1A1008, #2A3A4A);
  color: white;
  padding: 80px 0;
  position: relative;
  overflow: hidden;
}
.expedia-section::after {
  content: '';
  position: absolute;
  top: -50%; right: -10%;
  width: 500px; height: 500px;
  background: radial-gradient(circle, rgba(212,117,26,0.1) 0%, transparent 70%);
  border-radius: 50%;
}
.expedia-badge {
  background: linear-gradient(135deg, #FFD700, #FFA500);
  color: #1A1008;
  font-weight: 900;
  font-size: 1.1rem;
  letter-spacing: 0.05em;
  padding: 12px 30px;
  border-radius: 50px;
  display: inline-block;
  margin-bottom: 24px;
  box-shadow: 0 4px 20px rgba(255,165,0,0.4);
}
.credential-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(200px, 1fr));
  gap: 24px;
  margin-top: 48px;
}
.credential-item {
  background: rgba(255,255,255,0.05);
  border: 1px solid rgba(255,255,255,0.1);
  border-radius: var(--radius);
  padding: 24px;
  text-align: center;
  transition: var(--transition);
}
.credential-item:hover {
  background: rgba(212,117,26,0.15);
  border-color: rgba(212,117,26,0.3);
  transform: translateY(-4px);
}
.credential-icon { font-size: 2.5rem; margin-bottom: 12px; }
.credential-item h4 { color: var(--brand-gold); font-size: 1rem; margin-bottom: 8px; }
.credential-item p { font-size: 0.9rem; opacity: 0.7; }

/* ============ QUOTE FORM ============ */
.quote-form-wrap {
  background: white;
  border-radius: var(--radius-lg);
  padding: 48px;
  box-shadow: var(--shadow-deep);
  max-width: 700px;
  margin: 0 auto;
}
.form-title { font-size: 1.8rem; margin-bottom: 8px; }
.form-subtitle { color: #7a6a5a; margin-bottom: 32px; }

.form-row { display: grid; grid-template-columns: 1fr 1fr; gap: 20px; }
.form-group { margin-bottom: 20px; }
.form-group label {
  display: block;
  font-weight: 700;
  font-size: 0.85rem;
  letter-spacing: 0.05em;
  text-transform: uppercase;
  color: var(--brand-brown);
  margin-bottom: 8px;
}
.form-group input,
.form-group select,
.form-group textarea {
  width: 100%;
  padding: 14px 18px;
  border: 2px solid #e8ddd0;
  border-radius: var(--radius);
  font-family: 'Nunito', sans-serif;
  font-size: 0.95rem;
  color: var(--brand-dark);
  background: #fdfaf7;
  transition: var(--transition);
  outline: none;
}
.form-group input:focus,
.form-group select:focus,
.form-group textarea:focus {
  border-color: var(--brand-orange);
  background: white;
  box-shadow: 0 0 0 4px rgba(212,117,26,0.08);
}
.form-group textarea { resize: vertical; min-height: 120px; }
.form-submit { width: 100%; margin-top: 8px; justify-content: center; font-size: 1rem; padding: 18px; }
.form-notice {
  text-align: center;
  font-size: 0.8rem;
  color: #9a8a7a;
  margin-top: 12px;
}

/* ============ PAGE HEADER ============ */
.page-banner {
  min-height: 50vh;
  display: flex;
  align-items: flex-end;
  position: relative;
  overflow: hidden;
  padding-top: 90px;
}
.page-banner::before {
  content: '';
  position: absolute;
  inset: 0;
  z-index: 1;
}
.page-banner.disney-banner { background: linear-gradient(135deg, #0d1f3c, #1a3a6b, #2A7EA6); }
.page-banner.universal-banner { background: linear-gradient(135deg, #0d2a0d, #1e4a1e, #5a9e3a); }
.page-banner.cruise-banner { background: linear-gradient(135deg, #0a1f35, #0d3a5c, #1a6ea6); }
.page-banner.expedia-banner { background: linear-gradient(135deg, #1A1008, #3D2010, #D4751A); }
.page-banner.quote-banner { background: linear-gradient(135deg, #1A1008, #2A3040); }

.banner-emoji {
  position: absolute;
  font-size: 20rem;
  opacity: 0.06;
  right: -2%;
  top: 50%;
  transform: translateY(-50%);
  line-height: 1;
}
.banner-content {
  position: relative;
  z-index: 2;
  padding: 48px 0;
  color: white;
}
.banner-content h1 { color: white; font-size: clamp(2rem, 5vw, 3.5rem); margin-bottom: 12px; }
.banner-content p { color: rgba(255,255,255,0.75); font-size: 1.1rem; max-width: 500px; }
.breadcrumb {
  display: flex;
  gap: 8px;
  align-items: center;
  font-size: 0.85rem;
  color: rgba(255,255,255,0.5);
  margin-bottom: 16px;
}
.breadcrumb a { color: var(--brand-gold); }
.breadcrumb span { color: rgba(255,255,255,0.3); }

/* ============ FEATURE LISTS ============ */
.features-list { list-style: none; }
.features-list li {
  display: flex;
  align-items: flex-start;
  gap: 16px;
  padding: 16px 0;
  border-bottom: 1px solid rgba(0,0,0,0.06);
}
.features-list li:last-child { border-bottom: none; }
.feature-icon {
  width: 44px;
  height: 44px;
  border-radius: 12px;
  background: var(--gradient-warm);
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 1.2rem;
  flex-shrink: 0;
}
.feature-text strong { display: block; font-family: 'Playfair Display', serif; font-size: 1.05rem; margin-bottom: 4px; }
.feature-text p { font-size: 0.9rem; color: #5a4a3a; margin: 0; }

/* ============ TWO-COL LAYOUT ============ */
.two-col {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 60px;
  align-items: center;
}
.two-col.reverse { direction: rtl; }
.two-col.reverse > * { direction: ltr; }
.col-visual {
  border-radius: var(--radius-lg);
  overflow: hidden;
  aspect-ratio: 4/3;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 8rem;
}
.visual-disney { background: linear-gradient(135deg, #1a3a6b, #2A7EA6, #4AB8D4); }
.visual-universal { background: linear-gradient(135deg, #1e4a1e, #2d6a2d, #5a9e3a); }
.visual-cruise { background: linear-gradient(135deg, #0d3a5c, #1a6ea6, #2A7EA6); }

/* ============ TESTIMONIALS ============ */
.testimonials-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
  gap: 24px;
}
.testimonial-card {
  background: white;
  border-radius: var(--radius);
  padding: 28px;
  border-left: 4px solid var(--brand-orange);
  box-shadow: var(--shadow-soft);
}
.stars { color: var(--brand-gold); margin-bottom: 12px; font-size: 0.9rem; letter-spacing: 2px; }
.testimonial-text { font-style: italic; margin-bottom: 16px; color: #5a4a3a; line-height: 1.7; }
.testimonial-author strong { font-weight: 800; font-size: 0.95rem; }
.testimonial-author span { display: block; font-size: 0.8rem; color: #9a8a7a; }

/* ============ FOOTER ============ */
#site-footer {
  background: var(--brand-dark);
  color: rgba(255,255,255,0.7);
  padding: 64px 0 0;
}
.footer-grid {
  display: grid;
  grid-template-columns: 2fr 1fr 1fr 1fr;
  gap: 40px;
  padding-bottom: 48px;
}
.footer-brand img { height: 60px; margin-bottom: 16px; }
.footer-brand p { font-size: 0.9rem; line-height: 1.7; }
.footer-col h4 {
  font-family: 'Nunito', sans-serif;
  font-weight: 800;
  font-size: 0.8rem;
  letter-spacing: 0.15em;
  text-transform: uppercase;
  color: var(--brand-gold);
  margin-bottom: 16px;
}
.footer-links { list-style: none; }
.footer-links li { margin-bottom: 10px; }
.footer-links a {
  color: rgba(255,255,255,0.6);
  font-size: 0.9rem;
  transition: var(--transition);
}
.footer-links a:hover { color: var(--brand-gold); padding-left: 4px; }
.footer-bottom {
  border-top: 1px solid rgba(255,255,255,0.08);
  padding: 20px 0;
  display: flex;
  justify-content: space-between;
  align-items: center;
  font-size: 0.85rem;
}
.footer-bottom a { color: var(--brand-gold); }
.social-links { display: flex; gap: 12px; }
.social-link {
  width: 36px; height: 36px;
  border-radius: 50%;
  background: rgba(255,255,255,0.08);
  display: flex;
  align-items: center;
  justify-content: center;
  color: rgba(255,255,255,0.6);
  font-size: 0.9rem;
  transition: var(--transition);
}
.social-link:hover {
  background: var(--brand-orange);
  color: white;
  transform: translateY(-2px);
}

/* ============ WORDPRESS SPECIFIC ============ */
.wp-block-image { margin: 2rem 0; }
.entry-content p { margin-bottom: 1rem; }
.aligncenter { display: block; margin: 0 auto; }
#wpcf7-f1-p1-o1 .wpcf7-form { margin: 0; }

/* ============ RESPONSIVE ============ */
@media (max-width: 992px) {
  .two-col { grid-template-columns: 1fr; gap: 40px; }
  .two-col.reverse { direction: ltr; }
  .footer-grid { grid-template-columns: 1fr 1fr; }
  .hero-stats { gap: 24px; }
}
@media (max-width: 768px) {
  #main-nav { display: none; position: absolute; top: 100%; left: 0; right: 0; background: var(--brand-dark); padding: 20px; }
  #main-nav.open { display: block; }
  #main-nav ul { flex-direction: column; }
  .mobile-menu-toggle { display: block; }
  .form-row { grid-template-columns: 1fr; }
  .quote-form-wrap { padding: 28px 20px; }
  .hero-stats { flex-wrap: wrap; gap: 20px; }
  .footer-grid { grid-template-columns: 1fr; }
  .credential-grid { grid-template-columns: 1fr 1fr; }
  .footer-bottom { flex-direction: column; gap: 12px; text-align: center; }
}
@media (max-width: 480px) {
  .section { padding: 56px 0; }
  .hero-title { font-size: 2.2rem; }
  .credential-grid { grid-template-columns: 1fr; }
}
