/* ============================================
LOCATION STORY COMPONENT STYLES
============================================ */

.location-component {
  background: var(--dark-secondary);
  position: relative;
  overflow: hidden;
  padding: 100px 0;
}

/* Background Text */

.location-component .location-bg-text {
  position: absolute;
  top: 5%;
  right: -5%;
  font-family: var(--font-serif);
  font-weight: 900;
  font-size: clamp(100px, 18vw, 280px);
  color: rgba(202, 166, 106, 0.03);
  z-index: 0;
  pointer-events: none;
  letter-spacing: 12px;
  user-select: none;
}

/* Container */

.location-component .container {
  max-width: 1200px;
  margin: 0 auto;
  padding: 0 24px;
  position: relative;
  z-index: 2;
}

/* Header */

.location-component .location-header {
  text-align: center;
  margin-bottom: 60px;
}

.location-component .location-header .section-label {
  font-family: 'Inter', sans-serif;
  font-weight: 600;
  font-size: clamp(12px, 1vw, 14px);
  letter-spacing: 4px;
  text-transform: uppercase;
  color: var(--gold-primary);
  margin-bottom: 12px;
}

.location-component .location-header .section-title {
  font-family: 'Playfair Display', serif;
  font-weight: 700;
  font-size: clamp(32px, 4vw, 52px);
  line-height: 1.1;
  color: var(--text-light);
  margin-bottom: 16px;
}

.location-component .location-header .section-subtitle {
  font-size: clamp(16px, 1.2vw, 18px);
  color: rgba(255, 255, 255, 0.6);
  max-width: 700px;
  margin: 0 auto;
  line-height: 1.8;
  font-weight: 300;
}

/* Map Section */

.location-component .location-map-section {
  position: relative;
  border-radius: 24px;
  overflow: hidden;
  margin-bottom: 80px;
}

.location-component .location-map-wrapper {
  position: relative;
  width: 100%;
  aspect-ratio: 16/9;
  overflow: hidden;
}

.location-component .location-map-image {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform 0.8s cubic-bezier(0.22, 1, 0.36, 1);
  display: block;
}

.location-component .location-map-overlay {
  position: absolute;
  inset: 0;
  background: linear-gradient(180deg, rgba(26, 30, 38, 0.15) 0%, rgba(26, 30, 38, 0.75) 100%);
  z-index: 1;
}

.location-component .location-map-content {
  position: absolute;
  bottom: 40px;
  left: 40px;
  z-index: 2;
  max-width: 500px;
}

.location-component .location-map-content h3 {
  font-family: 'Playfair Display', serif;
  font-size: clamp(24px, 2.5vw, 36px);
  color: var(--text-light);
  margin-bottom: 8px;
}

.location-component .location-map-content p {
  color: rgba(255, 255, 255, 0.7);
  font-size: 15px;
  line-height: 1.6;
}

/* Map Info Cards */

.location-component .location-info-cards {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 24px;
  margin-top: -40px;
  position: relative;
  z-index: 3;
  padding: 0 20px;
}

.location-component .location-info-card {
  padding: 28px 24px;
  background: rgba(255, 255, 255, 0.06);
  backdrop-filter: blur(12px);
  -webkit-backdrop-filter: blur(12px);
  border: 1px solid rgba(202, 166, 106, 0.15);
  border-radius: 16px;
  transition: all 0.4s cubic-bezier(0.22, 1, 0.36, 1);
}

.location-component .location-info-card:hover {
  transform: translateY(-4px);
  border-color: var(--gold-primary);
  box-shadow: 0 20px 60px rgba(0, 0, 0, 0.2);
}

.location-component .location-info-card .card-icon {
  font-size: 28px;
  color: var(--gold-primary);
  margin-bottom: 12px;
  display: block;
}

.location-component .location-info-card h4 {
  font-family: 'Playfair Display', serif;
  font-size: 18px;
  color: var(--text-light);
  margin-bottom: 6px;
}

.location-component .location-info-card p {
  font-size: 14px;
  color: rgba(255, 255, 255, 0.6);
  line-height: 1.6;
}

