/* ==========================================================================
   TAYRONA GUIDE PORTAL - DESIGN SYSTEM & STYLES (2026)
   ========================================================================== */

:root {
  /* Color Tokens */
  --color-primary: #0c2b21;
  --color-primary-light: #164e3d;
  --color-accent: #10b981;
  --color-accent-hover: #059669;
  --color-gold: #f59e0b;
  --color-gold-hover: #d97706;
  --color-danger: #ef4444;
  --color-bg-dark: #071510;
  --color-bg-card: rgba(15, 34, 27, 0.75);
  --color-bg-light: #f8fafc;
  --color-text-main: #f1f5f9;
  --color-text-muted: #94a3b8;
  --color-text-dark: #1e293b;
  
  /* Typography */
  --font-heading: 'Outfit', -apple-system, BlinkMacSystemFont, sans-serif;
  --font-body: 'Inter', -apple-system, BlinkMacSystemFont, sans-serif;

  /* Layout & Shadows */
  --radius-sm: 8px;
  --radius-md: 14px;
  --radius-lg: 24px;
  --shadow-sm: 0 4px 6px -1px rgba(0, 0, 0, 0.1);
  --shadow-lg: 0 20px 25px -5px rgba(0, 0, 0, 0.3), 0 8px 10px -6px rgba(0, 0, 0, 0.3);
  --shadow-glow: 0 0 25px rgba(16, 185, 129, 0.3);

  /* Transitions */
  --transition: all 0.3s cubic-bezier(0.4, 0, 0.2, 1);
}

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

html {
  scroll-behavior: smooth;
  font-family: var(--font-body);
  background-color: var(--color-bg-dark);
  color: var(--color-text-main);
  line-height: 1.6;
}

body {
  overflow-x: hidden;
}

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

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

.container {
  width: 90%;
  max-width: 1240px;
  margin: 0 auto;
}

.max-w-4xl {
  max-width: 890px;
}

/* Announcement Bar */
.announcement-bar {
  background: linear-gradient(90deg, #b45309, #d97706);
  color: #fff;
  text-align: center;
  padding: 10px 16px;
  font-size: 0.9rem;
  font-weight: 500;
}

.announcement-bar a {
  text-decoration: underline;
  color: #fff;
  font-weight: 700;
}

/* Navbar */
.navbar {
  position: sticky;
  top: 0;
  z-index: 1000;
  background: rgba(7, 21, 16, 0.85);
  backdrop-filter: blur(16px);
  border-bottom: 1px solid rgba(255, 255, 255, 0.08);
  padding: 16px 0;
  transition: var(--transition);
}

.nav-container {
  display: flex;
  align-items: center;
  justify-content: space-between;
}

.brand-logo {
  display: flex;
  align-items: center;
  gap: 8px;
  font-family: var(--font-heading);
  font-size: 1.4rem;
}

.logo-icon {
  font-size: 1.6rem;
}

.logo-text {
  font-weight: 400;
}

.logo-text strong {
  font-weight: 800;
  color: var(--color-accent);
}

.nav-links {
  display: flex;
  align-items: center;
  gap: 24px;
}

.nav-link {
  font-size: 0.95rem;
  font-weight: 500;
  color: var(--color-text-muted);
  transition: var(--transition);
}

.nav-link:hover, .nav-link.active {
  color: #fff;
}

.highlight-link {
  color: var(--color-gold) !important;
  font-weight: 700;
}

/* Language Switcher Dropdown */
.lang-dropdown {
  position: relative;
  display: inline-block;
}

.lang-btn {
  background: rgba(255, 255, 255, 0.08);
  border: 1px solid rgba(255, 255, 255, 0.15);
  color: var(--color-text-main);
  padding: 8px 14px;
  border-radius: var(--radius-sm);
  font-family: var(--font-heading);
  font-size: 0.88rem;
  font-weight: 600;
  cursor: pointer;
  transition: var(--transition);
}

.lang-btn:hover {
  background: rgba(255, 255, 255, 0.18);
  border-color: #fff;
}

.lang-menu {
  position: absolute;
  top: calc(100% + 8px);
  right: 0;
  background: rgba(7, 21, 16, 0.96);
  backdrop-filter: blur(16px);
  border: 1px solid rgba(16, 185, 129, 0.3);
  border-radius: var(--radius-md);
  padding: 8px 0;
  list-style: none;
  width: 170px;
  box-shadow: var(--shadow-lg);
  display: none;
  z-index: 1050;
}

.lang-dropdown:hover .lang-menu {
  display: block;
}

.lang-menu li a {
  display: block;
  padding: 8px 16px;
  font-size: 0.85rem;
  color: var(--color-text-muted);
  transition: var(--transition);
}

.lang-menu li a:hover, .lang-menu li a.active-lang {
  background: rgba(16, 185, 129, 0.15);
  color: #fff;
  font-weight: 700;
}

.nav-actions {
  display: flex;
  align-items: center;
  gap: 16px;
}

.mobile-toggle {
  display: none;
  background: none;
  border: none;
  cursor: pointer;
  padding: 4px;
}

.mobile-toggle span {
  display: block;
  width: 24px;
  height: 2px;
  background: #fff;
  margin: 5px 0;
}

/* Buttons */
.btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 8px;
  font-family: var(--font-heading);
  font-weight: 700;
  border-radius: var(--radius-sm);
  padding: 12px 24px;
  transition: var(--transition);
  cursor: pointer;
  border: 1px solid transparent;
}

