/* ========================================
   BRANDNERTAL - Alpine Design System
   ======================================== */

/* CSS Variables */
:root {
  /* Colors */
  --primary: 142 45% 28%;
  --primary-foreground: 0 0% 100%;
  --secondary: 43 25% 90%;
  --secondary-foreground: 142 45% 20%;
  --background: 40 20% 98%;
  --foreground: 142 25% 15%;
  --muted: 43 15% 85%;
  --muted-foreground: 142 10% 45%;
  --accent: 32 85% 55%;
  --accent-foreground: 0 0% 100%;
  --border: 43 20% 85%;
  --alpine-forest: 142 45% 28%;
  --alpine-mountain: 215 35% 45%;
  --alpine-meadow: 95 45% 45%;
  --alpine-snow: 210 20% 98%;
  
  /* Typography */
  --font-serif: 'Playfair Display', Georgia, serif;
  --font-sans: 'Source Sans 3', -apple-system, BlinkMacSystemFont, sans-serif;
  
  /* Spacing */
  --container-max: 1280px;
  --section-padding: 5rem;
}

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

html {
  scroll-behavior: smooth;
}

body {
  font-family: var(--font-sans);
  font-size: 16px;
  line-height: 1.6;
  color: hsl(var(--foreground));
  background: hsl(var(--background));
  -webkit-font-smoothing: antialiased;
}

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

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

/* Typography */
h1, h2, h3, h4, h5, h6 {
  font-family: var(--font-serif);
  font-weight: 600;
  line-height: 1.2;
  color: hsl(var(--foreground));
}

h1 { font-size: clamp(2rem, 5vw, 3.5rem); }
h2 { font-size: clamp(1.5rem, 3vw, 2.25rem); }
h3 { font-size: clamp(1.25rem, 2vw, 1.5rem); }

.text-muted { color: hsl(var(--muted-foreground)); }
.text-primary { color: hsl(var(--primary)); }
.text-accent { color: hsl(var(--accent)); }
.text-center { text-align: center; }
.text-sm { font-size: 0.875rem; }
.text-xs { font-size: 0.75rem; }
.font-semibold { font-weight: 600; }

/* Layout */
.container {
  width: 100%;
  max-width: var(--container-max);
  margin: 0 auto;
  padding: 0 1.5rem;
}

.section {
  padding: var(--section-padding) 0;
}

.section-alt {
  background: hsl(var(--muted) / 0.3);
}

.section-primary {
  background: hsl(var(--primary));
  color: hsl(var(--primary-foreground));
}

/* ========================================
   HEADER & NAVIGATION
   ======================================== */

.header {
  position: fixed;
  top: 0;
  left: 0;
  right: 0;
  z-index: 1000;
  background: hsl(var(--background) / 0.95);
  backdrop-filter: blur(10px);
  border-bottom: 1px solid hsl(var(--border));
  transition: all 0.3s ease;
}

.header.scrolled {
  box-shadow: 0 2px 20px rgba(0,0,0,0.1);
}

.header-inner {
  display: flex;
  align-items: center;
  justify-content: space-between;
  max-width: var(--container-max);
  margin: 0 auto;
  padding: 1rem 1.5rem;
}

.logo {
  display: flex;
  align-items: center;
  gap: 0.5rem;
  font-family: var(--font-serif);
  font-size: 1.25rem;
  font-weight: 600;
  color: hsl(var(--primary));
}

.logo svg {
  width: 32px;
  height: 32px;
}

/* Desktop Navigation */
.nav {
  display: none;
  align-items: center;
  gap: 0.25rem;
}

@media (min-width: 1024px) {
  .nav { display: flex; }
}

.nav > a,
.nav-trigger {
  padding: 0.5rem 1rem;
  font-size: 0.9rem;
  font-weight: 500;
  color: hsl(var(--foreground));
  border-radius: 0.5rem;
  transition: all 0.2s ease;
  cursor: pointer;
  background: none;
  border: none;
  font-family: inherit;
}

.nav > a:hover,
.nav-trigger:hover {
  background: hsl(var(--muted) / 0.5);
  color: hsl(var(--primary));
}

/* Dropdown */
.nav-dropdown {
  position: relative;
}