/* Landscape Story */

.location-component .location-landscape {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 60px;
  align-items: center;
  margin: 80px 0;
}

.location-component .location-landscape-image {
  border-radius: 24px;
  overflow: hidden;
  aspect-ratio: 4/3;
  background: var(--dark);
}

.location-component .location-landscape-image img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform 0.8s cubic-bezier(0.22, 1, 0.36, 1);
  display: block;
}

.location-component .location-landscape-image:hover img {
  transform: scale(1.03);
}

.location-component .location-landscape-content h3 {
  font-family: 'Playfair Display', serif;
  font-size: clamp(24px, 2.5vw, 32px);
  color: var(--text-light);
  margin-bottom: 16px;
}

.location-component .location-landscape-content p {
  color: rgba(255, 255, 255, 0.7);
  line-height: 1.8;
  font-size: 16px;
}

/* Wildlife Section */

.location-component .location-wildlife {
  margin: 80px 0;
}

.location-component .location-wildlife-header {
  text-align: center;
  margin-bottom: 40px;
}

.location-component .location-wildlife-header h3 {
  font-family: 'Playfair Display', serif;
  font-size: clamp(28px, 3vw, 38px);
  color: var(--text-light);
  margin-bottom: 8px;
}

.location-component .location-wildlife-header p {
  color: rgba(255, 255, 255, 0.6);
  font-size: 16px;
}

/* Wildlife Carousel */

.location-component .wildlife-carousel {
  position: relative;
  border-radius: 24px;
  overflow: hidden;
  background: var(--dark);
}

.location-component .wildlife-track {
  position: relative;
  width: 100%;
  aspect-ratio: 16/9;
  min-height: 350px;
  overflow: hidden;
}

.location-component .wildlife-slide {
  position: absolute;
  inset: 0;
  opacity: 0;
  visibility: hidden;
  transition: opacity 0.9s cubic-bezier(0.22, 1, 0.36, 1),
visibility 0.9s cubic-bezier(0.22, 1, 0.36, 1);
}

.location-component .wildlife-slide.active {
  opacity: 1;
  visibility: visible;
}

.location-component .wildlife-slide-image {
  width: 100%;
  height: 100%;
  background-size: cover;
  background-position: center;
  position: relative;
  transform: scale(1.04);
  transition: transform 0.9s cubic-bezier(0.22, 1, 0.36, 1);
}

.location-component .wildlife-slide.active .wildlife-slide-image {
  transform: scale(1);
}

.location-component .wildlife-slide-overlay {
  position: absolute;
  inset: 0;
  background: linear-gradient(to top, rgba(26, 30, 38, 0.7) 0%, transparent 50%);
}

.location-component .wildlife-slide-caption {
  position: absolute;
  bottom: 40px;
  left: 40px;
  z-index: 2;
  max-width: 500px;
}

.location-component .wildlife-slide-caption h4 {
  font-family: 'Playfair Display', serif;
  font-size: clamp(24px, 3vw, 36px);
  color: var(--text-light);
  margin-bottom: 4px;
}

.location-component .wildlife-slide-caption p {
  color: rgba(255, 255, 255, 0.6);
  font-size: 15px;
  font-weight: 300;
}

/* Carousel Controls */

.location-component .wildlife-controls {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 24px;
  padding: 20px 24px;
  background: rgba(26, 30, 38, 0.6);
  backdrop-filter: blur(10px);
  -webkit-backdrop-filter: blur(10px);
  border-top: 1px solid rgba(202, 166, 106, 0.08);
}

.location-component .wildlife-btn {
  width: 44px;
  height: 44px;
  border-radius: 50%;
  border: 1px solid rgba(202, 166, 106, 0.2);
  background: transparent;
  color: var(--text-light);
  cursor: pointer;
  transition: all 0.4s cubic-bezier(0.22, 1, 0.36, 1);
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 16px;
}

.location-component .wildlife-btn:hover {
  border-color: var(--gold-primary);
  background: rgba(202, 166, 106, 0.1);
  color: var(--gold-primary);
}

.location-component .wildlife-indicators {
  display: flex;
  gap: 8px;
}