.btn-sm {
  padding: 8px 16px;
  font-size: 0.88rem;
}

.btn-lg {
  padding: 16px 32px;
  font-size: 1.05rem;
}

.btn-xl {
  padding: 20px 40px;
  font-size: 1.2rem;
  border-radius: var(--radius-md);
}

.btn-primary {
  background-color: var(--color-accent);
  color: #042f22;
}

.btn-primary:hover {
  background-color: var(--color-accent-hover);
  transform: translateY(-2px);
  box-shadow: var(--shadow-glow);
}

.btn-accent {
  background: linear-gradient(135deg, var(--color-gold), #ea580c);
  color: #fff;
}

.btn-accent:hover {
  transform: translateY(-2px);
  box-shadow: 0 10px 20px rgba(245, 158, 11, 0.4);
}

.btn-outline {
  border-color: rgba(255, 255, 255, 0.3);
  color: #fff;
}

.btn-outline:hover {
  background: rgba(255, 255, 255, 0.1);
  border-color: #fff;
}

.btn-block {
  width: 100%;
}

.glow-btn {
  animation: pulseGlow 2.5s infinite;
}

@keyframes pulseGlow {
  0% { box-shadow: 0 0 0 0 rgba(16, 185, 129, 0.5); }
  70% { box-shadow: 0 0 0 15px rgba(16, 185, 129, 0); }
  100% { box-shadow: 0 0 0 0 rgba(16, 185, 129, 0); }
}

/* Hero Section */
.hero-section {
  position: relative;
  min-height: 85vh;
  display: flex;
  align-items: center;
  padding: 80px 0;
  overflow: hidden;
}

.hero-bg {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background-size: cover;
  background-position: center;
  transform: scale(1.02);
  z-index: 0;
}

.hero-overlay {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background: linear-gradient(180deg, rgba(7, 21, 16, 0.3) 0%, rgba(7, 21, 16, 0.75) 100%);
  z-index: 1;
}

.hero-content {
  position: relative;
  z-index: 2;
  max-width: 850px;
}

.hero-badge {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  background: rgba(16, 185, 129, 0.15);
  border: 1px solid rgba(16, 185, 129, 0.4);
  padding: 6px 16px;
  border-radius: 50px;
  font-size: 0.85rem;
  color: var(--color-accent);
  margin-bottom: 24px;
}

.badge-dot {
  width: 8px;
  height: 8px;
  background: var(--color-accent);
  border-radius: 50%;
}

.hero-title {
  font-family: var(--font-heading);
  font-size: clamp(2.5rem, 5vw, 4.2rem);
  font-weight: 800;
  line-height: 1.15;
  margin-bottom: 24px;
}

.hero-title span {
  background: linear-gradient(135deg, #34d399, #fbbf24);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
}

.hero-subtitle {
  font-size: 1.2rem;
  color: var(--color-text-muted);
  margin-bottom: 40px;
  max-width: 720px;
}

.hero-cta-group {
  display: flex;
  flex-wrap: wrap;
  gap: 16px;
  margin-bottom: 60px;
}

.hero-trust-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(220px, 1fr));
  gap: 20px;
  padding-top: 30px;
  border-top: 1px solid rgba(255, 255, 255, 0.1);
}