.nav-trigger {
  display: flex;
  align-items: center;
  gap: 0.25rem;
}

.nav-trigger svg {
  transition: transform 0.2s ease;
}

.nav-dropdown-menu {
  position: absolute;
  top: 100%;
  left: 0;
  min-width: 200px;
  padding: 0.5rem;
  background: hsl(var(--background));
  border: 1px solid hsl(var(--border));
  border-radius: 0.75rem;
  box-shadow: 0 10px 40px rgba(0,0,0,0.1);
  opacity: 0;
  visibility: hidden;
  transform: translateY(10px);
  transition: all 0.2s ease;
}

.nav-dropdown:hover .nav-dropdown-menu {
  opacity: 1;
  visibility: visible;
  transform: translateY(0);
}

.nav-dropdown:hover .nav-trigger svg {
  transform: rotate(180deg);
}

.nav-dropdown-menu a {
  display: block;
  padding: 0.625rem 1rem;
  font-size: 0.875rem;
  color: hsl(var(--foreground));
  border-radius: 0.5rem;
  transition: all 0.15s ease;
}

.nav-dropdown-menu a:hover {
  background: hsl(var(--primary) / 0.1);
  color: hsl(var(--primary));
}

/* Mobile Toggle */
.nav-toggle {
  display: flex;
  flex-direction: column;
  gap: 5px;
  padding: 0.5rem;
  background: none;
  border: none;
  cursor: pointer;
}

@media (min-width: 1024px) {
  .nav-toggle { display: none; }
}

.nav-toggle span {
  display: block;
  width: 24px;
  height: 2px;
  background: hsl(var(--foreground));
  border-radius: 2px;
  transition: all 0.3s ease;
}

.nav-toggle.active span:nth-child(1) {
  transform: rotate(45deg) translate(5px, 5px);
}
.nav-toggle.active span:nth-child(2) {
  opacity: 0;
}
.nav-toggle.active span:nth-child(3) {
  transform: rotate(-45deg) translate(5px, -5px);
}

/* Mobile Navigation */
.mobile-nav {
  display: none;
  position: fixed;
  top: 65px;
  left: 0;
  right: 0;
  bottom: 0;
  background: hsl(var(--background));
  padding: 1.5rem;
  overflow-y: auto;
  z-index: 999;
}

.mobile-nav.active {
  display: block;
}

@media (min-width: 1024px) {
  .mobile-nav { display: none !important; }
}

.mobile-nav a {
  display: block;
  padding: 0.875rem 0;
  font-size: 1rem;
  font-weight: 500;
  color: hsl(var(--foreground));
  border-bottom: 1px solid hsl(var(--border));
}

.mobile-nav-sub {
  padding-left: 1rem;
}

.mobile-nav-sub a {
  font-size: 0.9rem;
  font-weight: 400;
  color: hsl(var(--muted-foreground));
}

/* ========================================
   PAGE HERO
   ======================================== */

.page-hero {
  position: relative;
  min-height: 50vh;
  display: flex;
  align-items: center;
  justify-content: center;
  padding: 8rem 1.5rem 4rem;
  overflow: hidden;
}

.page-hero-small {
  min-height: 35vh;
}

.page-hero-bg {
  position: absolute;
  inset: 0;
  background-size: cover;
  background-position: center;
  background-repeat: no-repeat;
}

.page-hero-overlay {
  position: absolute;
  inset: 0;
  background: linear-gradient(to bottom, 
    rgba(0,0,0,0.4) 0%, 
    rgba(0,0,0,0.5) 50%,
    rgba(0,0,0,0.6) 100%
  );
}

.page-hero-content {
  position: relative;
  z-index: 1;
  max-width: 800px;
  text-align: center;
  color: white;
}

.page-hero-content h1 {
  color: white;
  margin-bottom: 1rem;
  text-shadow: 0 2px 10px rgba(0,0,0,0.3);
}

.page-hero-content p {
  font-size: 1.125rem;
  opacity: 0.9;
  max-width: 600px;
  margin: 0 auto;
}

/* Breadcrumb */
.breadcrumb {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 0.5rem;
  margin-bottom: 1.5rem;
  font-size: 0.875rem;
}

