/* Skunk Ape Adventures - WTPA Style */
/* Colors extracted from logo */

:root {
  --cream: #FEF2E6;
  --brown: #452A19;
  --green: #598967;
  --orange: #DD8932;
  --orange-dark: #BA7227;
  --olive: #494229;
  --dark: #1a1a1a;
  --white: #FFFFFF;
}

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

html {
  scroll-behavior: smooth;
}

body {
  font-family: 'Inter', -apple-system, BlinkMacSystemFont, sans-serif;
  background: var(--cream);
  color: var(--brown);
  line-height: 1.5;
}

/* ==================== */
/* HEADER - WTPA STYLE  */
/* ==================== */

.header {
  background: var(--cream);
  padding: 12px 20px;
  position: fixed;
  top: 0;
  left: 0;
  right: 0;
  z-index: 1000;
}

.header-inner {
  max-width: 1400px;
  margin: 0 auto;
  display: flex;
  justify-content: space-between;
  align-items: center;
}

.logo img {
  height: 50px;
  width: auto;
}

.nav {
  display: none;
  gap: 32px;
}

.nav a {
  color: var(--brown);
  text-decoration: none;
  font-size: 14px;
  font-weight: 600;
  text-transform: uppercase;
  letter-spacing: 0.5px;
}

.nav a:hover {
  color: var(--orange);
}

.header-cta {
  background: var(--orange);
  color: var(--white);
  padding: 12px 24px;
  border-radius: 6px;
  text-decoration: none;
  font-weight: 700;
  font-size: 14px;
  text-transform: uppercase;
  letter-spacing: 0.5px;
  transition: background 0.2s;
}

.header-cta:hover {
  background: var(--orange-dark);
}

/* ==================== */
/* HERO - FULL SCREEN   */
/* ==================== */

.hero {
  position: relative;
  min-height: 100vh;
  display: flex;
  flex-direction: column;
  overflow: hidden;
}

.hero-media {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  z-index: 1;
}

.hero-media video,
.hero-image {
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: center right;
}

.hero-overlay {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background: linear-gradient(
    to right,
    rgba(26, 26, 26, 0.9) 0%,
    rgba(26, 26, 26, 0.7) 40%,
    rgba(26, 26, 26, 0.3) 100%
  );
}

.hero-content {
  position: relative;
  z-index: 2;
  padding: 140px 24px 60px;
  max-width: 800px;
  margin-top: auto;
  margin-bottom: auto;
}

.hero-badge {
  display: inline-block;
  background: var(--orange);
  color: var(--white);
  padding: 8px 16px;
  border-radius: 4px;
  font-size: 11px;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 1px;
  margin-bottom: 20px;
}

.hero-title {
  font-family: 'Bebas Neue', sans-serif;
  font-size: clamp(48px, 12vw, 100px);
  line-height: 0.95;
  margin-bottom: 16px;
}

.title-white {
  display: block;
  color: var(--white);
}

.title-accent {
  display: block;
  color: var(--orange);
}

.hero-tagline {
  font-family: 'Caveat', cursive;
  font-size: clamp(24px, 5vw, 36px);
  color: var(--green);
  margin-bottom: 32px;
}

.hero-stats {
  display: flex;
  gap: 32px;
  margin-bottom: 32px;
}

.stat {
  display: flex;
  flex-direction: column;
}

.stat-number {
  font-family: 'Bebas Neue', sans-serif;
  font-size: 36px;
  color: var(--orange);
  line-height: 1;
}

.stat-label {
  font-size: 11px;
  color: var(--white);
  text-transform: uppercase;
  letter-spacing: 1px;
  opacity: 0.8;
}

.hero-ctas {
  display: flex;
  gap: 16px;
  flex-wrap: wrap;
}

.btn {
  padding: 16px 32px;
  border-radius: 4px;
  font-size: 14px;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 0.5px;
  text-decoration: none;
  transition: all 0.2s;
  min-height: 48px;
  display: inline-flex;
  align-items: center;
  justify-content: center;
}

.btn-primary {
  background: var(--orange);
  color: var(--white);
}

.btn-primary:hover {
  background: var(--orange-dark);
}

.btn-outline {
  background: transparent;
  color: var(--white);
  border: 2px solid var(--white);
}

.btn-outline:hover {
  background: var(--white);
  color: var(--brown);
}

/* ==================== */
/* SECTIONS             */
/* ==================== */

.section-header {
  text-align: center;
  padding: 60px 24px 32px;
  background: var(--cream);
}

.section-badge {
  display: inline-block;
  font-family: 'Caveat', cursive;
  font-size: 20px;
  color: var(--orange);
  margin-bottom: 8px;
}

.section-title {
  font-family: 'Bebas Neue', sans-serif;
  font-size: clamp(32px, 6vw, 48px);
  color: var(--brown);
  letter-spacing: 1px;
}

/* ==================== */
/* TOURS SECTION        */
/* ==================== */

.tours-section {
  background: var(--cream);
}