.trust-item {
  display: flex;
  align-items: center;
  gap: 12px;
}

.trust-icon {
  font-size: 1.8rem;
}

.trust-item strong {
  display: block;
  font-size: 0.95rem;
}

.trust-item span {
  font-size: 0.8rem;
  color: var(--color-text-muted);
}

/* Sections */
.section {
  padding: 90px 0;
}

.section-dark {
  background-color: #05100c;
}

.section-header {
  margin-bottom: 60px;
}

.section-tag {
  display: inline-block;
  font-family: var(--font-heading);
  font-size: 0.85rem;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 1px;
  color: var(--color-accent);
  margin-bottom: 12px;
}

.tag-warning {
  color: var(--color-gold);
}

.tag-success {
  color: #34d399;
}

.section-title {
  font-family: var(--font-heading);
  font-size: clamp(2rem, 3.5vw, 2.8rem);
  font-weight: 800;
  margin-bottom: 16px;
}

.section-lead {
  font-size: 1.15rem;
  color: var(--color-text-muted);
}

.text-center {
  text-align: center;
}

/* Warning Card (The Ticket Truth) */
.warning-card {
  background: rgba(30, 41, 59, 0.6);
  border: 1px solid rgba(239, 68, 68, 0.4);
  border-radius: var(--radius-lg);
  padding: 40px;
  backdrop-filter: blur(12px);
  box-shadow: 0 10px 30px rgba(239, 68, 68, 0.1);
}

.warning-header {
  display: flex;
  align-items: flex-start;
  gap: 20px;
  margin-bottom: 24px;
}

.warning-icon {
  font-size: 2.8rem;
}

.warning-header h3 {
  font-family: var(--font-heading);
  font-size: 1.6rem;
  color: #fca5a5;
  margin-bottom: 4px;
}

.warning-header p {
  color: var(--color-text-muted);
}

.warning-body p {
  font-size: 1.1rem;
  margin-bottom: 24px;
}

/* Guided Solution Banner */
.guided-solution-banner {
  background: linear-gradient(135deg, rgba(16, 185, 129, 0.15), rgba(245, 158, 11, 0.15));
  border: 1px solid rgba(16, 185, 129, 0.4);
  border-radius: var(--radius-md);
  padding: 24px;
  display: flex;
  align-items: flex-start;
  gap: 20px;
  margin-bottom: 30px;
  box-shadow: 0 4px 20px rgba(16, 185, 129, 0.15);
}

.banner-icon {
  font-size: 2.2rem;
  line-height: 1;
}

.banner-text h4 {
  font-family: var(--font-heading);
  font-size: 1.25rem;
  color: #34d399;
  margin-bottom: 8px;
}

.banner-text p {
  font-size: 1rem !important;
  color: var(--color-text-main) !important;
  margin-bottom: 12px !important;
}

.margin-top-sm {
  margin-top: 8px;
}

.info-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
  gap: 24px;
}

.info-box {
  background: rgba(15, 23, 42, 0.6);
  border: 1px solid rgba(255, 255, 255, 0.08);
  border-radius: var(--radius-md);
  padding: 24px;
}

.info-box h4 {
  font-family: var(--font-heading);
  font-size: 1.15rem;
  color: var(--color-gold);
  margin-bottom: 16px;
}

.info-box ul {
  list-style: none;
}

.info-box li {
  margin-bottom: 10px;
  font-size: 0.95rem;
  color: var(--color-text-main);
}

/* Feature Section (Skip Queue) */
.section-feature {
  background: linear-gradient(180deg, #071510 0%, #051811 100%);
}

.feature-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 60px;
  align-items: center;
}