.breadcrumb a {
  opacity: 0.8;
  transition: opacity 0.2s;
}

.breadcrumb a:hover {
  opacity: 1;
}

.breadcrumb-sep {
  opacity: 0.5;
}

/* ========================================
   CARDS
   ======================================== */

.card {
  background: hsl(var(--background));
  border: 1px solid hsl(var(--border));
  border-radius: 1rem;
  padding: 1.5rem;
  transition: all 0.3s ease;
}

.card:hover {
  box-shadow: 0 10px 40px rgba(0,0,0,0.08);
}

.card-link {
  display: block;
  cursor: pointer;
}

.card-link:hover {
  transform: translateY(-4px);
}

.card-image {
  width: calc(100% + 3rem);
  margin: -1.5rem -1.5rem 1.5rem;
  border-radius: 1rem 1rem 0 0;
  height: 200px;
  object-fit: cover;
}

.card h3 {
  margin-bottom: 0.5rem;
}

.card-icon {
  width: 40px;
  height: 40px;
  border-radius: 0.5rem;
  display: flex;
  align-items: center;
  justify-content: center;
  background: hsl(var(--primary) / 0.1);
  color: hsl(var(--primary));
  margin-bottom: 1rem;
}

.card-icon.icon-accent {
  background: hsl(var(--accent) / 0.1);
  color: hsl(var(--accent));
}

.card-icon.icon-mountain {
  background: hsl(var(--alpine-mountain) / 0.1);
  color: hsl(var(--alpine-mountain));
}

.card-icon-center {
  width: 48px;
  height: 48px;
  border-radius: 0.75rem;
  display: flex;
  align-items: center;
  justify-content: center;
  background: hsl(var(--primary) / 0.1);
  color: hsl(var(--primary));
  margin: 0 auto 1rem;
}

.card-meta {
  display: flex;
  gap: 1rem;
  font-size: 0.75rem;
  color: hsl(var(--muted-foreground));
  margin-top: 0.75rem;
}

.card-footer {
  display: flex;
  justify-content: space-between;
  align-items: center;
  margin-top: 1rem;
  padding-top: 1rem;
  border-top: 1px solid hsl(var(--border));
}

/* Card Grid */
.card-grid {
  display: grid;
  gap: 1.5rem;
}

.card-grid.cols-2 {
  grid-template-columns: repeat(1, 1fr);
}

.card-grid.cols-3 {
  grid-template-columns: repeat(1, 1fr);
}

.card-grid.cols-4 {
  grid-template-columns: repeat(2, 1fr);
}

@media (min-width: 768px) {
  .card-grid.cols-2 { grid-template-columns: repeat(2, 1fr); }
  .card-grid.cols-3 { grid-template-columns: repeat(2, 1fr); }
  .card-grid.cols-4 { grid-template-columns: repeat(2, 1fr); }
}

@media (min-width: 1024px) {
  .card-grid.cols-3 { grid-template-columns: repeat(3, 1fr); }
  .card-grid.cols-4 { grid-template-columns: repeat(4, 1fr); }
}

/* ========================================
   BADGES
   ======================================== */

.badge {
  display: inline-block;
  padding: 0.25rem 0.75rem;
  font-size: 0.75rem;
  font-weight: 600;
  border-radius: 9999px;
  background: hsl(var(--muted));
  color: hsl(var(--muted-foreground));
}

.badge-green {
  background: hsl(142 70% 90%);
  color: hsl(142 70% 30%);
}

.badge-yellow {
  background: hsl(45 100% 90%);
  color: hsl(45 100% 25%);
}

.badge-red {
  background: hsl(0 70% 90%);
  color: hsl(0 70% 35%);
}

.badge-mountain {
  background: hsl(var(--alpine-mountain) / 0.15);
  color: hsl(var(--alpine-mountain));
}

.badge-outline {
  background: transparent;
  border: 1px solid hsl(var(--border));
  color: hsl(var(--muted-foreground));
}

/* ========================================
   BUTTONS
   ======================================== */

.btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 0.5rem;
  padding: 0.75rem 1.5rem;
  font-size: 0.9rem;
  font-weight: 600;
  font-family: inherit;
  border-radius: 0.5rem;
  border: none;
  cursor: pointer;
  transition: all 0.2s ease;
}



