/* ========================================
   COLORADO MOUNTAIN HERO STYLES
   Animated hero sections with Colorado imagery
   ======================================== */

/* === HERO SLIDESHOW CONTAINER === */
.colorado-hero {
  position: relative;
  width: 100%;
  height: 100vh;
  min-height: 600px;
  overflow: hidden;
  display: flex;
  align-items: center;
  justify-content: center;
}

/* === SLIDESHOW BACKGROUND === */
.hero-slideshow {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  z-index: 0;
}

.hero-slideshow .slide {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  opacity: 0;
  transform: scale(1);
  transition: opacity 2s ease-in-out;
  will-change: transform, opacity;
}

.hero-slideshow .slide.active {
  opacity: 1;
  animation: kenBurns 12s ease-out forwards;
}

.hero-slideshow .slide img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: center;
}

/* === KEN BURNS EFFECT === */
@keyframes kenBurns {
  0% {
    transform: scale(1) translate(0, 0);
  }
  100% {
    transform: scale(1.15) translate(-2%, -2%);
  }
}

@keyframes kenBurnsAlt {
  0% {
    transform: scale(1.1) translate(-2%, 0);
  }
  100% {
    transform: scale(1) translate(2%, -2%);
  }
}

@keyframes kenBurnsZoom {
  0% {
    transform: scale(1);
  }
  100% {
    transform: scale(1.2);
  }
}

/* === OVERLAY GRADIENT === */
.hero-overlay {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background: linear-gradient(
    135deg,
    rgba(11, 18, 32, 0.85) 0%,
    rgba(139, 0, 0, 0.4) 50%,
    rgba(11, 18, 32, 0.75) 100%
  );
  z-index: 1;
}