.location-component .wildlife-indicator {
  width: 10px;
  height: 10px;
  border-radius: 50%;
  border: 1px solid rgba(255, 255, 255, 0.2);
  cursor: pointer;
  transition: all 0.4s cubic-bezier(0.22, 1, 0.36, 1);
}

.location-component .wildlife-indicator.active {
  background: var(--gold-primary);
  border-color: var(--gold-primary);
  box-shadow: 0 0 20px rgba(202, 166, 106, 0.3);
  width: 28px;
  border-radius: 5px;
}

.location-component .wildlife-indicator:hover {
  border-color: var(--gold-primary);
}

/* Location Pillars */

.location-component .location-pillars {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 30px;
  margin: 60px 0;
}

.location-component .location-pillar {
  padding: 32px 28px;
  background: rgba(255, 255, 255, 0.04);
  border: 1px solid rgba(202, 166, 106, 0.1);
  border-radius: 16px;
  text-align: center;
  transition: all 0.4s cubic-bezier(0.22, 1, 0.36, 1);
}

.location-component .location-pillar:hover {
  transform: translateY(-6px);
  border-color: var(--gold-primary);
  box-shadow: 0 20px 60px rgba(0, 0, 0, 0.15);
}

.location-component .location-pillar .pillar-icon {
  font-size: 36px;
  color: var(--gold-primary);
  margin-bottom: 16px;
  display: block;
}

.location-component .location-pillar h4 {
  font-family: 'Playfair Display', serif;
  font-size: 20px;
  color: var(--text-light);
  margin-bottom: 8px;
}

.location-component .location-pillar p {
  font-size: 14px;
  color: rgba(255, 255, 255, 0.6);
  line-height: 1.6;
}

/* CTA Actions */

.location-component .location-actions {
  display: flex;
  gap: 16px;
  flex-wrap: wrap;
  justify-content: center;
  margin-top: 40px;
}

.location-component .location-actions .btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  padding: 14px 36px;
  font-family: 'Inter', sans-serif;
  font-weight: 600;
  font-size: 15px;
  border-radius: 50px;
  border: 2px solid transparent;
  cursor: pointer;
  transition: all 0.4s cubic-bezier(0.22, 1, 0.36, 1);
  position: relative;
  overflow: hidden;
  letter-spacing: 0.5px;
  text-decoration: none;
}