.feature-media {
  position: relative;
  border-radius: var(--radius-lg);
  overflow: hidden;
  box-shadow: var(--shadow-lg);
}

.feature-img {
  width: 100%;
  aspect-ratio: 4/3;
  min-height: 360px;
  object-fit: cover;
  border-radius: var(--radius-lg);
  transition: var(--transition);
}

.floating-badge {
  position: absolute;
  bottom: 24px;
  left: 24px;
  right: 24px;
  background: rgba(7, 21, 16, 0.9);
  backdrop-filter: blur(12px);
  border: 1px solid rgba(16, 185, 129, 0.3);
  padding: 16px 20px;
  border-radius: var(--radius-md);
  display: flex;
  align-items: center;
  gap: 16px;
}

.badge-icon {
  font-size: 2rem;
}

.floating-badge strong {
  display: block;
  color: var(--color-accent);
}

.floating-badge span {
  font-size: 0.85rem;
  color: var(--color-text-muted);
}

.feature-title {
  font-family: var(--font-heading);
  font-size: 2.4rem;
  margin-bottom: 20px;
}

.feature-desc {
  font-size: 1.1rem;
  color: var(--color-text-muted);
  margin-bottom: 30px;
}

.solution-box {
  background: rgba(16, 185, 129, 0.08);
  border: 1px solid rgba(16, 185, 129, 0.3);
  border-radius: var(--radius-md);
  padding: 24px;
  margin-bottom: 30px;
}

.solution-box h3 {
  font-family: var(--font-heading);
  color: var(--color-accent);
  margin-bottom: 12px;
}

.checklist {
  list-style: none;
  margin-top: 16px;
}

.checklist li {
  margin-bottom: 8px;
  font-size: 0.95rem;
}

.feature-cta {
  display: flex;
  flex-direction: column;
  align-items: flex-start;
  gap: 8px;
}

.sub-text {
  font-size: 0.85rem;
  color: var(--color-text-muted);
}

/* Tours Showcase */
.tours-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(320px, 1fr));
  gap: 30px;
}

.tour-card {
  position: relative;
  background: var(--color-bg-card);
  border: 1px solid rgba(255, 255, 255, 0.08);
  border-radius: var(--radius-lg);
  padding: 36px 28px;
  display: flex;
  flex-direction: column;
  justify-content: space-between;
  transition: var(--transition);
}

.tour-card:hover {
  transform: translateY(-8px);
  border-color: rgba(16, 185, 129, 0.4);
  box-shadow: var(--shadow-lg);
}

.featured-card {
  border-color: var(--color-gold);
  background: linear-gradient(180deg, rgba(245, 158, 11, 0.08) 0%, rgba(15, 34, 27, 0.9) 100%);
}

.tour-badge {
  display: inline-block;
  background: rgba(16, 185, 129, 0.2);
  color: var(--color-accent);
  font-size: 0.75rem;
  font-weight: 700;
  text-transform: uppercase;
  padding: 4px 12px;
  border-radius: 50px;
  margin-bottom: 16px;
}

.badge-accent {
  background: rgba(245, 158, 11, 0.2);
  color: var(--color-gold);
}

.tour-title {
  font-family: var(--font-heading);
  font-size: 1.4rem;
  margin-bottom: 12px;
}

.tour-desc {
  font-size: 0.95rem;
  color: var(--color-text-muted);
  margin-bottom: 24px;
}

.tour-highlights {
  display: flex;
  flex-wrap: wrap;
  gap: 8px;
  margin-bottom: 28px;
}

.tour-highlights span {
  background: rgba(255, 255, 255, 0.05);
  font-size: 0.8rem;
  padding: 6px 12px;
  border-radius: 6px;

}

/* Trails Section */
.trail-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(260px, 1fr));
  gap: 24px;
}

.trail-card {
  background: rgba(15, 23, 42, 0.6);
  border: 1px solid rgba(255, 255, 255, 0.08);
  border-radius: var(--radius-md);
  padding: 24px;
  transition: var(--transition);
}

