/* ============================================================
   GREAT OUTDOOR ADVENTURE COMPANY — Alpine Modernism Theme
   ============================================================ */

:root {
  --forest-green: #2d5a3d;
  --forest-dark: #1e3d2a;
  --forest-light: #3d7a52;
  --charcoal: #1a1a1a;
  --warm-stone: #f5f0e8;
  --gold: #c9a84c;
  --text-muted: #6b7280;
  --white: #ffffff;
}

/* ---- Base ---- */
* { box-sizing: border-box; }
body {
  font-family: 'Lato', sans-serif;
  color: var(--charcoal);
  background: var(--white);
  padding-top: 80px;
}
h1, h2, h3, h4, h5 {
  font-family: 'Playfair Display', serif;
}
img { max-width: 100%; height: auto; }
a { text-decoration: none; }

/* ---- Navbar ---- */
.goac-nav {
  background: rgba(26, 26, 26, 0.97);
  backdrop-filter: blur(8px);
  border-bottom: 1px solid rgba(201, 168, 76, 0.2);
  padding: 0.75rem 0;
}
.goac-brand {
  line-height: 1.2;
  color: var(--white) !important;
}
.brand-main {
  font-family: 'Playfair Display', serif;
  font-size: 1.1rem;
  font-weight: 700;
  color: var(--white);
}
.brand-sub {
  font-size: 0.7rem;
  color: var(--gold);
  letter-spacing: 0.08em;
  text-transform: uppercase;
}
.goac-nav .nav-link {
  color: rgba(255,255,255,0.85) !important;
  font-size: 0.88rem;
  letter-spacing: 0.04em;
  padding: 0.5rem 0.75rem !important;
  transition: color 0.2s;
}
.goac-nav .nav-link:hover,
.goac-nav .nav-link.active { color: var(--gold) !important; }

/* ---- Buttons ---- */
.btn-goac-primary {
  background: var(--forest-green);
  color: var(--white) !important;
  border: none;
  padding: 0.5rem 1.25rem;
  border-radius: 4px;
  font-size: 0.88rem;
  font-weight: 700;
  letter-spacing: 0.04em;
  transition: background 0.2s;
}
.btn-goac-primary:hover { background: var(--forest-light); }
.btn-goac-outline {
  background: transparent;
  color: rgba(255,255,255,0.75) !important;
  border: 1px solid rgba(255,255,255,0.35);
  padding: 0.45rem 1rem;
  border-radius: 4px;
  font-size: 0.82rem;
  transition: all 0.2s;
}
.btn-goac-outline:hover {
  border-color: var(--gold);
  color: var(--gold) !important;
}
.btn-green {
  background: var(--forest-green);
  color: var(--white);
  border: none;
  padding: 0.75rem 2rem;
  border-radius: 4px;
  font-weight: 700;
  font-size: 1rem;
  transition: background 0.2s;
  display: inline-block;
}
.btn-green:hover { background: var(--forest-light); color: var(--white); }
.btn-gold {
  background: var(--gold);
  color: var(--charcoal);
  border: none;
  padding: 0.75rem 2rem;
  border-radius: 4px;
  font-weight: 700;
  font-size: 1rem;
  transition: opacity 0.2s;
  display: inline-block;
}
.btn-gold:hover { opacity: 0.9; color: var(--charcoal); }

/* ---- Hero ---- */
.goac-hero {
  position: relative;
  min-height: 100vh;
  background: url('/assets/images/hero-mountain-lake.png') center/cover no-repeat;
  display: flex;
  align-items: center;
}
.goac-hero::before {
  content: '';
  position: absolute;
  inset: 0;
  background: linear-gradient(135deg, rgba(26,26,26,0.72) 0%, rgba(45,90,61,0.45) 100%);
}
.hero-content {
  position: relative;
  z-index: 2;
  color: var(--white);
  max-width: 680px;
}
.hero-content h1 {
  font-size: clamp(2.5rem, 6vw, 4.5rem);
  line-height: 1.1;
  margin-bottom: 1.25rem;
}
.hero-content p {
  font-size: 1.15rem;
  opacity: 0.9;
  margin-bottom: 2rem;
  font-weight: 300;
}
.hero-badges {
  display: flex;
  gap: 1rem;
  flex-wrap: wrap;
  margin-bottom: 2rem;
}
.hero-badge {
  background: rgba(255,255,255,0.15);
  border: 1px solid rgba(255,255,255,0.3);
  color: var(--white);
  padding: 0.35rem 0.9rem;
  border-radius: 20px;
  font-size: 0.82rem;
  backdrop-filter: blur(4px);
}