.location-component .location-actions .btn-primary {
  background: linear-gradient(135deg, #caa66a 0%, #b1aa64 100%);
  color: #2c303b;
  border-color: #caa66a;
}

.location-component .location-actions .btn-primary:hover {
  transform: translateY(-2px);
  box-shadow: 0 8px 40px rgba(202, 166, 106, 0.25);
}

.location-component .location-actions .btn-primary::before {
  content: '';
  position: absolute;
  top: 0;
  left: -100%;
  width: 50%;
  height: 100%;
  background: linear-gradient(90deg, transparent, rgba(255, 255, 255, 0.3), transparent);
  transition: 0.8s ease;
}

.location-component .location-actions .btn-primary:hover::before {
  left: 150%;
}

.location-component .location-actions .btn-outline {
  background: transparent;
  color: var(--gold-primary);
  border-color: var(--gold-primary);
}

.location-component .location-actions .btn-outline:hover {
  background: var(--gold-primary);
  color: var(--dark);
  transform: translateY(-2px);
}

.location-component .location-actions .btn-outline::before {
  content: '';
  position: absolute;
  top: 0;
  left: -100%;
  width: 50%;
  height: 100%;
  background: linear-gradient(90deg, transparent, rgba(202, 166, 106, 0.3), transparent);
  transition: 0.8s ease;
}

.location-component .location-actions .btn-outline:hover::before {
  left: 150%;
}

/* Reveal Animations */

.location-component .location-reveal {
  opacity: 0;
  transform: translateY(40px);
  transition: all 0.8s cubic-bezier(0.22, 1, 0.36, 1);
}

.location-component .location-reveal.visible {
  opacity: 1;
  transform: translateY(0);
}

.location-component .location-reveal-delay-1 {
  transition-delay: 0.1s;
}

.location-component .location-reveal-delay-2 {
  transition-delay: 0.2s;
}

.location-component .location-reveal-delay-3 {
  transition-delay: 0.3s;
}

.location-component .location-reveal-delay-4 {
  transition-delay: 0.4s;
}

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

@media (max-width: 1024px) {
  .location-component .location-landscape {
    grid-template-columns: 1fr;
    gap: 40px;
  }

  .location-component .location-info-cards {
    grid-template-columns: repeat(2, 1fr);
    margin-top: -20px;
    padding: 0 10px;
  }

  .location-component .location-pillars {
    grid-template-columns: repeat(2, 1fr);
  }

}

@media (max-width: 768px) {
  .location-component {
    padding: 60px 0;
  }

  .location-component .location-header {
    margin-bottom: 40px;
  }

  .location-component .location-map-wrapper {
    aspect-ratio: 4/3;
  }

  .location-component .location-map-content {
    bottom: 20px;
    left: 20px;
    max-width: 80%;
  }

  .location-component .location-info-cards {
    grid-template-columns: 1fr;
    margin-top: -10px;
    padding: 0;
  }

  .location-component .location-info-card {
    padding: 20px 16px;
  }

  .location-component .location-landscape {
    margin: 40px 0;
  }

  .location-component .location-wildlife {
    margin: 40px 0;
  }

  .location-component .wildlife-track {
    aspect-ratio: 4/3;
    min-height: 250px;
  }

  .location-component .wildlife-slide-caption {
    bottom: 20px;
    left: 20px;
    max-width: 80%;
  }

  .location-component .wildlife-slide-caption h4 {
    font-size: 20px;
  }

  .location-component .wildlife-slide-caption p {
    font-size: 13px;
  }

  .location-component .wildlife-controls {
    padding: 14px 16px;
    gap: 16px;
  }

  .location-component .wildlife-btn {
    width: 36px;
    height: 36px;
    font-size: 14px;
  }

  .location-component .location-pillars {
    grid-template-columns: 1fr;
    gap: 20px;
    margin: 40px 0;
  }

  .location-component .location-pillar {
    padding: 24px 20px;
  }

  .location-component .location-actions {
    flex-direction: column;
    width: 100%;
  }

  .location-component .location-actions .btn {
    width: 100%;
    text-align: center;
  }

}

@media (max-width: 480px) {
  .location-component .location-header .section-title {
    font-size: 28px;
  }

  .location-component .location-map-wrapper {
    aspect-ratio: 1/1;
  }

  .location-component .wildlife-track {
    aspect-ratio: 1/1;
    min-height: 200px;
  }

  .location-component .wildlife-slide-caption {
    bottom: 16px;
    left: 16px;
  }

  .location-component .wildlife-slide-caption h4 {
    font-size: 17px;
  }

  .location-component .wildlife-slide-caption p {
    font-size: 12px;
  }

}

/* Reduced Motion */

@media (prefers-reduced-motion: reduce) {
  .location-component .location-reveal {
    opacity: 1;
    transform: none;
  }

  .location-component .location-map-image {
    transition: none;
  }

  .location-component .location-landscape-image img {
    transition: none;
  }

  .location-component .location-landscape-image:hover img {
    transform: none;
  }

  .location-component .wildlife-slide {
    transition: none;
  }

  .location-component .wildlife-slide.active .wildlife-slide-image {
    transform: none;
  }

  .location-component .wildlife-slide-image {
    transform: none;
  }

  .location-component .location-info-card {
    transition: none;
  }

  .location-component .location-info-card:hover {
    transform: none;
  }

  .location-component .location-pillar {
    transition: none;
  }

  .location-component .location-pillar:hover {
    transform: none;
  }

  .location-component .location-actions .btn {
    transition: none;
  }

  .location-component .location-actions .btn:hover {
    transform: none;
  }

  .location-component .location-actions .btn-primary::before,
.location-component .location-actions .btn-outline::before {
    display: none;
  }

}

/* Component styles are inherited from base CSS */

