* {
  box-sizing: border-box;
  margin: 0;
  padding: 0;
}

body {
  font-family: 'Open Sans', sans-serif;
  font-weight: 300;
  background: #030303;
  color: white;
}

.background {
  background-image: linear-gradient(to bottom, transparent 40%, rgba(0, 0, 0, 0.95) 70%, #020202), url("https://i.imgur.com/9KVO1Ok.jpg");
  width: 100vw;
  height: 100vh;
  background-position: top;
  z-index: 1;
  position: relative;
  box-shadow: 0 50px 50px black;
}

.scroll-indicator {
  position: absolute;
  left: 50%;
  bottom: 24px;
  transform: translateX(-50%);
  width: 28px;
  height: 48px;
  border: 2px solid rgba(255, 255, 255, 0.6);
  border-radius: 18px;
  z-index: 120;
}

.scroll-indicator::after {
  content: "";
  position: absolute;
  left: 50%;
  top: 8px;
  width: 6px;
  height: 6px;
  background: rgba(255, 255, 255, 0.85);
  border-radius: 50%;
  transform: translateX(-50%);
  animation: wheel 1.6s ease-in-out infinite;
}

@keyframes wheel {
  0% {
    opacity: 0;
    transform: translate(-50%, -4px);
  }

  30% {
    opacity: 1;
  }

  100% {
    opacity: 0;
    transform: translate(-50%, 18px);
  }
}

h1 {
  position: absolute;
  top: 45%;
  left: 50%;
  transform: translate(-50%, -50%);
  z-index: 100;
  font-family: 'Gruppo', cursive;
  text-transform: uppercase;
  letter-spacing: 0.5rem;
  font-size: 3rem;
  color: white;
  text-shadow: 2px 2px 5px;
  margin-bottom: 0;
}

.hero-subtitle {
  position: absolute;
  top: 55%;
  left: 50%;
  transform: translate(-50%, -50%);
  z-index: 100;
  font-size: 1.2rem;
  color: rgba(255, 255, 255, 0.9);
  text-align: center;
  font-weight: 300;
  letter-spacing: 0.1rem;
  text-shadow: 1px 1px 3px rgba(0, 0, 0, 0.5);
}

.layer {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background-position: center;
  background-size: cover;
  background-repeat: no-repeat;
}

.layer-1 {
  background-image: linear-gradient(to bottom, transparent 50%, rgba(0, 0, 0, 0.85) 70%, #020202), url("https://i.imgur.com/bwEm8WB.png");
  z-index: 70;
}

.layer-2 {
  background-image: linear-gradient(to bottom, transparent 30%, rgba(0, 0, 0, 0.9) 80%, #020202), url("https://i.imgur.com/XxTPjmC.png");
  z-index: 80;
}

.layer-3 {
  background-image:
    linear-gradient(to bottom, transparent 60%, rgba(0, 0, 0, 0.85), #020202), url("https://i.imgur.com/F4xnzjU.png");
  z-index: 90;
}

.layer-4 {
  background-image: linear-gradient(to bottom, rgba(0, 0, 0, 0.1), rgba(0, 0, 0, 0.85)), url("https://i.imgur.com/XxTPjmC.png");
  background-position: top center;
  opacity: 0.7;
  z-index: 60;

}

.layer-5 {
  background-image: linear-gradient(to bottom, transparent 20%, rgba(0, 0, 0, 0.9) 80%), url("https://i.imgur.com/9KVO1Ok.jpg");
  background-position: center top;
  background-size: cover;
  opacity: 0.6;
  z-index: 50;

}

.layer-6 {
  background-image: linear-gradient(to bottom, transparent, rgba(0, 0, 0, 0.8)), url("https://i.imgur.com/bwEm8WB.png");
  background-position: center bottom;
  opacity: 0.85;
  z-index: 65;

}

.moon {
  position: absolute;
  right: 8%;
  top: 12%;
  width: 160px;
  height: 160px;
  background: radial-gradient(circle at 30% 30%, #fff, #f0f0f0 60%, #d6d6d6 100%);
  border-radius: 50%;
  box-shadow: 0 0 40px rgba(255, 255, 255, 0.25);
  z-index: 40;

  opacity: 0.9;
}

.content {
  font-size: 1.2rem;
  line-height: 1.7;
  position: relative;
  background-image: url("https://images.pexels.com/photos/998641/pexels-photo-998641.jpeg?auto=compress&cs=tinysrgb&dpr=2&w=500");
  background-size: cover;
  background-attachment: fixed;
}

.text {
  padding: 4rem 10rem 20rem 40rem;
}

.content-2 {
  min-height: 220vh;
  background: linear-gradient(180deg, #050505 0%, #0b0b0b 60%, #0e0e0e 100%);
}

.content-2 .text {
  padding: 6rem 3rem;
}


.v-section {
  position: relative;
  min-height: 100vh;
  background-image: var(--bg);
  background-size: cover;
  background-position: center;
  background-attachment: fixed;
  display: flex;
  align-items: center;
  justify-content: center;
  overflow: hidden;
  transition: all 0.6s ease-in-out;
}

.v-section::before {
  content: '';
  position: absolute;
  inset: 0;
  background-image: var(--bg);
  background-size: cover;
  background-position: center;
  background-attachment: fixed;
  transform: scale(1);
  transition: transform 0.8s ease-out;
  z-index: 1;
}

.v-section:hover::before {
  transform: scale(1.05);
}

.v-overlay {
  position: absolute;
  inset: 0;
  background: linear-gradient(180deg, rgba(0, 0, 0, 0.25) 0%, rgba(0, 0, 0, 0.65) 60%, rgba(0, 0, 0, 0.9) 100%);
  z-index: 2;
  transition: background 0.3s ease;
}

.v-section:hover .v-overlay {
  background: linear-gradient(180deg, rgba(0, 0, 0, 0.15) 0%, rgba(0, 0, 0, 0.55) 60%, rgba(0, 0, 0, 0.8) 100%);
}

.v-content {
  position: relative;
  text-align: center;
  max-width: 60ch;
  padding: 0 2rem;
  transform: translateY(24px);
  opacity: 0.9;
  z-index: 3;
  transition: transform 0.3s ease, opacity 0.3s ease;
}

.v-section:hover .v-content {
  transform: translateY(12px);
  opacity: 1;
}

.v-section.section-active {
  filter: brightness(1.1);
}

.v-section.section-active .v-content {
  animation: fadeInUp 0.8s ease-out forwards;
}

@keyframes fadeInUp {
  from {
    opacity: 0.8;
    transform: translateY(30px);
  }

  to {
    opacity: 1;
    transform: translateY(0);
  }
}

.v-content h2 {
  font-size: 2.6rem;
  margin-bottom: 0.5rem;
}

.v-content p {
  font-size: 1.1rem;
  margin-bottom: 1rem;
}

.v-cta {
  display: inline-block;
  padding: 0.65rem 1rem;
  background: #00d1b2;
  color: #081414;
  text-decoration: none;
  font-weight: 700;
  border-radius: 6px;
}

.hs-container {
  height: 220vh;
}

.hs-stage {
  position: sticky;
  top: 0;
  height: 100vh;
  overflow: hidden;
}

.hs-track {
  position: absolute;
  top: 0;
  left: 0;
  height: 100%;
  display: flex;
  will-change: transform;
}

.hs-panel {
  position: relative;
  width: 100vw;
  height: 100vh;
  flex: 0 0 100vw;
  background-image: var(--bg);
  background-size: cover;
  background-position: center;
}

.hs-panel .hs-bg {
  position: absolute;
  inset: 0;
  background-image: var(--bg);
  background-size: 110% 110%;
  background-position: center;
  transform: scale(1);
  will-change: transform;
}

.hs-panel[data-panel="alpine"] .flake,
.hs-panel[data-panel="desert"] .grain,
.hs-panel[data-panel="sea"] .bubble {
  position: absolute;
  border-radius: 50%;
  background: rgba(255, 255, 255, 0.9);
  opacity: 0.7;
  will-change: transform;
}

.hs-panel[data-panel="sea"] .bubble {
  background: rgba(255, 255, 255, 0.85);
  box-shadow: 0 0 10px rgba(0, 160, 220, 0.35) inset;
}

.hs-panel[data-panel="alpine"] .flake {
  box-shadow: 0 0 8px rgba(255, 255, 255, 0.5);
}

.hs-panel[data-panel="desert"] .grain {
  background: rgba(255, 230, 180, 0.9);
  box-shadow: 0 0 6px rgba(255, 180, 80, 0.2);
}

.hs-panel[data-panel="city"] .neon-lines .line {
  position: absolute;
  width: 3px;
  background: linear-gradient(180deg, rgba(255, 0, 150, 0.0), rgba(255, 0, 150, 0.8), rgba(0, 200, 255, 0.0));
  filter: drop-shadow(0 0 10px rgba(255, 0, 150, 0.55));
  will-change: transform;
}

.hs-panel[data-panel="desert"] .sun {
  position: absolute;
  right: 10%;
  top: 15%;
  width: 160px;
  height: 160px;
  border-radius: 50%;
  background: radial-gradient(circle at 30% 30%, #fff5cc, #ffd27a 60%, #ffb347 100%);
  box-shadow: 0 0 60px rgba(255, 187, 87, 0.45);
  will-change: transform;
}

.hs-parallax {
  position: absolute;
  border-radius: 50%;
  background: radial-gradient(circle at 30% 30%, rgba(255, 255, 255, 0.9), rgba(255, 255, 255, 0.25));
  mix-blend-mode: screen;
  opacity: 0.6;
  pointer-events: none;
  will-change: transform;
}

.hs-caption {
  position: absolute;
  left: 5vw;
  bottom: 8vh;
  max-width: 40ch;
  background: rgba(0, 0, 0, 0.45);
  border: 1px solid rgba(255, 255, 255, 0.15);
  padding: 1rem 1.25rem;
  border-radius: 10px;
  box-shadow: 0 10px 30px rgba(0, 0, 0, 0.4);
}

.hs-caption h3 {
  font-size: 2rem;
  margin-bottom: 0.25rem;
}

.hs-caption p {
  opacity: 0.9;
  margin-bottom: 0.75rem;
}

.hs-cta {
  display: inline-block;
  padding: 0.55rem 0.9rem;
  background: #00d1b2;
  color: #081414;
  text-decoration: none;
  font-weight: 700;
  border-radius: 6px;
  transition: transform .15s ease, box-shadow .15s ease;
}

.hs-cta:hover {
  transform: translateY(-1px);
  box-shadow: 0 6px 18px rgba(0, 209, 178, 0.35);
}

.hs-dots {
  position: absolute;
  left: 50%;
  bottom: 24px;
  transform: translateX(-50%);
  display: flex;
  gap: 10px;
  z-index: 10;
}

.hs-dots button {
  width: 10px;
  height: 10px;
  border-radius: 50%;
  background: rgba(255, 255, 255, 0.35);
  border: none;
  cursor: pointer;
}

.hs-dots button.active {
  background: #00d1b2;
}

.c2-layer {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background-size: cover;
  background-position: center;
  will-change: transform;
}

.c2-back {
  background-image: linear-gradient(to top, rgba(0, 0, 0, 0.6), transparent 40%), url("https://images.unsplash.com/photo-1501785888041-af3ef285b470?q=80&w=1800&auto=format&fit=crop");
  z-index: 10;
}

.c2-mid {
  background-image: linear-gradient(to top, rgba(0, 0, 0, 0.5), transparent 40%), url("https://images.unsplash.com/photo-1469474968028-56623f02e42e?q=80&w=1800&auto=format&fit=crop");
  z-index: 20;
}

.c2-front {
  background-image: linear-gradient(to top, rgba(0, 0, 0, 0.5), transparent 40%), url("https://images.unsplash.com/photo-1500530855697-b586d89ba3ee?q=80&w=1800&auto=format&fit=crop");
  z-index: 30;
}

.c2-cards {
  position: absolute;
  inset: 0;
  display: grid;
  grid-template-columns: repeat(3, minmax(220px, 1fr));
  gap: 2rem;
  align-content: center;
  justify-items: center;
  z-index: 40;
  padding: 2rem;
}

.c2-card {
  background: rgba(0, 0, 0, 0.5);
  border: 1px solid rgba(255, 255, 255, 0.1);
  box-shadow: 0 10px 30px rgba(0, 0, 0, 0.4);
  border-radius: 12px;
  overflow: hidden;
  transform: translateZ(0);
  will-change: transform;
}

.c2-card img {
  width: 100%;
  height: 220px;
  object-fit: cover;
  display: block;
}

.c2-card figcaption {
  padding: 0.75rem 1rem;
  font-weight: 600;
  letter-spacing: 0.02em;
}

@media (max-width: 900px) {
  .c2-cards {
    grid-template-columns: 1fr;
  }
}

.rock {
  background-image: url("https://i.imgur.com/F4xnzjU.png");
  width: 100vw;
  height: 100vh;
  position: absolute;
  bottom: 0;
  left: 0;
  background-position: left center;
  -webkit-transform: scaleX(-1);
  transform: scaleX(-1);
}

.rocks {
  position: absolute;
  z-index: 1000;
}

.rock-1 {
  width: 100px;
  height: 100px;
  left: 10%;
  top: 50%;
}

.rock-2 {
  width: 120px;
  height: 120px;
  left: 20%;
  top: 30%;
}

.rock-3 {
  width: 80px;
  height: 80px;
  left: 10%;
  bottom: 20%;
}

.rock-4 {
  width: 130px;
  height: 130px;
  bottom: 0;
  left: 31%;
}

.rock-5 {
  width: 110px;
  height: 110px;
  bottom: 0;
  left: 5%;
  -webkit-transform: scaleX(-1);
  transform: scaleX(-1);
}

.rock-6 {
  width: 70px;
  height: 70px;
  bottom: 30%;
  left: 20%;
}

.rock-7 {
  width: 120px;
  height: 120px;
  bottom: 35%;
  left: 15%;
  -webkit-transform: scaleX(-1);
  transform: scaleX(-1);
}

.rock-8 {
  width: 50px;
  height: 50px;
  bottom: 25%;
  left: 25%;
  -webkit-transform: scaleX(-1);
  transform: scaleX(-1);
}

.rock-9 {
  width: 70px;
  height: 70px;
  bottom: 35%;
  left: 30%;
}

/* Navigation Styles */
.main-nav {
  position: fixed;
  top: 0;
  left: 0;
  width: 100%;
  background: rgba(0, 0, 0, 0.9);
  backdrop-filter: blur(10px);
  z-index: 1000;
  transition: all 0.3s ease;
}

.nav-container {
  max-width: 1200px;
  margin: 0 auto;
  display: flex;
  justify-content: space-between;
  align-items: center;
  padding: 1rem 2rem;
}

.nav-logo {
  font-family: 'Gruppo', cursive;
  font-size: 1.8rem;
  font-weight: bold;
  letter-spacing: 0.2rem;
  color: #00d1b2;
}

.nav-menu {
  display: flex;
  list-style: none;
  gap: 2rem;
}

.nav-menu a {
  color: white;
  text-decoration: none;
  font-weight: 400;
  transition: color 0.3s ease;
  position: relative;
}

.nav-menu a:hover {
  color: #00d1b2;
}

.nav-menu a::after {
  content: '';
  position: absolute;
  bottom: -5px;
  left: 0;
  width: 0;
  height: 2px;
  background: #00d1b2;
  transition: width 0.3s ease;
}

.nav-menu a:hover::after {
  width: 100%;
}

/* Enhanced text content */
.text h2 {
  font-size: 2.5rem;
  margin-bottom: 1.5rem;
  color: white;
  font-family: 'Gruppo', cursive;
  letter-spacing: 0.1rem;
}

.adventure-quote {
  background: rgba(0, 209, 178, 0.1);
  border-left: 4px solid #00d1b2;
  padding: 1.5rem;
  margin: 2rem 0;
  font-style: italic;
  font-size: 1.1rem;
  border-radius: 0 8px 8px 0;
}

.adventure-quote cite {
  display: block;
  margin-top: 0.5rem;
  font-weight: 600;
  color: #00d1b2;
}

/* Stories Section */
.stories-section {
  background: linear-gradient(135deg, #0a0a0a 0%, #1a1a1a 50%, #0a0a0a 100%);
  padding: 6rem 0;
  position: relative;
}

.stories-container {
  max-width: 1200px;
  margin: 0 auto;
  padding: 0 2rem;
}

.stories-section h2 {
  text-align: center;
  font-size: 3rem;
  font-family: 'Gruppo', cursive;
  letter-spacing: 0.2rem;
  margin-bottom: 3rem;
  color: white;
}

.stories-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(350px, 1fr));
  gap: 2rem;
  margin-top: 2rem;
}

.story-card {
  background: rgba(255, 255, 255, 0.05);
  border-radius: 15px;
  overflow: hidden;
  transition: transform 0.3s ease, box-shadow 0.3s ease, opacity 0.6s ease;
  border: 1px solid rgba(255, 255, 255, 0.1);
  opacity: 0;
  transform: translateY(30px);
}

.story-card.animated {
  opacity: 1;
  transform: translateY(0);
}

.story-card:hover {
  transform: translateY(-5px);
  box-shadow: 0 15px 35px rgba(0, 0, 0, 0.3);
}

.story-image {
  height: 200px;
  background-size: cover;
  background-position: center;
  position: relative;
}

.story-content {
  padding: 1.5rem;
}

.story-content h3 {
  font-size: 1.4rem;
  margin-bottom: 1rem;
  color: white;
  font-weight: 600;
}

.story-content p {
  color: rgba(255, 255, 255, 0.8);
  line-height: 1.6;
  margin-bottom: 1rem;
}

.story-meta {
  color: #00d1b2;
  font-size: 0.9rem;
  font-weight: 500;
  letter-spacing: 0.05rem;
}

/* Gear Showcase Section */
.gear-showcase {
  position: relative;
  min-height: 80vh;
  display: flex;
  align-items: center;
  justify-content: center;
  overflow: hidden;
  background-attachment: fixed;
  background-image: url('https://images.unsplash.com/photo-1464207687429-7505649dae38?q=80&w=2400&auto=format&fit=crop');
  background-size: cover;
  background-position: center;
}

.gear-parallax-bg {
  position: absolute;
  inset: 0;
  background: linear-gradient(135deg, rgba(0, 0, 0, 0.7) 0%, rgba(0, 0, 0, 0.5) 50%, rgba(0, 0, 0, 0.8) 100%);
}

.gear-content {
  position: relative;
  text-align: center;
  max-width: 1000px;
  padding: 0 2rem;
  z-index: 10;
}

.gear-content h2 {
  font-size: 3rem;
  margin-bottom: 1rem;
  color: white;
  font-family: 'Gruppo', cursive;
}

.gear-subtitle {
  font-size: 1.2rem;
  color: rgba(255, 255, 255, 0.8);
  margin-bottom: 3rem;
}

.gear-stats {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(200px, 1fr));
  gap: 2rem;
  margin-top: 2rem;
}

.stat-item {
  background: rgba(0, 209, 178, 0.1);
  border: 1px solid rgba(0, 209, 178, 0.3);
  border-radius: 10px;
  padding: 2rem 1rem;
  text-align: center;
  transition: transform 0.3s ease;
}

.stat-item:hover {
  transform: translateY(-3px);
  background: rgba(0, 209, 178, 0.15);
}

.stat-number {
  display: block;
  font-size: 2.5rem;
  font-weight: bold;
  color: #00d1b2;
  margin-bottom: 0.5rem;
}

.stat-label {
  color: rgba(255, 255, 255, 0.9);
  font-size: 0.9rem;
  letter-spacing: 0.05rem;
}

/* Footer Styles */
.main-footer {
  background: linear-gradient(135deg, #020202 0%, #0a0a0a 50%, #020202 100%);
  padding: 4rem 0 2rem;
  border-top: 1px solid rgba(255, 255, 255, 0.1);
}

.footer-content {
  max-width: 1200px;
  margin: 0 auto;
  padding: 0 2rem;
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
  gap: 2rem;
}

.footer-section h3,
.footer-section h4 {
  color: #00d1b2;
  margin-bottom: 1rem;
  font-size: 1.2rem;
}

.footer-section p {
  color: rgba(255, 255, 255, 0.8);
  line-height: 1.6;
  margin-bottom: 1rem;
}

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

.footer-section ul li {
  margin-bottom: 0.5rem;
}

.footer-section ul li a {
  color: rgba(255, 255, 255, 0.7);
  text-decoration: none;
  transition: color 0.3s ease;
}

.footer-section ul li a:hover {
  color: #00d1b2;
}

.social-links {
  display: flex;
  gap: 1rem;
  margin-top: 1rem;
}

.social-links a {
  font-size: 1.5rem;
  text-decoration: none;
  transition: transform 0.3s ease;
}

.social-links a:hover {
  transform: scale(1.2);
}

.footer-cta {
  display: inline-block;
  background: #00d1b2;
  color: #081414;
  padding: 0.8rem 1.5rem;
  border-radius: 6px;
  text-decoration: none;
  font-weight: 600;
  margin: 1rem 0;
  transition: transform 0.3s ease, box-shadow 0.3s ease;
}

.footer-cta:hover {
  transform: translateY(-2px);
  box-shadow: 0 8px 20px rgba(0, 209, 178, 0.3);
}

.footer-contact {
  font-size: 0.9rem;
  color: rgba(255, 255, 255, 0.6);
}

.footer-bottom {
  max-width: 1200px;
  margin: 2rem auto 0;
  padding: 2rem;
  border-top: 1px solid rgba(255, 255, 255, 0.1);
  text-align: center;
  color: rgba(255, 255, 255, 0.6);
  font-size: 0.9rem;
}

.footer-bottom a {
  color: #00d1b2;
  text-decoration: none;
}

@media only screen and (max-width: 1200px) {
  h1 {
    font-size: 2rem;
    letter-spacing: 0.1rem;
    text-align: center;
  }

  .hero-subtitle {
    font-size: 1rem;
    top: 58%;
  }

  .rocks,
  .rock {
    display: none;
  }

  .text {
    padding: 0 3rem 5rem 3rem;
  }

  .content-2 .text {
    padding: 3rem 1.5rem;
  }

  .nav-container {
    padding: 1rem;
  }

  .nav-menu {
    gap: 1rem;
  }

  .stories-grid {
    grid-template-columns: 1fr;
  }

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

  .footer-content {
    grid-template-columns: 1fr;
    text-align: center;
  }
}

@media only screen and (max-width: 768px) {
  .nav-menu {
    display: none;
  }

  .nav-logo {
    font-size: 1.5rem;
  }

  .gear-stats {
    grid-template-columns: 1fr;
  }

  .text h2 {
    font-size: 2rem;
  }

  .stories-section h2 {
    font-size: 2.2rem;
  }

  .gear-content h2 {
    font-size: 2.2rem;
  }
}