.filter-bar {
  background: var(--white);
  padding: 20px 24px;
  border-bottom: 1px solid rgba(69, 42, 25, 0.1);
  position: sticky;
  top: 74px; /* Match mobile header height */
  z-index: 90;
}

.filter-inner {
  max-width: 1200px;
  margin: 0 auto;
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 12px;
}

.filter-group {
  display: flex;
  flex-direction: column;
  gap: 4px;
}

.search-group {
  grid-column: span 2;
}

.filter-group label {
  font-size: 11px;
  font-weight: 600;
  text-transform: uppercase;
  letter-spacing: 0.5px;
  color: var(--olive);
}

.filter-group select,
.filter-group input {
  padding: 12px 16px;
  border: 2px solid rgba(69, 42, 25, 0.15);
  border-radius: 6px;
  font-size: 16px;
  font-family: inherit;
  background: var(--white);
  color: var(--brown);
  min-height: 48px;
  transition: border-color 0.2s;
}

.filter-group select:focus,
.filter-group input:focus {
  outline: none;
  border-color: var(--orange);
}

.results-count {
  max-width: 1200px;
  margin: 16px auto 0;
  font-size: 13px;
  color: var(--olive);
}

/* Tour Grid */
.tours-grid {
  max-width: 1200px;
  margin: 0 auto;
  padding: 24px;
  display: grid;
  grid-template-columns: 1fr;
  gap: 24px;
}

.loading {
  text-align: center;
  padding: 60px;
  color: var(--olive);
  grid-column: 1 / -1;
}

/* Tour Card */
.tour-card {
  background: var(--white);
  border-radius: 12px;
  overflow: hidden;
  box-shadow: 0 4px 20px rgba(69, 42, 25, 0.08);
  transition: transform 0.2s, box-shadow 0.2s;
}

.tour-card:hover {
  transform: translateY(-4px);
  box-shadow: 0 8px 30px rgba(69, 42, 25, 0.12);
}

.tour-image {
  position: relative;
  height: 200px;
  overflow: hidden;
}

.tour-image img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform 0.3s;
}

.tour-card:hover .tour-image img {
  transform: scale(1.05);
}

.tour-price {
  position: absolute;
  top: 16px;
  right: 16px;
  background: var(--orange);
  color: var(--white);
  padding: 8px 14px;
  border-radius: 20px;
  font-weight: 700;
  font-size: 15px;
}

.tour-tag {
  position: absolute;
  bottom: 16px;
  left: 16px;
  background: var(--green);
  color: var(--white);
  padding: 6px 12px;
  border-radius: 4px;
  font-size: 11px;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 0.5px;
}

.tour-content {
  padding: 20px;
  display: flex;
  flex-direction: column;
}

.tour-name {
  font-size: 18px;
  font-weight: 700;
  color: var(--brown);
  margin-bottom: 4px;
  line-height: 1.3;
}

.tour-company {
  font-size: 13px;
  color: var(--olive);
  margin-bottom: 12px;
}

.tour-description {
  font-size: 14px;
  color: var(--olive);
  margin-bottom: 16px;
  line-height: 1.5;
  display: -webkit-box;
  -webkit-line-clamp: 2;
  -webkit-box-orient: vertical;
  overflow: hidden;
}

.tour-meta {
  display: flex;
  gap: 16px;
  font-size: 13px;
  color: var(--olive);
  margin-bottom: 16px;
}

.tour-cta {
  display: block;
  background: var(--orange);
  color: var(--white);
  text-align: center;
  padding: 14px 20px;
  border-radius: 6px;
  text-decoration: none;
  font-weight: 700;
  font-size: 14px;
  text-transform: uppercase;
  letter-spacing: 0.5px;
  min-height: 48px;
  transition: background 0.2s;
}

.tour-cta:hover {
  background: var(--orange-dark);
}

/* ==================== */
/* LEGEND SECTION       */
/* ==================== */

.legend-section {
  background: var(--olive);
  padding: 80px 24px;
}

.legend-inner {
  max-width: 800px;
  margin: 0 auto;
  text-align: center;
}

.legend-section .section-badge {
  color: var(--orange);
}

.legend-section .section-title {
  color: var(--cream);
  margin-bottom: 24px;
}

.legend-section p {
  color: var(--cream);
  font-size: 17px;
  line-height: 1.7;
  margin-bottom: 16px;
  opacity: 0.9;
}

/* ==================== */
/* ABOUT SECTION        */
/* ==================== */

.about-section {
  background: var(--cream);
  padding: 80px 24px;
}

.about-inner {
  max-width: 800px;
  margin: 0 auto;
  text-align: center;
}

.about-section .section-badge {
  color: var(--orange);
}

.about-section .section-title {
  color: var(--brown);
  margin-bottom: 24px;
}

.about-section p {
  color: var(--olive);
  font-size: 17px;
  line-height: 1.7;
  margin-bottom: 16px;
}

/* ==================== */
/* FOOTER - WTPA STYLE  */
/* ==================== */