.btn-primary {
  background: hsl(var(--primary));
  color: hsl(var(--primary-foreground));
}

.btn-primary:hover {
  background: hsl(var(--primary) / 0.9);
  transform: translateY(-2px);
  box-shadow: 0 4px 12px hsl(var(--primary) / 0.3);
}





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

.btn-outline:hover {
  background: hsl(var(--primary));
  color: hsl(var(--primary-foreground));
}

.btn-sm {
  padding: 0.5rem 1rem;
  font-size: 0.8rem;
}

.link-arrow {
  display: inline-flex;
  align-items: center;
  gap: 0.5rem;
  color: hsl(var(--primary));
  font-weight: 600;
  transition: gap 0.2s ease;
}

.link-arrow:hover {
  gap: 0.75rem;
}

/* ========================================
   SECTION HEADERS
   ======================================== */

.section-header {
  display: flex;
  align-items: flex-start;
  gap: 1rem;
  margin-bottom: 1.5rem;
}

.section-icon {
  width: 40px;
  height: 40px;
  border-radius: 0.5rem;
  display: flex;
  align-items: center;
  justify-content: center;
  background: hsl(var(--primary) / 0.1);
  color: hsl(var(--primary));
  flex-shrink: 0;
}

.section-icon.icon-accent {
  background: hsl(var(--accent) / 0.1);
  color: hsl(var(--accent));
}

.section-icon.icon-mountain {
  background: hsl(var(--alpine-mountain) / 0.15);
  color: hsl(var(--alpine-mountain));
}

.section-intro {
  color: hsl(var(--muted-foreground));
  max-width: 48rem;
  margin-bottom: 2rem;
}

/* ========================================
   LISTS
   ======================================== */

.list-styled {
  list-style: none;
}

.list-styled li {
  position: relative;
  padding-left: 1.5rem;
  margin-bottom: 0.75rem;
}

.list-styled li::before {
  content: '';
  position: absolute;
  left: 0;
  top: 0.5rem;
  width: 6px;
  height: 6px;
  border-radius: 50%;
  background: hsl(var(--primary));
}

/* ========================================
   TAGS
   ======================================== */

.tag-grid {
  display: flex;
  flex-wrap: wrap;
  gap: 0.75rem;
}

.tag {
  padding: 0.625rem 1.25rem;
  background: hsl(var(--secondary));
  border-radius: 0.5rem;
  font-size: 0.9rem;
  font-weight: 500;
  color: hsl(var(--secondary-foreground));
}

/* ========================================
   STATS
   ======================================== */

.stats-grid {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 1.5rem;
  text-align: center;
}

@media (min-width: 768px) {
  .stats-grid { grid-template-columns: repeat(4, 1fr); }
}

.stat-item {
  padding: 1.5rem;
}

.stat-number {
  display: block;
  font-family: var(--font-serif);
  font-size: 2.5rem;
  font-weight: 700;
  color: hsl(var(--primary));
  line-height: 1;
}

.stat-label {
  display: block;
  font-size: 0.875rem;
  color: hsl(var(--muted-foreground));
  margin-top: 0.5rem;
}

/* ========================================
   PISTEN BARS (Skigebiet)
   ======================================== */

.pisten-bars {
  max-width: 600px;
}

.pisten-bar {
  display: grid;
  grid-template-columns: 120px 1fr 60px;
  align-items: center;
  gap: 1rem;
  margin-bottom: 1rem;
}

.pisten-label {
  font-size: 0.875rem;
  font-weight: 500;
}

.pisten-progress {
  height: 8px;
  background: hsl(var(--muted));
  border-radius: 4px;
  overflow: hidden;
}

.pisten-progress > div {
  height: 100%;
  border-radius: 4px;
}

/* ========================================
   ACCORDION (FAQ)
   ======================================== */

.accordion {
  display: flex;
  flex-direction: column;
  gap: 0.75rem;
}

.accordion-item {
  border: 1px solid hsl(var(--border));
  border-radius: 0.75rem;
  overflow: hidden;
}

.accordion-item.open {
  background: hsl(var(--secondary) / 0.3);
}