.trail-card:hover {
  border-color: rgba(255, 255, 255, 0.2);
}

.trail-header h3 {
  font-family: var(--font-heading);
  font-size: 1.2rem;
  margin-bottom: 4px;
}

.trail-time {
  display: inline-block;
  font-size: 0.8rem;
  color: var(--color-accent);
  margin-bottom: 12px;
}

/* Lodging Grid */
.lodging-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(320px, 1fr));
  gap: 30px;
}

.lodging-card {
  background: var(--color-bg-card);
  border: 1px solid rgba(255, 255, 255, 0.08);
  border-radius: var(--radius-lg);
  padding: 30px;
}

.lodging-content h3 {
  font-family: var(--font-heading);
  font-size: 1.3rem;
  margin-bottom: 10px;
}

.lodging-content p {
  font-size: 0.95rem;
  color: var(--color-text-muted);
  margin-bottom: 20px;
}

/* FAQ Accordion */
.faq-accordion {
  display: flex;
  flex-direction: column;
  gap: 16px;
}

.faq-item {
  background: rgba(15, 23, 42, 0.6);
  border: 1px solid rgba(255, 255, 255, 0.08);
  border-radius: var(--radius-md);
  overflow: hidden;
}

.faq-question {
  width: 100%;
  background: none;
  border: none;
  color: #fff;
  font-family: var(--font-heading);
  font-size: 1.1rem;
  font-weight: 600;
  text-align: left;
  padding: 20px 24px;
  display: flex;
  justify-content: space-between;
  align-items: center;
  cursor: pointer;
}

.faq-icon {
  font-size: 1.5rem;
  color: var(--color-accent);
  transition: var(--transition);
}

.faq-answer {
  max-height: 0;
  overflow: hidden;
  transition: max-height 0.3s ease-out;
  padding: 0 24px;
  color: var(--color-text-muted);
  font-size: 0.95rem;
}

.faq-item.active .faq-answer {
  padding-bottom: 20px;
}

.faq-item.active .faq-icon {
  transform: rotate(45deg);
}

/* CTA Banner */
.cta-banner {
  background: linear-gradient(135deg, #064e3b 0%, #071510 100%);
  padding: 80px 0;
  border-top: 1px solid rgba(16, 185, 129, 0.3);
}

.cta-banner h2 {
  font-family: var(--font-heading);
  font-size: 2.4rem;
  margin-bottom: 16px;
}

.cta-banner p {
  font-size: 1.15rem;
  color: var(--color-text-muted);
  margin-bottom: 36px;
  max-width: 600px;
  margin-left: auto;
  margin-right: auto;
}

/* Footer */
.footer {
  background-color: #030a07;
  padding: 70px 0 30px;
  border-top: 1px solid rgba(255, 255, 255, 0.05);
}

.footer-grid {
  display: grid;
  grid-template-columns: 2fr 1fr 1fr;
  gap: 50px;
  margin-bottom: 50px;
}

.footer-text {
  font-size: 0.9rem;
  color: var(--color-text-muted);
  margin-top: 16px;
  max-width: 380px;
}

.footer-col h4 {
  font-family: var(--font-heading);
  font-size: 1.1rem;
  margin-bottom: 20px;
}

.footer-col ul {
  list-style: none;
}

.footer-col li {
  margin-bottom: 10px;
}

.footer-col a {
  font-size: 0.9rem;
  color: var(--color-text-muted);
  transition: var(--transition);
}

.footer-col a:hover {
  color: var(--color-accent);
}

.footer-bottom {
  border-top: 1px solid rgba(255, 255, 255, 0.05);
  padding-top: 30px;
  font-size: 0.85rem;
  color: var(--color-text-muted);
}

/* Responsive Styles */
@media (max-width: 992px) {
  .feature-grid {
    grid-template-columns: 1fr;
  }
  .footer-grid {
    grid-template-columns: 1fr;
  }
}

@media (max-width: 768px) {
  .nav-links {
    display: none;
  }
  .mobile-toggle {
    display: block;
  }
  .hero-section {
    min-height: auto;
    padding: 60px 0;
  }
}