/* ---- Section Headers ---- */
.section-header { text-align: center; margin-bottom: 3rem; }
.section-label {
  font-size: 0.78rem;
  letter-spacing: 0.18em;
  text-transform: uppercase;
  color: var(--forest-green);
  font-weight: 700;
  margin-bottom: 0.5rem;
}
.section-title {
  font-size: clamp(1.8rem, 4vw, 2.8rem);
  color: var(--charcoal);
  margin-bottom: 1rem;
}
.section-subtitle {
  color: var(--text-muted);
  font-size: 1.05rem;
  max-width: 560px;
  margin: 0 auto;
}

/* ---- Section Backgrounds ---- */
.section-light { background: var(--warm-stone); padding: 5rem 0; }
.section-white { background: var(--white); padding: 5rem 0; }
.section-dark { background: var(--charcoal); padding: 5rem 0; color: var(--white); }
.section-green { background: var(--forest-green); padding: 5rem 0; color: var(--white); }

/* ---- Location Cards ---- */
.location-card {
  border-radius: 8px;
  overflow: hidden;
  box-shadow: 0 4px 20px rgba(0,0,0,0.1);
  transition: transform 0.3s, box-shadow 0.3s;
  background: var(--white);
}
.location-card:hover {
  transform: translateY(-6px);
  box-shadow: 0 12px 40px rgba(0,0,0,0.18);
}
.location-card img {
  width: 100%;
  height: 240px;
  object-fit: cover;
}
.location-card-body { padding: 1.5rem; }
.location-province {
  font-size: 0.75rem;
  text-transform: uppercase;
  letter-spacing: 0.12em;
  color: var(--forest-green);
  font-weight: 700;
  margin-bottom: 0.4rem;
}
.location-card-body h3 {
  font-size: 1.35rem;
  margin-bottom: 0.5rem;
}
.location-card-body p {
  color: var(--text-muted);
  font-size: 0.92rem;
  line-height: 1.6;
}