.accordion-trigger {
  display: flex;
  align-items: center;
  justify-content: space-between;
  width: 100%;
  padding: 1.25rem 1.5rem;
  font-family: var(--font-serif);
  font-size: 1rem;
  font-weight: 600;
  text-align: left;
  background: none;
  border: none;
  cursor: pointer;
  transition: background 0.2s;
}

.accordion-trigger:hover {
  background: hsl(var(--muted) / 0.3);
}

.accordion-trigger svg {
  transition: transform 0.2s;
  flex-shrink: 0;
}

.accordion-item.open .accordion-trigger svg {
  transform: rotate(180deg);
}

.accordion-content {
  max-height: 0;
  overflow: hidden;
  transition: max-height 0.3s ease, padding 0.3s ease;
}

.accordion-item.open .accordion-content {
  max-height: 500px;
  padding: 0 1.5rem 1.25rem;
}

.accordion-content p {
  color: hsl(var(--muted-foreground));
}

/* ========================================
   COMPARISON TABLE
   ======================================== */

.comparison-table {
  width: 100%;
  border-collapse: collapse;
  font-size: 0.875rem;
}

.comparison-table th,
.comparison-table td {
  padding: 0.875rem 1rem;
  text-align: left;
  border-bottom: 1px solid hsl(var(--border));
}

.comparison-table th {
  font-weight: 600;
  background: hsl(var(--muted) / 0.5);
}

.comparison-table tr:hover td {
  background: hsl(var(--muted) / 0.2);
}

/* ========================================
   LEGAL CONTENT
   ======================================== */

.legal-content h2 {
  font-size: 1.25rem;
  margin: 2rem 0 0.75rem;
}

.legal-content h2:first-child {
  margin-top: 0;
}

.legal-content p {
  color: hsl(var(--muted-foreground));
  margin-bottom: 1rem;
}

.legal-content a {
  color: hsl(var(--primary));
  text-decoration: underline;
}

/* ========================================
   HIKING / WANDERWEGE
   ======================================== */

/* Filter Bar */
.filter-bar {
  display: flex;
  flex-wrap: wrap;
  gap: 0.5rem;
  margin-bottom: 1rem;
}

.filter-btn {
  padding: 0.5rem 1rem;
  font-size: 0.875rem;
  font-weight: 500;
  background: hsl(var(--background));
  border: 1px solid hsl(var(--border));
  border-radius: 9999px;
  cursor: pointer;
  transition: all 0.2s;
}

.filter-btn:hover {
  border-color: hsl(var(--primary));
  color: hsl(var(--primary));
}

.filter-btn.active {
  background: hsl(var(--primary));
  border-color: hsl(var(--primary));
  color: white;
}

.filter-count {
  font-size: 0.875rem;
  color: hsl(var(--muted-foreground));
  margin-bottom: 1.5rem;
}

/* Hiking Map */
.map-section {
  background: hsl(var(--alpine-snow));
  padding: 2rem 0;
}

.map-container {
  width: 100%;
  height: 400px;
  border-radius: 1rem;
  overflow: hidden;
  background: hsl(var(--muted));
}

@media (min-width: 768px) {
  .map-container { height: 500px; }
}

.map-legend {
  display: flex;
  flex-wrap: wrap;
  gap: 1.5rem;
  justify-content: center;
  margin-top: 1rem;
  font-size: 0.875rem;
}

.legend-item {
  display: flex;
  align-items: center;
  gap: 0.5rem;
}

.legend-dot {
  width: 12px;
  height: 12px;
  border-radius: 50%;
}