/* Mountain silhouette decoration */
.hero-overlay::before {
  content: '';
  position: absolute;
  bottom: 0;
  left: 0;
  width: 100%;
  height: 200px;
  background: linear-gradient(to top, #0b1220 0%, transparent 100%);
  z-index: 2;
}

/* === HERO CONTENT === */
.hero-content {
  position: relative;
  z-index: 10;
  text-align: center;
  max-width: 900px;
  padding: 40px;
  animation: fadeInUp 1.2s ease-out;
}

.hero-content .logo-container {
  margin-bottom: 24px;
}

.hero-content .hero-logo {
  width: 150px;
  height: 150px;
  border-radius: 50%;
  border: 4px solid #d4af37;
  box-shadow: 0 8px 32px rgba(212, 175, 55, 0.3),
              0 0 60px rgba(212, 175, 55, 0.15);
  animation: logoPulse 3s ease-in-out infinite;
  background: #fff;
}

.hero-content h1 {
  font-size: clamp(2.5rem, 6vw, 4.5rem);
  font-weight: 800;
  color: #fff;
  text-shadow: 0 4px 20px rgba(0, 0, 0, 0.5);
  margin: 0 0 16px;
  letter-spacing: -1px;
  line-height: 1.1;
  animation: textReveal 1s ease-out 0.3s both;
}

.hero-content h1 .accent-text {
  color: #d4af37;
  display: block;
  font-size: 0.6em;
  letter-spacing: 4px;
  font-weight: 600;
  text-transform: uppercase;
  margin-top: 8px;
}

.hero-content .tagline {
  font-size: clamp(1.1rem, 2.5vw, 1.5rem);
  color: rgba(255, 255, 255, 0.9);
  margin: 0 0 32px;
  font-weight: 400;
  text-shadow: 0 2px 10px rgba(0, 0, 0, 0.3);
  animation: textReveal 1s ease-out 0.5s both;
}

/* === HERO CTA BUTTONS === */
.hero-cta {
  display: flex;
  gap: 16px;
  justify-content: center;
  flex-wrap: wrap;
  animation: fadeInUp 1s ease-out 0.7s both;
}

.hero-cta .btn-primary {
  background: linear-gradient(135deg, #b22222/80, #8b0000);
  color: #fff;
  padding: 16px 40px;
  font-size: 1.1rem;
  font-weight: 700;
  border: none;
  border-radius: 50px;
  cursor: pointer;
  transition: all 0.3s ease;
  box-shadow: 0 6px 25px rgba(178, 34, 34, 0.4);
  text-decoration: none;
  display: inline-flex;
  align-items: center;
  gap: 8px;
}

.hero-cta .btn-primary:hover {
  transform: translateY(-4px);
  box-shadow: 0 12px 35px rgba(178, 34, 34, 0.5);
  background: linear-gradient(135deg, #c62828, #b22222);
}

.hero-cta .btn-secondary {
  background: transparent;
  color: #d4af37;
  padding: 16px 40px;
  font-size: 1.1rem;
  font-weight: 700;
  border: 2px solid #d4af37;
  border-radius: 50px;
  cursor: pointer;
  transition: all 0.3s ease;
  text-decoration: none;
  display: inline-flex;
  align-items: center;
  gap: 8px;
}

.hero-cta .btn-secondary:hover {
  background: #d4af37;
  color: #0b1220;
  transform: translateY(-4px);
  box-shadow: 0 8px 25px rgba(212, 175, 55, 0.3);
}

/* === HERO INFO CHIPS === */
.hero-info {
  display: flex;
  gap: 12px;
  justify-content: center;
  flex-wrap: wrap;
  margin-top: 32px;
  animation: fadeInUp 1s ease-out 0.9s both;
}

.hero-info .info-chip {
  background: rgba(255, 255, 255, 0.1);
  backdrop-filter: blur(10px);
  border: 1px solid rgba(212, 175, 55, 0.3);
  padding: 10px 20px;
  border-radius: 50px;
  color: #fff;
  font-size: 0.95rem;
  display: flex;
  align-items: center;
  gap: 8px;
}

.hero-info .info-chip .icon {
  color: #d4af37;
}

/* === SCROLL INDICATOR === */
.scroll-indicator {
  position: absolute;
  bottom: 40px;
  left: 50%;
  transform: translateX(-50%);
  z-index: 10;
  animation: bounce 2s infinite;
}

.scroll-indicator a {
  color: #d4af37;
  font-size: 2rem;
  opacity: 0.7;
  transition: opacity 0.3s ease;
}

.scroll-indicator a:hover {
  opacity: 1;
}

/* === FLOATING ELEMENTS === */
.floating-element {
  position: absolute;
  z-index: 5;
  opacity: 0.1;
  pointer-events: none;
}

.floating-element.element-1 {
  top: 15%;
  left: 10%;
  width: 80px;
  height: 80px;
  background: radial-gradient(circle, #d4af37 0%, transparent 70%);
  border-radius: 50%;
  animation: float 6s ease-in-out infinite;
}

.floating-element.element-2 {
  top: 60%;
  right: 15%;
  width: 120px;
  height: 120px;
  background: radial-gradient(circle, #b22222 0%, transparent 70%);
  border-radius: 50%;
  animation: float 8s ease-in-out infinite reverse;
}

.floating-element.element-3 {
  bottom: 25%;
  left: 20%;
  width: 60px;
  height: 60px;
  background: radial-gradient(circle, #d4af37 0%, transparent 70%);
  border-radius: 50%;
  animation: float 5s ease-in-out infinite 1s;
}

/* === SECTION HERO (Smaller) === */
.section-hero {
  position: relative;
  width: 100%;
  height: 50vh;
  min-height: 350px;
  max-height: 500px;
  overflow: hidden;
  display: flex;
  align-items: center;
  justify-content: center;
}

.section-hero .hero-slideshow .slide img {
  filter: brightness(0.8);
}

.section-hero .hero-overlay {
  background: linear-gradient(
    180deg,
    rgba(11, 18, 32, 0.7) 0%,
    rgba(11, 18, 32, 0.5) 50%,
    rgba(11, 18, 32, 0.9) 100%
  );
}

.section-hero .hero-content h2 {
  font-size: clamp(2rem, 5vw, 3.5rem);
  margin: 0;
  color: #fff;
  text-shadow: 0 4px 20px rgba(0, 0, 0, 0.5);
}

.section-hero .hero-content p {
  font-size: clamp(1rem, 2vw, 1.3rem);
  color: rgba(255, 255, 255, 0.85);
  margin: 16px 0 0;
}

/* === PARALLAX EFFECT === */
.parallax-bg {
  transform: translateZ(0);
  will-change: transform;
}

/* === ANIMATIONS === */
@keyframes fadeInUp {
  from {
    opacity: 0;
    transform: translateY(40px);
  }
  to {
    opacity: 1;
    transform: translateY(0);
  }
}

@keyframes textReveal {
  from {
    opacity: 0;
    transform: translateY(30px);
    filter: blur(10px);
  }
  to {
    opacity: 1;
    transform: translateY(0);
    filter: blur(0);
  }
}

@keyframes logoPulse {
  0%, 100% {
    box-shadow: 0 8px 32px rgba(212, 175, 55, 0.3),
                0 0 60px rgba(212, 175, 55, 0.15);
  }
  50% {
    box-shadow: 0 8px 40px rgba(212, 175, 55, 0.5),
                0 0 80px rgba(212, 175, 55, 0.25);
  }
}

@keyframes float {
  0%, 100% {
    transform: translateY(0) rotate(0deg);
  }
  50% {
    transform: translateY(-20px) rotate(5deg);
  }
}

@keyframes bounce {
  0%, 20%, 50%, 80%, 100% {
    transform: translateX(-50%) translateY(0);
  }
  40% {
    transform: translateX(-50%) translateY(-15px);
  }
  60% {
    transform: translateX(-50%) translateY(-8px);
  }
}

/* === SLIDESHOW DOTS - HIDDEN FOR CLEANER LOOK === */
.slideshow-dots {
  display: none;
}

/* === PROGRESS BAR - HIDDEN FOR CLEANER LOOK === */
.slideshow-progress {
  display: none;
}

/* === RESPONSIVE === */
@media (max-width: 900px) {
  .colorado-hero {
    height: 100vh;
    min-height: 500px;
  }
  
  .hero-content {
    padding: 24px;
  }
  
  .hero-content .hero-logo {
    width: 120px;
    height: 120px;
  }
  
  .hero-cta .btn-primary,
  .hero-cta .btn-secondary {
    padding: 14px 28px;
    font-size: 1rem;
  }
  
  .hero-info {
    flex-direction: column;
    align-items: center;
  }
  
  .scroll-indicator {
    bottom: 20px;
  }
}

@media (max-width: 600px) {
  .colorado-hero {
    min-height: 100svh;
  }
  
  .hero-content h1 {
    font-size: 2rem;
  }
  
  .hero-content .hero-logo {
    width: 100px;
    height: 100px;
  }
  
  .hero-cta {
    flex-direction: column;
    align-items: center;
  }
  
  .hero-cta .btn-primary,
  .hero-cta .btn-secondary {
    width: 100%;
    max-width: 280px;
    justify-content: center;
  }
  
  .section-hero {
    height: 40vh;
    min-height: 280px;
  }
}

/* === ALPINE THEME DECORATIONS === */
.mountain-divider {
  position: absolute;
  bottom: -1px;
  left: 0;
  width: 100%;
  height: 80px;
  z-index: 15;
}

.mountain-divider svg {
  width: 100%;
  height: 100%;
  fill: #0b1220;
}

/* === TEXTURE OVERLAY === */
.texture-overlay {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background-image: url("data:image/svg+xml,%3Csvg viewBox='0 0 256 256' xmlns='http://www.w3.org/2000/svg'%3E%3Cfilter id='noiseFilter'%3E%3CfeTurbulence type='fractalNoise' baseFrequency='0.9' numOctaves='4' stitchTiles='stitch'/%3E%3C/filter%3E%3Crect width='100%25' height='100%25' filter='url(%23noiseFilter)'/%3E%3C/svg%3E");
  opacity: 0.03;
  pointer-events: none;
  z-index: 2;
}

/* === VIGNETTE EFFECT === */
.vignette {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  box-shadow: inset 0 0 150px rgba(0, 0, 0, 0.6);
  pointer-events: none;
  z-index: 3;
}

/* === ENHANCED SECTION STYLING === */
.section {
  position: relative;
  background: linear-gradient(180deg, #0b1220 0%, #0f1627 50%, #0b1220 100%);
}

.section::before {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  height: 100px;
  background: linear-gradient(to bottom, rgba(11, 18, 32, 0.8), transparent);
  pointer-events: none;
  z-index: 1;
}

/* === CARD ENHANCEMENTS === */
.card {
  background: linear-gradient(145deg, rgba(255, 255, 255, 0.06), rgba(255, 255, 255, 0.02));
  border: 1px solid rgba(212, 175, 55, 0.15);
  backdrop-filter: blur(8px);
  transition: all 0.4s cubic-bezier(0.4, 0, 0.2, 1);
}

.card:hover {
  transform: translateY(-8px);
  border-color: rgba(212, 175, 55, 0.4);
  box-shadow: 
    0 20px 40px rgba(0, 0, 0, 0.4),
    0 0 30px rgba(212, 175, 55, 0.1);
}

.card h3 {
  color: #d4af37;
  font-size: 1.4rem;
  margin-bottom: 12px;
}

.card p {
  color: rgba(255, 255, 255, 0.8);
  line-height: 1.7;
}

/* === SPECIAL CARD ENHANCEMENTS === */
.special-card {
  background: linear-gradient(135deg, #1a1f2e 0%, #0f1627 100%);
  border: 1px solid rgba(212, 175, 55, 0.3);
  margin: 30px 0;
  position: relative;
  overflow: hidden;
}

.special-card::before {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 4px;
  background: linear-gradient(90deg, #b22222, #d4af37, #b22222);
  opacity: 0.8;
}

.special-card:hover {
  border-color: #d4af37;
  box-shadow: 
    0 15px 40px rgba(0, 0, 0, 0.5),
    0 0 40px rgba(212, 175, 55, 0.15);
}

.special-card h3 {
  color: #fff !important;
  font-size: 1.8rem !important;
}

.special-card .desc {
  color: rgba(255, 255, 255, 0.75) !important;
}

/* === GLOWING ACCENTS === */
.glow-accent {
  position: relative;
}

.glow-accent::after {
  content: '';
  position: absolute;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
  width: 200%;
  height: 200%;
  background: radial-gradient(
    ellipse at center,
    rgba(212, 175, 55, 0.1) 0%,
    transparent 50%
  );
  pointer-events: none;
  z-index: -1;
}

/* === PAGE DIVIDERS === */
.wave-divider {
  position: relative;
  margin-top: -1px;
}

.wave-divider svg {
  display: block;
  width: 100%;
  height: 60px;
  fill: #0b1220;
}

/* === SMOOTH SCROLL SNAP === */
@media (min-width: 901px) {
  html {
    scroll-behavior: smooth;
  }
}

/* === FADE IN ANIMATIONS ON SCROLL === */
.fade-in-section {
  opacity: 0;
  transform: translateY(30px);
  transition: opacity 0.8s ease, transform 0.8s ease;
}

.fade-in-section.visible {
  opacity: 1;
  transform: translateY(0);
}

/* === HEADER ENHANCEMENT === */
.header {
  background: linear-gradient(180deg, rgba(11, 18, 32, 0.95) 0%, rgba(11, 18, 32, 0.85) 100%);
  backdrop-filter: blur(15px);
  border-bottom: 1px solid rgba(212, 175, 55, 0.2);
}

/* === FOOTER ENHANCEMENT === */
.footer {
  background: linear-gradient(180deg, #0b1220 0%, #060912 100%);
  border-top: 1px solid rgba(212, 175, 55, 0.2);
  position: relative;
  overflow: hidden;
}

.footer::before {
  content: '';
  position: absolute;
  top: 0;
  left: 50%;
  transform: translateX(-50%);
  width: 200px;
  height: 1px;
  background: linear-gradient(90deg, transparent, #d4af37, transparent);
}