.footer {
  background: var(--brown);
  padding: 60px 24px 32px;
}

.footer-inner {
  max-width: 600px;
  margin: 0 auto;
  text-align: center;
}

.footer-brand {
  margin-bottom: 32px;
}

.footer-brand img {
  height: 96px;
  width: auto;
}

.footer-social {
  display: flex;
  justify-content: center;
  gap: 12px;
  margin-bottom: 32px;
}

.social-icon {
  width: 48px;
  height: 48px;
  background: var(--orange);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  color: var(--white);
  transition: background 0.2s, transform 0.2s;
}

.social-icon:hover {
  background: var(--orange-dark);
  transform: scale(1.1);
}

.social-icon svg {
  width: 20px;
  height: 20px;
}

.footer-info {
  margin-bottom: 24px;
}

.footer-info p {
  color: var(--cream);
  font-size: 15px;
  margin-bottom: 8px;
}

.footer-info a {
  color: var(--orange);
  text-decoration: none;
}

.footer-info a:hover {
  text-decoration: underline;
}

.footer-legal {
  color: var(--cream);
  font-size: 13px;
  opacity: 0.7;
}

.footer-legal a {
  color: var(--orange);
  text-decoration: none;
}

.footer-partner {
  margin-top: 8px;
}

.footer-note {
  max-width: 600px;
  margin: 32px auto 0;
  padding-top: 32px;
  border-top: 1px solid rgba(254, 242, 230, 0.15);
  text-align: center;
}

.footer-note p {
  color: var(--green);
  font-size: 14px;
}

/* ==================== */
/* NO RESULTS           */
/* ==================== */

.no-results {
  text-align: center;
  padding: 80px 24px;
  grid-column: 1 / -1;
}

.no-results h3 {
  font-family: 'Bebas Neue', sans-serif;
  font-size: 28px;
  color: var(--brown);
  margin-bottom: 8px;
}

.no-results p {
  color: var(--olive);
}

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

/* Mobile - Default */
@media (max-width: 639px) {
  .hero {
    min-height: auto !important;
    flex-direction: column !important;
    margin-top: 80px !important; /* Push below fixed header */
  }
  
  .hero-media {
    position: relative !important;
    width: 100% !important;
    height: 350px !important;
    flex-shrink: 0;
  }
  
  .hero-image {
    object-position: top center !important;
  }
  
  .hero-overlay {
    background: linear-gradient(
      to bottom,
      rgba(26, 26, 26, 0.1) 0%,
      rgba(26, 26, 26, 0.5) 100%
    );
  }
  
  .hero-content {
    position: relative;
    width: 100%;
    background: var(--dark);
    padding: 32px 24px 40px;
    z-index: 2;
  }
  
  .hero-badge {
    font-size: 10px;
    padding: 6px 12px;
  }
  
  .hero-title {
    font-size: 42px;
  }
  
  .hero-tagline {
    font-size: 18px;
    margin-bottom: 24px;
  }
  
  .hero-stats {
    gap: 24px;
    margin-bottom: 24px;
  }
  
  .stat-number {
    font-size: 28px;
  }
  
  .hero-ctas {
    flex-direction: column;
    gap: 12px;
  }
  
  .btn {
    width: 100%;
    text-align: center;
  }
}

/* Tablet */
@media (min-width: 640px) {
  .nav {
    display: flex;
  }
  
  .logo img {
    height: 66px;
  }
  
  /* Restore full-screen hero on tablet+ */
  .hero {
    min-height: 100vh;
    margin-top: 0; /* Reset mobile margin */
  }
  
  .hero-media {
    position: absolute;
    height: 100%;
  }
  
  .hero-image {
    object-position: center right;
  }
  
  .hero-content {
    background: transparent;
    padding: 140px 48px 80px;
  }
  
  .hero-overlay {
    background: linear-gradient(
      to right,
      rgba(26, 26, 26, 0.9) 0%,
      rgba(26, 26, 26, 0.7) 40%,
      rgba(26, 26, 26, 0.3) 100%
    );
  }
  
  .filter-bar {
    top: 90px; /* Larger header on tablet+ */
  }
  
  .tours-grid {
    grid-template-columns: repeat(2, 1fr);
  }
  
  .filter-inner {
    grid-template-columns: 1fr 1fr 2fr;
  }
  
  .search-group {
    grid-column: auto;
  }
}

/* Desktop */
@media (min-width: 1024px) {
  .logo img {
    height: 78px;
  }
  
  .header-inner {
    padding: 0 40px;
  }
  
  .tours-grid {
    grid-template-columns: repeat(3, 1fr);
    padding: 32px 40px;
  }
  
  .hero-content {
    padding: 160px 80px 100px;
  }
  
  .filter-bar {
    padding: 24px 40px;
  }
}

/* Large Desktop */
@media (min-width: 1400px) {
  .tours-grid {
    grid-template-columns: repeat(4, 1fr);
  }
}