.legend-dot.easy { background: #22c55e; }
.legend-dot.medium { background: #eab308; }
.legend-dot.hard { background: #ef4444; }

/* Hiking Card */
.hiking-card {
  background: hsl(var(--background));
  border: 1px solid hsl(var(--border));
  border-radius: 1rem;
  overflow: hidden;
  transition: all 0.3s;
}

.hiking-card:hover {
  box-shadow: 0 8px 30px rgba(0,0,0,0.08);
}

.hiking-card-header {
  padding: 1.5rem;
  cursor: pointer;
}

.hiking-card-title {
  display: flex;
  align-items: flex-start;
  justify-content: space-between;
  gap: 1rem;
  margin-bottom: 0.5rem;
}

.hiking-card-title h3 {
  font-size: 1.125rem;
}

.hiking-card-badges {
  display: flex;
  gap: 0.5rem;
  flex-wrap: wrap;
  margin-top: 0.75rem;
}

.hiking-card-stats {
  display: flex;
  gap: 1rem;
  margin-top: 0.75rem;
  font-size: 0.75rem;
  color: hsl(var(--muted-foreground));
}

.hiking-card-stats span {
  display: flex;
  align-items: center;
  gap: 0.25rem;
}

.hiking-card-details {
  max-height: 0;
  overflow: hidden;
  transition: max-height 0.3s ease;
  background: hsl(var(--muted) / 0.2);
}

.hiking-card.expanded .hiking-card-details {
  max-height: 500px;
}

.hiking-card-details-inner {
  padding: 1.5rem;
  border-top: 1px solid hsl(var(--border));
}

.hiking-card-toggle {
  display: flex;
  align-items: center;
  gap: 0.25rem;
  font-size: 0.8rem;
  color: hsl(var(--primary));
  font-weight: 500;
  margin-top: 0.75rem;
}

.hiking-card-toggle svg {
  transition: transform 0.2s;
}

.hiking-card.expanded .hiking-card-toggle svg {
  transform: rotate(180deg);
}

.highlight-box {
  display: inline-block;
  padding: 0.5rem 0.75rem;
  background: hsl(var(--primary) / 0.1);
  border-radius: 0.5rem;
  font-size: 0.8rem;
  color: hsl(var(--primary));
  margin-top: 0.75rem;
}

/* ========================================
   STARS (Hotels)
   ======================================== */

.stars {
  color: hsl(var(--accent));
  font-size: 0.875rem;
  margin-bottom: 0.5rem;
}

/* ========================================
   LOCATION LIST
   ======================================== */

.location-list {
  display: flex;
  flex-direction: column;
  gap: 1rem;
}

.location-item {
  padding: 1rem;
  background: hsl(var(--background));
  border-radius: 0.5rem;
}

.location-item strong {
  display: block;
  margin-bottom: 0.25rem;
}

/* ========================================
   INFO BOX
   ======================================== */

.info-box {
  padding: 2rem;
  background: hsl(var(--background));
  border: 1px solid hsl(var(--border));
  border-radius: 1rem;
}

/* ========================================
   FOOTER
   ======================================== */

.footer {
  background: hsl(var(--foreground));
  color: hsl(var(--background));
  padding: 4rem 0 2rem;
}

.footer-inner {
  max-width: var(--container-max);
  margin: 0 auto;
  padding: 0 1.5rem;
}

.footer-grid {
  display: grid;
  grid-template-columns: repeat(1, 1fr);
  gap: 2.5rem;
  margin-bottom: 3rem;
}

@media (min-width: 768px) {
  .footer-grid { grid-template-columns: repeat(2, 1fr); }
}

@media (min-width: 1024px) {
  .footer-grid { grid-template-columns: 2fr 1fr 1fr 1fr; }
}

.footer-logo {
  display: flex;
  align-items: center;
  gap: 0.5rem;
  font-family: var(--font-serif);
  font-size: 1.25rem;
  font-weight: 600;
  color: hsl(var(--background));
  margin-bottom: 1rem;
}

.footer-desc {
  font-size: 0.9rem;
  opacity: 0.7;
  line-height: 1.7;
}

.footer-links-section h3 {
  color: hsl(var(--background));
  font-size: 1rem;
  margin-bottom: 1rem;
}

.footer-links {
  list-style: none;
}

.footer-links li {
  margin-bottom: 0.625rem;
}

.footer-links a {
  font-size: 0.9rem;
  opacity: 0.7;
  transition: opacity 0.2s;
}

.footer-links a:hover {
  opacity: 1;
}

.footer-bottom {
  padding-top: 2rem;
  border-top: 1px solid hsl(var(--background) / 0.1);
  text-align: center;
  font-size: 0.8rem;
  opacity: 0.5;
}

/* ========================================
   HERO (Homepage)
   ======================================== */

.hero {
  position: relative;
  min-height: 90vh;
  display: flex;
  align-items: center;
  justify-content: center;
  overflow: hidden;
}

.hero-bg {
  position: absolute;
  inset: 0;
  background-size: cover;
  background-position: center;
}

.hero-overlay {
  position: absolute;
  inset: 0;
  background: linear-gradient(
    to bottom,
    rgba(0,0,0,0.3) 0%,
    rgba(0,0,0,0.4) 50%,
    rgba(0,0,0,0.6) 100%
  );
}

.hero-content {
  position: relative;
  z-index: 1;
  max-width: 900px;
  text-align: center;
  color: white;
  padding: 2rem;
}

.hero-content h1 {
  color: white;
  margin-bottom: 1.5rem;
  text-shadow: 0 2px 20px rgba(0,0,0,0.3);
}

.hero-content p {
  font-size: 1.25rem;
  opacity: 0.9;
  max-width: 700px;
  margin: 0 auto 2rem;
}

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

/* USP Grid */
.usp-grid {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 1rem;
}

@media (min-width: 768px) {
  .usp-grid { grid-template-columns: repeat(4, 1fr); }
}

.usp-card {
  text-align: center;
  padding: 2rem 1rem;
  background: hsl(var(--background));
  border: 1px solid hsl(var(--border));
  border-radius: 1rem;
}

.usp-icon {
  width: 48px;
  height: 48px;
  margin: 0 auto 1rem;
  display: flex;
  align-items: center;
  justify-content: center;
  background: hsl(var(--primary) / 0.1);
  color: hsl(var(--primary));
  border-radius: 0.75rem;
}

.usp-card h3 {
  font-size: 1rem;
  margin-bottom: 0.5rem;
}

.usp-card p {
  font-size: 0.8rem;
  color: hsl(var(--muted-foreground));
}

/* Quick Links */
.quick-links {
  display: grid;
  grid-template-columns: repeat(1, 1fr);
  gap: 1.5rem;
}

@media (min-width: 768px) {
  .quick-links { grid-template-columns: repeat(2, 1fr); }
}

@media (min-width: 1024px) {
  .quick-links { grid-template-columns: repeat(4, 1fr); }
}

.quick-link {
  display: block;
  padding: 2rem;
  background: hsl(var(--background));
  border: 1px solid hsl(var(--border));
  border-radius: 1rem;
  text-align: center;
  transition: all 0.3s;
}

.quick-link:hover {
  transform: translateY(-4px);
  box-shadow: 0 12px 40px rgba(0,0,0,0.1);
  border-color: hsl(var(--primary) / 0.3);
}

.quick-link-icon {
  width: 64px;
  height: 64px;
  margin: 0 auto 1rem;
  display: flex;
  align-items: center;
  justify-content: center;
  background: hsl(var(--primary) / 0.1);
  color: hsl(var(--primary));
  border-radius: 1rem;
}

.quick-link h3 {
  font-size: 1.125rem;
  margin-bottom: 0.5rem;
}

.quick-link p {
  font-size: 0.875rem;
  color: hsl(var(--muted-foreground));
}

/* ========================================
   UTILITIES
   ======================================== */

.mt-2 { margin-top: 0.5rem; }
.mt-4 { margin-top: 1rem; }
.mt-6 { margin-top: 1.5rem; }
.mt-8 { margin-top: 2rem; }
.mb-4 { margin-bottom: 1rem; }
.mb-6 { margin-bottom: 1.5rem; }
.mb-8 { margin-bottom: 2rem; }
.mb-16 { margin-bottom: 4rem; }

.hidden { display: none; }

@media (max-width: 767px) {
  .md\:hidden { display: none; }
}

/* ========================================
   ANIMATIONS
   ======================================== */

@keyframes fadeIn {
  from { opacity: 0; transform: translateY(20px); }
  to { opacity: 1; transform: translateY(0); }
}

.animate-fade-in {
  animation: fadeIn 0.6s ease forwards;
}

/* Mapbox overrides */
.mapboxgl-popup-content {
  border-radius: 0.5rem !important;
  padding: 0.75rem 1rem !important;
  font-family: var(--font-sans) !important;
}

.mapboxgl-popup-close-button {
  font-size: 1.25rem !important;
  padding: 0.25rem 0.5rem !important;
}