/* ---- Experience Cards ---- */
.exp-card {
  border-radius: 8px;
  overflow: hidden;
  box-shadow: 0 4px 20px rgba(0,0,0,0.08);
  transition: transform 0.3s;
  background: var(--white);
}
.exp-card:hover { transform: translateY(-4px); }
.exp-card img {
  width: 100%;
  height: 220px;
  object-fit: cover;
}
.exp-card-body { padding: 1.25rem; }
.exp-season {
  display: inline-block;
  font-size: 0.72rem;
  text-transform: uppercase;
  letter-spacing: 0.1em;
  padding: 0.25rem 0.65rem;
  border-radius: 12px;
  font-weight: 700;
  margin-bottom: 0.6rem;
}
.season-year-round { background: #e8f5e9; color: #2d5a3d; }
.season-winter { background: #e3f2fd; color: #1565c0; }
.season-summer { background: #fff3e0; color: #e65100; }
.exp-card-body h4 { font-size: 1.15rem; margin-bottom: 0.4rem; }
.exp-card-body p { color: var(--text-muted); font-size: 0.88rem; line-height: 1.55; }

/* ---- Accommodation Cards ---- */
.acc-card {
  border-radius: 8px;
  overflow: hidden;
  box-shadow: 0 4px 20px rgba(0,0,0,0.08);
  background: var(--white);
  height: 100%;
}
.acc-card img {
  width: 100%;
  height: 220px;
  object-fit: cover;
}
.acc-card-body { padding: 1.5rem; }
.acc-type {
  font-size: 0.72rem;
  text-transform: uppercase;
  letter-spacing: 0.12em;
  color: var(--gold);
  font-weight: 700;
  margin-bottom: 0.4rem;
}
.acc-card-body h4 { font-size: 1.2rem; margin-bottom: 0.5rem; }
.acc-card-body p { color: var(--text-muted); font-size: 0.88rem; line-height: 1.55; margin-bottom: 0.75rem; }
.acc-capacity { font-size: 0.82rem; color: var(--forest-green); font-weight: 700; margin-bottom: 0.5rem; }
.acc-amenities { list-style: none; padding: 0; margin: 0; }
.acc-amenities li {
  font-size: 0.8rem;
  color: var(--text-muted);
  padding: 0.15rem 0;
}
.acc-amenities li::before { content: '✓ '; color: var(--forest-green); font-weight: 700; }

/* ---- Dining Cards ---- */
.dining-card {
  border-radius: 8px;
  overflow: hidden;
  box-shadow: 0 4px 20px rgba(0,0,0,0.1);
  background: var(--white);
  height: 100%;
  transition: transform 0.3s;
}
.dining-card:hover { transform: translateY(-4px); }
.dining-card img {
  width: 100%;
  height: 260px;
  object-fit: cover;
}
.dining-card-body { padding: 1.5rem; }
.dining-stars { color: var(--gold); font-size: 1.1rem; margin-bottom: 0.4rem; }
.dining-card-body h4 { font-size: 1.25rem; margin-bottom: 0.4rem; }
.dining-chef { font-size: 0.82rem; color: var(--forest-green); font-weight: 700; margin-bottom: 0.5rem; }
.dining-card-body p { color: var(--text-muted); font-size: 0.88rem; line-height: 1.55; }

/* ---- Slideshow ---- */
.goac-slideshow {
  position: relative;
  width: 100%;
  height: 70vh;
  min-height: 480px;
  overflow: hidden;
  background: var(--charcoal);
}
.goac-slideshow .slide {
  position: absolute;
  inset: 0;
  opacity: 0;
  transition: opacity 0.8s ease;
}
.goac-slideshow .slide.active { opacity: 1; }
.goac-slideshow .slide img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}
.slide-overlay {
  position: absolute;
  inset: 0;
  background: linear-gradient(to top, rgba(0,0,0,0.55) 0%, transparent 60%);
}
.slide-caption {
  position: absolute;
  bottom: 2.5rem;
  left: 2.5rem;
  color: var(--white);
  z-index: 2;
}
.slide-caption h3 { font-size: 1.8rem; margin-bottom: 0.25rem; }
.slide-caption p { opacity: 0.85; font-size: 0.95rem; }
.slide-controls {
  position: absolute;
  bottom: 1.5rem;
  right: 2rem;
  display: flex;
  gap: 0.5rem;
  z-index: 3;
}
.slide-dot {
  width: 10px; height: 10px;
  border-radius: 50%;
  background: rgba(255,255,255,0.45);
  border: none;
  cursor: pointer;
  transition: background 0.2s;
  padding: 0;
}
.slide-dot.active { background: var(--white); }
.slide-arrow {
  position: absolute;
  top: 50%;
  transform: translateY(-50%);
  background: rgba(0,0,0,0.4);
  border: none;
  color: var(--white);
  width: 44px; height: 44px;
  border-radius: 50%;
  font-size: 1.2rem;
  cursor: pointer;
  z-index: 3;
  transition: background 0.2s;
  display: flex;
  align-items: center;
  justify-content: center;
}
.slide-arrow:hover { background: rgba(0,0,0,0.7); }
.slide-arrow-prev { left: 1.5rem; }
.slide-arrow-next { right: 1.5rem; }
.slideshow-section-title {
  text-align: center;
  padding: 2.5rem 0 1rem;
  background: var(--warm-stone);
}
.slideshow-section-title h2 { font-size: 2rem; color: var(--charcoal); }

/* ---- CTA Banner ---- */
.cta-banner {
  background: linear-gradient(135deg, var(--forest-dark) 0%, var(--forest-green) 100%);
  padding: 5rem 0;
  text-align: center;
  color: var(--white);
}
.cta-banner h2 { font-size: 2.5rem; margin-bottom: 1rem; }
.cta-banner p { font-size: 1.1rem; opacity: 0.88; margin-bottom: 2rem; }

/* ---- Contact Form ---- */
.contact-section { padding: 5rem 0; background: var(--warm-stone); }
.contact-form-wrap {
  background: var(--white);
  border-radius: 12px;
  padding: 2.5rem;
  box-shadow: 0 8px 40px rgba(0,0,0,0.08);
}
.form-label { font-weight: 700; font-size: 0.88rem; color: var(--charcoal); }
.form-control, .form-select {
  border: 1.5px solid #e5e7eb;
  border-radius: 6px;
  padding: 0.65rem 0.9rem;
  font-size: 0.92rem;
}
.form-control:focus, .form-select:focus {
  border-color: var(--forest-green);
  box-shadow: 0 0 0 3px rgba(45,90,61,0.12);
}
.alert-success-custom {
  background: #e8f5e9;
  border: 1px solid #a5d6a7;
  color: #2e7d32;
  border-radius: 6px;
  padding: 1rem;
  margin-bottom: 1.5rem;
}
.alert-error-custom {
  background: #ffebee;
  border: 1px solid #ef9a9a;
  color: #c62828;
  border-radius: 6px;
  padding: 1rem;
  margin-bottom: 1.5rem;
}

/* ---- Stats Bar ---- */
.stats-bar {
  background: var(--charcoal);
  padding: 2rem 0;
}
.stat-item { text-align: center; }
.stat-number {
  font-family: 'Playfair Display', serif;
  font-size: 2.2rem;
  color: var(--gold);
  display: block;
}
.stat-label {
  font-size: 0.8rem;
  text-transform: uppercase;
  letter-spacing: 0.1em;
  color: rgba(255,255,255,0.65);
}

/* ---- Footer ---- */
.goac-footer {
  background: #111;
  color: rgba(255,255,255,0.75);
  padding: 4rem 0 2rem;
}
.footer-brand {
  font-family: 'Playfair Display', serif;
  font-size: 1.4rem;
  color: var(--white);
  line-height: 1.2;
  margin-bottom: 0.75rem;
}
.footer-tagline { font-size: 0.88rem; opacity: 0.65; margin-bottom: 1rem; }
.footer-contact { font-size: 0.88rem; }
.footer-contact a { color: rgba(255,255,255,0.7); }
.footer-contact a:hover { color: var(--gold); }
.footer-contact div { margin-bottom: 0.35rem; }
.footer-heading {
  font-size: 0.78rem;
  text-transform: uppercase;
  letter-spacing: 0.14em;
  color: var(--gold);
  margin-bottom: 1rem;
}
.footer-links { list-style: none; padding: 0; margin: 0; }
.footer-links li { margin-bottom: 0.4rem; }
.footer-links a {
  color: rgba(255,255,255,0.65);
  font-size: 0.88rem;
  transition: color 0.2s;
}
.footer-links a:hover { color: var(--white); }
.footer-divider { border-color: rgba(255,255,255,0.1); margin: 2rem 0 1rem; }
.footer-bottom { text-align: center; font-size: 0.82rem; opacity: 0.5; }

/* ---- Admin ---- */
.admin-wrap {
  min-height: 100vh;
  background: #f8fafc;
  padding: 2rem 0;
}
.admin-card {
  background: var(--white);
  border-radius: 10px;
  box-shadow: 0 2px 12px rgba(0,0,0,0.07);
  padding: 2rem;
}
.admin-table th {
  background: var(--forest-green);
  color: var(--white);
  font-size: 0.82rem;
  text-transform: uppercase;
  letter-spacing: 0.08em;
}
.status-badge {
  font-size: 0.75rem;
  padding: 0.25rem 0.65rem;
  border-radius: 12px;
  font-weight: 700;
}
.status-new { background: #fef3c7; color: #92400e; }
.status-contacted { background: #dbeafe; color: #1e40af; }
.status-closed { background: #d1fae5; color: #065f46; }

/* ---- Responsive ---- */
@media (max-width: 768px) {
  .goac-hero { min-height: 80vh; }
  .hero-content h1 { font-size: 2.2rem; }
  .goac-slideshow { height: 50vh; }
  .slide-caption { left: 1rem; bottom: 1.5rem; }
  .slide-caption h3 { font-size: 1.3rem; }
}
