@import url('https://fonts.googleapis.com/css2?family=Michroma&family=League+Gothic&family=Roboto+Mono:wght@200;400;600&family=Fira+Sans:wght@300;400;700&family=Goldman:wght@400;700&family=Tomorrow:wght@400;600&family=Monsieur+La+Doulaise&display=swap');

/* --- ROOT VARIABLES --- */
:root {
  /* Brand Colors */
  --blue: #0078D4;
  --blue-light: #5AA9E6;
  --black: #000;
  --white: #fff;

  /* Animation Speeds */
  --transition-fast: 0.2s ease;
  --transition-medium: 0.3s ease;
  --transition-slow: 0.5s ease;

  /* Layout */
  --section-padding: 120px 60px;
}

/* --- RESET --- */
* { margin: 0; padding: 0; box-sizing: border-box; }

html {
  scroll-behavior: smooth;
}

body {
  font-family: "Fira Sans", sans-serif;
  overflow-x: hidden;
  background: #F8FAFC;
  color: #1A1A1A;
  /* Odmik vsebine, da navbar ne prekrije vrha */
  padding-top: 0;
}

/* --- UTILITIES --- */
.section {
  padding: var(--section-padding);
  max-width: 1500px;
  margin: 0 auto;
}

/* =========================================================
   NAVBAR
   ========================================================= */
.navbar {
  position: fixed;              /* vedno na vrhu tudi pri scrollu */
  top: 0;
  left: 0;
  width: 100%;
  padding: 20px 40px;
  display: flex;
  justify-content: space-between;
  align-items: center;
  z-index: 1000;
  background: rgba(0, 0, 0, 0.7);  /* rahlo zatemnjen background za berljivost */
  backdrop-filter: blur(6px);
  border: none;
  transition: background 0.4s ease, backdrop-filter 0.4s ease;
}

/* opcijsko – če kdaj dodaš JS za dodajanje .scrolled razreda */
.navbar.scrolled {
  background: rgba(0, 0, 0, 0.85);
  backdrop-filter: blur(8px);
}

/* Language Buttons */
.lang-buttons {
  display: flex;
  gap: 30px;
}
.lang-buttons button {
  width: 36px;
  height: 30px;
  background: transparent;
  border: none;
  color: var(--white);
  font-size: 13px;
  font-family: "Roboto Mono", monospace;
  cursor: pointer;
  font-weight: 300;
  position: relative;
  perspective: 600px; /* depth for 3D flip */
}

.lang-buttons button .flip {
  position: relative;
  width: 100%;
  height: 100%;
  transform-style: preserve-3d;
  transition: transform 0.4s ease;
}

.lang-buttons button:hover .flip {
  transform: rotateX(180deg);
}

.lang-buttons button .front,
.lang-buttons button .back {
  position: absolute;
  inset: 0;
  display: flex;
  align-items: center;
  justify-content: center;
  backface-visibility: hidden;
  color: var(--white);
}

.lang-buttons button .back {
  transform: rotateX(180deg);
}



/* Centered Navbar Title */
.navbar-title {
  position: absolute;
  left: 50%;
  transform: translateX(-50%);
  letter-spacing: 0.5em;
  font-size: 14px;
  text-transform: uppercase;
  font-family: "Michroma", sans-serif;
  color: var(--white);
  white-space: nowrap;
}
.navbar-title a {
  position: relative;
  display: inline-block;
  color: white;
  text-decoration: none;
  font-family: "Michroma", sans-serif;
  letter-spacing: 0.5em;
  text-transform: uppercase;
  transition: color 0.3s ease;
  background: linear-gradient(90deg, white 0%, white 50%, var(--blue) 100%);
  background-size: 200%;
  background-clip: text;
  -webkit-text-fill-color: transparent;
}

.navbar-title a:hover {
  animation: gradient-move 1.5s linear forwards;
}

@keyframes gradient-move {
  0% {
    background-position: 200% 0;
  }
  100% {
    background-position: 0 0;
  }
}


/* Right Side (Vision/Menu) */
.navbar-right {
  position: fixed;
  top: 20px;
  right: 40px;
  display: flex;
  align-items: center;
  gap: 18px;
  z-index: 1001;
  transition: var(--transition-medium);
}

.navbar-line {
  height: 1px;
  width: 90px;
  background: rgba(255,255,255,0.6);
}

.navbar-word {
  color: var(--white);
  font-family: "Roboto Mono", monospace;
  font-weight: 200;
  letter-spacing: 0.1em;
  font-size: 13px;
  text-transform: uppercase;
  position: relative;
  line-height: 1;
  overflow: hidden;
  cursor: pointer;
  transition: var(--transition-medium);
}



.navbar-word:hover::after {
  top: 0;
}
.navbar-word:hover {

  opacity: 0.9;
}

/* Menu Toggle */
.menu-toggle {
  position: relative;
  width: 28px;
  height: 22px;
  background: transparent;
  border: none;
  cursor: pointer;
  display: flex;
  flex-direction: column;
  justify-content: space-between;
  transition: var(--transition-medium);
}

.menu-toggle .bar {
  width: 100%;
  height: 2px;
  background-color: var(--white);
  border-radius: 2px;
  transition: var(--transition-medium);
}

.navbar-right:hover .menu-toggle .bar:nth-child(1) {
  transform: rotate(45deg) translate(4.5px, 5px);
}
.navbar-right:hover .menu-toggle .bar:nth-child(2) {
  opacity: 0;
}
.navbar-right:hover .menu-toggle .bar:nth-child(3) {
  transform: rotate(-45deg) translate(4.5px, -5px);
}
.navbar-right:hover .menu-toggle {
  transform: scale(1.1);
}
.navbar-right.menu-open .navbar-word {
  color: transparent;
}
.navbar-right.menu-open .navbar-word::after {
  top: 0;
}
/* =========================================================
   SIDE MENU
   ========================================================= */
.side-menu {
  position: fixed;
  top: 0;
  right: -100%;
  width: 360px;
  height: 100vh;
  background: rgba(255,255,255,0.9);
  backdrop-filter: blur(14px);
  box-shadow: -5px 0 20px rgba(0,120,212,0.15);
  padding: 40px 50px;
  display: flex;
  flex-direction: column;
  justify-content: center;
  border-top-left-radius: 15px;
  border-bottom-left-radius: 15px;
  transition: right 0.5s ease;
  z-index: 999;
}
.side-menu.open {
  right: 20px;
  animation: menu-slide-in 0.6s ease forwards;
}
@keyframes menu-slide-in {
  from { transform: translateX(80px); opacity: 0.8; }
  to { transform: translateX(0); opacity: 1; }
}
.close-btn {
  position: absolute;
  top: 30px;
  background: none;
  border: none;
  font-size: 14px;
  letter-spacing: 2px;
  cursor: pointer;
  color: var(--blue);
  font-family: "League Gothic", sans-serif;
  transition: var(--transition-medium);
}
.close-btn:hover {
  color: var(--blue-light);
  letter-spacing: 3px;
}
.menu-title {
  font-family: "Michroma", sans-serif;
  font-size: 3rem;
  color: var(--blue);
}
.menu-subtitle {
  font-family: "Michroma", sans-serif;
  font-size: 2.5rem;
  color: var(--blue-light);
  margin-bottom: 50px;
}
.menu-links { list-style: none; margin-bottom: 40px; }
.menu-links li { margin: 15px 0; opacity: 0; transform: translateX(20px); }
.side-menu.open .menu-links li {
  animation: fadeInRight 0.4s ease forwards;
}
.side-menu.open .menu-links li:nth-child(1){animation-delay:0.1s;}
.side-menu.open .menu-links li:nth-child(2){animation-delay:0.2s;}
.side-menu.open .menu-links li:nth-child(3){animation-delay:0.3s;}
@keyframes fadeInRight { to{opacity:1;transform:translateX(0);} }

.menu-links a {
  text-decoration: none;
  color: var(--blue);
  letter-spacing: 2px;
  font-size: 14px;
  position: relative;
  transition: var(--transition-medium);
}
.menu-links a::after {
  content: "";
  position: absolute;
  left: 0; bottom: -4px;
  width: 0%;
  height: 2px;
  background: linear-gradient(90deg,var(--blue),var(--blue-light));
  transition: width var(--transition-medium);
}
.menu-links a:hover::after { width: 100%; }
.menu-links a:hover {
  background: linear-gradient(90deg,var(--blue),var(--blue-light));
  background-clip: text;
  -webkit-text-fill-color: transparent;
}

.menu-cta {
  display: inline-block;
  background: linear-gradient(90deg,var(--blue),var(--blue-light));
  color: var(--white);
  padding: 12px 24px;
  border-radius: 25px;
  font-weight: bold;
  letter-spacing: 1px;
  text-decoration: none;
  position: relative;
  overflow: hidden;
  transition: var(--transition-medium);
}
.menu-cta:hover {
  transform: translateY(-2px) scale(1.02);
  box-shadow: 0 5px 15px rgba(0,120,212,0.3);
}
.menu-cta::before {
  content: "";
  position: absolute;
  top: 0; left: -100%;
  width: 100%; height: 100%;
  background: linear-gradient(90deg,rgba(255,255,255,0.3),rgba(255,255,255,0));
  transition: left 0.4s ease;
}
.menu-cta:hover::before { left: 100%; }
/* Animation */
@keyframes menu-slide-in {
  from { transform: translateX(80px); opacity: 0.8; }
  to { transform: translateX(0); opacity: 1; }
}


/* =========================================================
   HERO SECTION
   ========================================================= */
.hero {
  position: relative;
  height: 100vh;
  background: url(images/user44.jpg) center/cover no-repeat;
  display: flex;
  align-items: center;
  padding: 0 50px;
  color: var(--white);
}

.hero::after {
  content: "";
  position: absolute;
  inset: 0;
  background: linear-gradient(rgba(0,0,0,0.55) 100%, transparent 70%);
}

.hero-content {
  position: relative;
  z-index: 1;
  max-width: 660px;
  margin-left: 60px;
}

.hero-content h1 {
  font-size: clamp(3rem, 8vw, 6.8rem);
  line-height: 0.9;
  letter-spacing: 3px;
  margin-bottom: 20px;
  font-family: "League Gothic", sans-serif;
}

/* CTA Button */
.cta-btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  background: linear-gradient(90deg, var(--blue), var(--blue-light));
  padding: 14px 48px;
  border-radius: 40px;
  color: var(--white);
  text-decoration: none;
  font-weight: bold;
  letter-spacing: 0.1em;
  position: relative;
  overflow: hidden;
  transition: var(--transition-medium);
}
.cta-btn:hover {
  background: linear-gradient(90deg, #015ca1, #3c93d6);
}

.cta-dot {
  position: absolute;
  top: 50%;
  left: 20px;
  width: 8px;
  height: 8px;
  border-radius: 50%;
  background: #9bd4ff;
  transform: translateY(-50%);
  transition: left 0.4s ease;
}
.cta-btn:hover .cta-dot {
  left: calc(100% - 28px);
}

.cta-text {
  display: inline-block;
  opacity: 1;
  filter: blur(0);
  font-family: "Roboto Mono", monospace;
  transition: opacity 0.3s ease, filter 0.3s ease;
}
.cta-btn:hover .cta-text {
  opacity: 0;
  filter: blur(3px);
  animation: blurReappear 0.5s ease 0.2s forwards;
}
@keyframes blurReappear {
  0% { opacity: 0; filter: blur(3px); }
  100% { opacity: 1; filter: blur(0); }
}

/* Scroll Indicator */
.scroll-indicator {
  position: absolute;
  left: 30px; bottom: 30px;
  display: flex;
  align-items: center;
  gap: 8px;
  color: var(--white);
  font-weight: 700;
  font-size: 14px;
  letter-spacing: 0.05em;
  z-index: 17;
}
.scroll-line {
  width: 2px;
  height: 60px;
  background: linear-gradient(to bottom, var(--blue), var(--blue-light));
  border-radius: 2px;
  animation: scroll-line-pulse 2s ease-in-out infinite;
}
@keyframes scroll-line-pulse {
  0%,100% { transform: scaleY(1); }
  50% { transform: scaleY(0.4); }
}

/* Thumbnails */
.thumbnail-container {
  position: absolute;
  right: 30px;
  bottom: 30px;
  display: flex;
  flex-direction: column;
  align-items: flex-end;
  z-index: 1;
}

.thumbnail-description {
  max-width: 480px;
  text-align: left;
  font-size: 17px;
  line-height: 1.4;
  margin-bottom: 18px;
  color: var(--white);
  font-family: "Roboto Mono", monospace;
  letter-spacing: 1px;
  font-weight: 300;
}
.thumbnail-line {
  width: 100%;
  height: 2px;
  background: rgba(255,255,255,0.7);
  margin-bottom: 60px;
}



/* (continues exactly as in your file with no edits) */





.features-light {
  background: black;
  color: white;
  padding: 120px 100px;
  font-family: "Fira Sans", sans-serif;
  overflow: hidden;
  min-height: 100vh; /* avoids weird scroll jumps on some screens */
}

/* TOP SECTION LAYOUT */
.features-top {
  display: grid;
  grid-template-columns: 1fr 1.5fr;
  align-items: center;
  gap: 60px;
  margin-bottom: 80px;
}

/* LEFT TEXT */
.features-text {
  display: flex;
  align-items: flex-start;
  gap: 20px;
}
.features-info h2 {
  font-family: "League Gothic", sans-serif;
  font-size: clamp(3rem, 8vw, 11rem);
  letter-spacing: 2px;
  color: white;
  margin-bottom: 20px;
}
.features-info p {
  font-size: 1rem;
  line-height: 1.8;
  color: #e6e6e6;
  margin-bottom: 25px;
  max-width: 500px;
  position: relative;
  padding-bottom: 20px;
  font-family: "Roboto Mono", monospace;
}
.features-info p::after {
  content: "";
  position: absolute;
  left: 0;
  bottom: 0;
  width: 500px;
  height: 1px;
  background-color: rgba(255, 255, 255, 0.6);
}
.features-link a {
  font-family: "Tomorrow", sans-serif;
  font-size: 1rem;
  letter-spacing: 0.5px;
  color: white;
  position: relative;
  text-decoration: none;
}
.features-link a::after {
  width: 0;
  right: 0;
  left: auto;
}
.features-link a:hover::after {
  content: "";
  position: absolute;
  left: 0;
  bottom: -3px;
  width: 100%;
  height: 1px;
  background: rgb(56, 179, 250);
  transition: width 0.3s ease;
}

/* IMAGE + VERTICAL TEXT */
.features-bike {
  display: flex;
  justify-content: flex-end;
  align-items: flex-end;
  gap: 15px;
}
.features-bike img {
  width: 750px;
  height: auto;
  transition: transform 0.6s ease;
}
.bike-vertical-text {
  writing-mode: vertical-rl;
  transform: rotate(180deg);
  font-family: "Roboto Mono", monospace;
  font-size: 0.7rem;
  letter-spacing: 1px;
  opacity: 0.85;
  text-align: center;
  max-height: 100%;
}

/* FEATURE BOXES */
.features-bottom {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(230px, 1fr));
  gap: 30px;
}
.feature-item {
  border: 1px solid rgba(255, 255, 255, 0.2);
  padding: 65px 30px;
  transition: all 0.3s ease;
}
.feature-item:hover { border-color: #4ad5ff; }
.feature-number {
  font-family: "Goldman", sans-serif;
  font-size: 3.5rem;
  margin-bottom: 10px;
  color: white;
}
.feature-item p {
  color: #c9c9c9;
  font-size: 0.95rem;
}

/* RESPONSIVE */
@media (max-width: 1100px) {
  .features-top {
    grid-template-columns: 1fr;
    text-align: center;
  }
  .features-bike {
    flex-direction: column;
    align-items: center;
  }
  .bike-vertical-text {
    writing-mode: horizontal-tb;
    transform: none;
    margin-top: 15px;
  }
  .features-bike img { width: 500px; }
}
@media (max-width: 700px) {
  .features-light { padding: 80px 40px; }
  .features-info h2 { font-size: 3.5rem; }
  .features-bike img { width: 350px; }
}

/* ===== EXPLORE SECTION (STATS STRUCTURE) ===== */
.explore {
  position: relative;
  height: 100vh;
  background-image: url(images/ozadje2.png);
  background-size: cover;
  background-position: center;
  display: flex;
  align-items: center;
  color: white;
  overflow: hidden;
  padding: 0 50px;
  width: 100%;
}
.explore::after {
  content: "";
  position: absolute;
  inset: 0;
  background: rgba(0,0,0,0.75);
  z-index: 1;
}
.explore-width {
  width: 100%;
  max-width: 1500px;
  margin: 0 auto;
}
.explore-title {
  grid-column: 1 / -1;
  font-family: "Michroma", sans-serif;
  font-size: 2rem;
  letter-spacing: 2px;
  color: white;
  margin-bottom: 30px;
  text-align: left;
  align-self: start;
  font-weight: 100;
}
.explore-outline {
  position: absolute;
  left: 8%;
  max-height: 70%;
  height: auto;
  z-index: 2;
}
.explore-stats {
  position: absolute;
  right: 10%;
  top: 50%;
  transform: translateY(-50%);
  display: grid;
  grid-template-columns: repeat(2, minmax(200px, 1fr));
  gap: 2rem 4rem;
  z-index: 2;
  max-width: 550px;
}
.stat-item h4 {
  font-size: 0.9rem;
  text-transform: uppercase;
  font-weight: 400;
  letter-spacing: 1px;
  opacity: 0.8;
  margin-bottom: 0.3rem;
}
.stat-item h2 {
  font-size: 2rem;
  font-weight: 100;
  margin-bottom: 0.3rem;
  font-family: "Michroma", sans-serif;
}
.stat-item p {
  font-size: 0.85rem;
  line-height: 1.4;
  opacity: 0.85;
  font-family: "Roboto Mono", monospace;
}
.explore-text {
  display: flex;
  align-items: center;
  justify-content: flex-start;
  gap: 15px;
  margin-top: 40px;
}
.explore-line {
  flex: none;
  width: 420px;
  height: 1px;
  background-color: rgba(255, 255, 255, 0.6);
  transform: scaleX(0);
  transform-origin: left;
  transition: transform 0.8s ease;
  will-change: transform, opacity;
}
.explore-line.reveal { transform: scaleX(1); }
.ex-text {
  font-size: 0.7rem;
  color: white;
  font-family: "Roboto Mono", monospace;
  font-weight: 200;
  letter-spacing: 0.5px;
  white-space: nowrap;
}
.ex-text a {
  position: relative;
  text-decoration: none;
  color: white;
  font-weight: 300;
  transition: color 0.3s;
}
.ex-text a::after {
  content: "";
  position: absolute;
  left: 0;
  bottom: -2px;
  width: 0%;
  height: 1px;
  background: linear-gradient(90deg, #0078D4, #5AA9E6);
  transition: width 0.3s ease;
}
.ex-text a:hover::after { width: 100%; }



/* === PRICING SECTION === */
.pricing-section {
  background: #000;
  color: white;
  padding: 120px 60px;
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 80px;
}
.pricing-card {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 3rem;
  max-width: 1500px;
  width: 100%;
  border-top: 1px solid rgba(255, 255, 255, 0.3);
  padding-top: 2rem;
}
.pricing-card.main {
  border-bottom: 1px solid rgba(255, 255, 255, 0.2);
  padding-bottom: 3rem;
}
.pricing-image img {
  width: 100%;
  height: auto;
  object-fit: cover;
  display: block;
  transition: transform 0.4s ease;
}
.pricing-details {
  display: flex;
  flex-direction: column;
  justify-content: center;
}
.pricing-title {
  font-family: "Michroma", sans-serif;
  font-size: 1.8rem;
  margin-bottom: 1.2rem;
}
.pricing-row {
  display: flex;
  justify-content: space-between;
  padding: 0.6rem 0;
  border-bottom: 1px solid rgba(255, 255, 255, 0.15);
}
.pricing-label {
  font-size: 0.8rem;
  letter-spacing: 1px;
  opacity: 0.7;
  text-transform: uppercase;
}
.pricing-value {
  font-size: 0.8rem;
  font-weight: 400;
  text-align: right;
  font-family: "Roboto Mono", monospace;
}
.pricing-grid {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 40px;
  max-width: 1500px;
  width: 100%;
  margin: 0 auto;
  align-items: stretch;
}
.pricing-card.small {
  border-top: 1px solid rgba(255, 255, 255, 0.3);
  padding-top: 1.5rem;
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 2rem;
}
.pricing-card.small .pricing-image img {
  height: 100%;
  object-fit: cover;
}
.pricing-card.small .pricing-image {
  display: flex;
  flex-direction: column;
}
.pricing-card.small .pricing-details {
  display: flex;
  flex-direction: column;
  justify-content: center;
}
@media (max-width: 900px) {
  .pricing-card, .pricing-card.small { grid-template-columns: 1fr; }
  .pricing-grid { grid-template-columns: 1fr; }
  .pricing-row {
    flex-direction: column;
    align-items: flex-start;
  }
  .pricing-value {
    text-align: left;
    margin-top: 0.3rem;
  }
}

/* === Brands Section (Above Legal) === */
/* === Brands Section (Above Legal) === */
.brands-section {
  background: #000000;
  color: rgb(255, 255, 255);
  padding: 100px 0 0;
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 40px;
}

/* Hero Image wrapper */
.brands-hero {
  position: relative;
  width: 100%;
  height: 90vh;
  overflow: hidden;
  background: black;
}

.brands-hero img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  filter: brightness(0.9);
  transition: transform 4s ease;
}




/* Quote text */
.hero-quote {
  position: absolute;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
  text-align: center;
  color: #fff;
  font-family: "Fira Sans", sans-serif;
  z-index: 2;
  max-width: 950px;
  padding: 0 30px;
}

.hero-quote .quote {
  font-size: 1.9rem;
  font-weight: 500;
  line-height: 1.4;
  margin-bottom: 1.4rem;
  color: #fff;
  transition: opacity 0.6s ease, transform 0.6s ease;
}

.hero-quote .author {
  font-size: 1rem;
  font-weight: 400;
  opacity: 0.85;
  color: #fff;
  font-family: "Roboto Mono", monospace;
}

/* Responsive */
@media (max-width: 900px) {
  .hero-quote .quote {
    font-size: 1.4rem;
  }
}



/* Dark overlay */
.brands-hero::after {
  content: "";
  position: absolute;
  inset: 0;
  background: rgba(0, 0, 0, 0.55);
  opacity: 1;
  transition: opacity 0.4s ease;
  pointer-events: none;
}
.brands-hero img {
  width: 100%;
  height: auto;
  display: block;
  object-fit: cover;
  transition: transform 0.5s ease;
}

/* Grid with 2 logos */
.brands-grid {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  width: 100%;
  max-width: 1500px;
  position: relative;
}

/* Middle line */
.brands-grid::before {
  content: "";
  position: absolute;
  top: 0;
  bottom: 0;
  left: 50%;
  width: 1px;
  background-color: rgba(255, 255, 255, 0.3);
  transform: translateX(-50%);
  transition: background-color 0.3s ease, box-shadow 0.4s ease;
  animation: linePulse 3s ease-in-out infinite alternate;
}


/* Brand items */
.brand-item {
  display: flex;
  align-items: center;
  justify-content: center;
  font-family: "Michroma", sans-serif;
  font-style: italic;
  font-size: 1.4rem;
  text-transform: uppercase;
  border-right: 1px solid rgba(255, 255, 255, 0.3);
  height: 140px;
  letter-spacing: 1px;
  position: relative;
  overflow: hidden;
  transition: border-color 0.3s ease;
}
.brand-item:last-child { border-right: none; }
.brand-item > * { position: relative; z-index: 1; }


/* Responsive */
@media (max-width: 700px) {
  .brands-grid { grid-template-columns: 1fr; }
  .brand-item {
    font-size: 1.1rem;
    height: 110px;
  }
}

/* === Legal Section (Styled like Pricing Section) === */
.legal-section {
  background: #000000;
  color: #ffffff;
  padding: 120px 60px;
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 60px;
}
.legal-card {
  max-width: 1500px;
  width: 100%;
  border-top: 1px solid rgba(255, 255, 255, 0.233);
  padding-top: 2rem;
  display: flex;
  justify-content: center;
  text-align: left;
}
.legal-text {
  max-width: 1500px;
  width: 100%;
}
.legal-title {
  font-family: "Michroma", sans-serif;
  font-size: 2rem;
  margin-bottom: 1rem;
  letter-spacing: 1px;
}
.legal-description {
  font-family: "Roboto Mono", monospace;
  font-size: 1rem;
  line-height: 1.7;
  color: #e0e0e0;
  max-width: 900px;
}
.legal-card + .legal-card {
  border-top: 1px solid rgba(252, 252, 252, 0.2);
  padding-top: 3rem;
}
@media (max-width: 800px) {
  .legal-section { padding: 80px 30px; }
  .legal-title { font-size: 1.5rem; }
  .legal-description { font-size: 0.95rem; }
}

/* === FOOTER SECTION === */
.footer {
  position: relative;
  background: #000000; /* dominant black */
  color: #ffffff;
  padding: 90px 60px 40px;
  font-family: "Fira Sans", sans-serif;
  overflow: hidden;
  z-index: 5;
}

/* --- Subtle orange light at edges --- */
.footer::before {
  content: "";
  position: absolute;
  inset: 0;
  background: radial-gradient(
      circle at bottom right,
      rgba(0, 0, 0, 0.08) 0%,
      transparent 60%
    ),
    radial-gradient(
      circle at top left,
      rgba(255, 255, 255, 0.05) 0%,
      transparent 70%
    );
  pointer-events: none;
  z-index: 0;
}

/* --- Gentle orange reflection line near top --- */
.footer::after {
  content: "";
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 1px;
  background: linear-gradient(90deg, transparent, #425eff, transparent);
  opacity: 0.3;
  z-index: 1;
}

/* === Content layout === */
.footer-container {
  position: relative;
  z-index: 2;
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
  gap: 40px;
  max-width: 1500px;
  margin: 0 auto;
  border-bottom: 1px solid rgba(255, 255, 255, 0.1);
  padding-bottom: 40px;
}

.footer-column h3,
.footer-column h4 {
  font-family: "Michroma", sans-serif;
  font-size: 1rem;
  margin-bottom: 15px;
  letter-spacing: 1px;
  color: #ffffff;
}

.footer-column p,
.footer-column a {
  position: relative; /* ✅ Add this */
  display: inline-block; /* ✅ Makes the underline align perfectly with text width */
  font-size: 0.95rem;
  color: #cfcfcf;
  line-height: 1.6;
  text-decoration: none;
  font-family: "Roboto Mono", monospace;
  transition: color 0.3s ease, text-shadow 0.3s ease;
}

.footer-column a::after {
  content: "";
  position: absolute;
  left: 0;
  bottom: -4px;
  width: 0%;
  height: 2px;
  background: linear-gradient(90deg, #0078D4, #5AA9E6);
  transition: width 0.3s ease;
}

.footer-column a:hover::after {
  width: 100%;
}
/* --- Bottom line --- */
.footer-bottom {
  position: relative;
  z-index: 2;
  display: flex;
  justify-content: space-between;
  align-items: center;
  max-width: 1500px;
  margin: 30px auto 0;
  font-size: 0.9rem;
  font-family: "Roboto Mono", monospace;
  font-weight: 300;
}

.footer-right {
  font-family: "Roboto Mono", monospace;
  font-weight: 300;
  color: #ffffff;
  letter-spacing: 0.5px;
  transition: color 0.3s ease, text-shadow 0.3s ease;
}


.svab-font
{ font-family: "Monsieur La Doulaise", cursive; 
  font-size: 18px;
  cursor: pointer;
}
.svab-font:hover {
  color: #00a2ff;
  text-shadow: 0 0 8px rgba(17, 0, 255, 0.4);
}
/* === LOCATION PAGE === */
.location-hero {
  position: relative;
  height: 80vh;
  background: url('images/kras-je-v-vseh-pogledih-zelen_1.jpg') center/cover no-repeat;
  display: flex;
  align-items: center;
  justify-content: center;
  text-align: center;
  color: white;
}
.location-overlay {
  position: absolute;
  inset: 0;
  background: rgba(0,0,0,0.6);
}
.location-content {
  position: relative;
  z-index: 1;
}
.location-content h1 {
  font-family: "League Gothic", sans-serif;
  font-size: 6rem;
  letter-spacing: 3px;
  margin-bottom: 10px;
}
.location-content p {
  font-family: "Roboto Mono", monospace;
  font-size: 1.1rem;
  opacity: 0.85;
}

/* MAP & INFO SECTION */
.location-info {
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  justify-content: center;
  background: #000;
  color: white;
  padding: 100px 60px;
  gap: 60px;
}
.map-container {
  flex: 1 1 600px;
  height: 450px;
  border: 2px solid rgba(255,255,255,0.2);
  border-radius: 10px;
  overflow: hidden;
}
.map-container iframe {
  width: 100%;
  height: 100%;
  border: none;
}
.address-info {
  flex: 1 1 400px;
  font-family: "Roboto Mono", monospace;
}
.address-info h2 {
  font-family: "Michroma", sans-serif;
  font-size: 2rem;
  margin-bottom: 20px;
  color: #5bc3ff;
}
.address-info p {
  margin-bottom: 10px;
  font-size: 0.95rem;
  line-height: 1.6;
}
.address-info a {
  color: #ffffff;
  text-decoration: none;
}
.map-overlay {
  position: absolute;
  bottom: 15px;
  right: 20px;
  background: rgba(0, 0, 0, 0.7);
  color: #ffa65b;
  font-family: "Roboto Mono", monospace;
  font-size: 0.9rem;
  padding: 10px 16px;
  border-radius: 20px;
  cursor: pointer;
  transition: all 0.3s ease;
  z-index: 5;
}
.map-overlay:hover {
  background: rgba(255, 166, 91, 0.15);
  color: white;
}
.map-container {
  position: relative; /* Required for overlay */
}
/* === SERVIS PAGE === */
.servis-hero {
  position: relative;
  height: 80vh;
  background: url('images/ak-specialized-levosl-details-2023-04-1_7f9f2601cd251660a864a955abeb2e2a.jpg') center/cover no-repeat;
  display: flex;
  align-items: center;
  justify-content: center;
  text-align: center;
  color: white;
}
.servis-overlay {
  position: absolute;
  inset: 0;
  background: rgba(0, 0, 0, 0.6);
}
.servis-content {
  position: relative;
  z-index: 1;
}
.servis-content h1 {
  font-family: "League Gothic", sans-serif;
  font-size: 6rem;
  letter-spacing: 3px;
  margin-bottom: 10px;
}
.servis-content p {
  font-family: "Roboto Mono", monospace;
  font-size: 1.1rem;
  opacity: 0.85;
}

/* SERVICE INFO SECTION */
.servis-info {
  display: flex;
  flex-wrap: wrap;
  align-items: flex-start;
  justify-content: center;
  background: #000;
  color: white;
  padding: 100px 60px;
  gap: 60px;
}
.servis-text {
  flex: 1 1 600px;
  font-family: "Roboto Mono", monospace;
}
.servis-text h2 {
  font-family: "Michroma", sans-serif;
  font-size: 2.2rem;
  margin-bottom: 30px;
  color: #5bc3ff;
}
.service-list {
  list-style: none;
  margin-bottom: 40px;
}
.service-list li {
  margin-bottom: 14px;
  font-size: 1rem;
  opacity: 0.9;
}
.servis-contact {
  flex: 1 1 350px;
  font-family: "Roboto Mono", monospace;
  background: rgba(255, 255, 255, 0.03);
  border: 1px solid rgba(255, 255, 255, 0.15);
  padding: 40px;
  border-radius: 10px;
}
.servis-contact h3 {
  font-family: "Michroma", sans-serif;
  font-size: 1.6rem;
  margin-bottom: 20px;
  color: #5bc3ff;
}
.servis-contact p {
  margin-bottom: 12px;
  font-size: 0.95rem;
  line-height: 1.6;
}
.servis-contact a {
  color: #fff;
  text-decoration: none;
  transition: color 0.3s ease;
}
.servis-contact a:hover {
  color: #5bc3ff;
}

/* Responsive */
@media (max-width: 900px) {
  .servis-info { flex-direction: column; padding: 80px 40px; }
  .servis-content h1 { font-size: 3.5rem; }
  .servis-contact { width: 100%; }
}

/* ===== ROUTES / TRAILS SECTION ===== */
.routes-section {
  background: #000;
  color: #fff;
  padding: 120px 60px;
  display: flex;
  justify-content: center;
}

.routes-inner {
  width: 100%;
  max-width: 1500px;
  margin: 0 auto;
}

/* Header – naslov + opis */
.routes-header {
  margin-bottom: 2.5rem;
}

.routes-header h2 {
  font-family: "Michroma", sans-serif;
  font-size: 2rem;
  letter-spacing: 2px;
  text-transform: uppercase;
  margin-bottom: 1rem;
}

.routes-header p {
  font-family: "Roboto Mono", monospace;
  font-size: 0.95rem;
  line-height: 1.7;
  color: #e0e0e0;
  max-width: 900px;
}

/* GRID za poti – 3 v eni vrsti na desktopu */
.routes-grid {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 2rem;
}

/* Posamezna pot / kartica */
.route-card {
  background: #050505;
  border-radius: 18px;
  border: 1px solid rgba(255, 255, 255, 0.12);
  overflow: hidden;
  box-shadow: 0 20px 45px rgba(0, 0, 0, 0.65);
  padding: 16px 16px 12px;
}

.route-name {
  font-family: "Fira Sans", sans-serif;
  font-size: 1.05rem;
  margin-bottom: 0.75rem;
}

/* značke: težavnost, podlaga */
.route-meta {
  display: flex;
  flex-wrap: wrap;
  gap: 8px;
  margin-bottom: 10px;
  font-size: 0.8rem;
  font-family: "Roboto Mono", monospace;
}

.route-meta span {
  border-radius: 999px;
  padding: 3px 11px;
  border: 1px solid rgba(148, 163, 184, 0.8);
  color: #e5e7eb;
}

/* iframe wrapper */
.routes-iframe-wrapper {
  position: relative;
  width: 100%;
  padding-top: 60%;
  border-radius: 10px;
  overflow: hidden;
  margin-top: 6px;
  background: #020617;
}

.routes-iframe-wrapper iframe {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  border: none;
}

/* linki pod mapo */
.routes-footer {
  padding-top: 8px;
  font-size: 11px;
  font-family: "Roboto Mono", monospace;
  color: #9ca3af;
}

.routes-footer a {
  color: #e5e7eb;
  text-decoration: none;
  position: relative;
}

.routes-footer a::after {
  content: "";
  position: absolute;
  left: 0;
  bottom: -2px;
  width: 0%;
  height: 1px;
  background: linear-gradient(90deg, #0078D4, #5AA9E6);
  transition: width 0.3s ease;
}

.routes-footer a:hover::after {
  width: 100%;
}

/* Responsive – na mobitelu ena pod drugo */
@media (max-width: 1024px) {
  .routes-section {
    padding: 80px 30px;
  }
  .routes-grid {
    grid-template-columns: 1fr;
  }
}

@media (max-width: 600px) {
  .routes-section {
    padding: 70px 20px;
  }
}

/* === SEO TEXT SECTION === */
.seo-text {
  background: #000;
  color: #fff;
  padding: 120px 60px;
  border-top: 1px solid rgba(255,255,255,0.18);
  border-bottom: 1px solid rgba(255,255,255,0.12);
}

.seo-text-inner {
  width: 100%;
  max-width: 1500px;
  margin: 0 auto;
}

.seo-text h2 {
  font-family: "Michroma", sans-serif;
  font-size: clamp(1.8rem, 3vw, 3rem);
  letter-spacing: 1px;
  margin-bottom: 28px;
  color: #fff;
}

.seo-text h3 {
  font-family: "Michroma", sans-serif;
  font-size: clamp(1.3rem, 2vw, 2rem);
  letter-spacing: 1px;
  margin-top: 46px;
  margin-bottom: 18px;
  color: #5AA9E6;
}

.seo-text p {
  font-family: "Roboto Mono", monospace;
  font-size: 1rem;
  line-height: 1.8;
  color: #e0e0e0;
  max-width: 950px;
}

.seo-text a {
  display: inline-block;
  margin-top: 16px;
  color: #fff;
  font-family: "Roboto Mono", monospace;
  font-weight: 600;
  text-decoration: none;
  position: relative;
}

.seo-text a::after {
  content: "";
  position: absolute;
  left: 0;
  bottom: -5px;
  width: 0%;
  height: 2px;
  background: linear-gradient(90deg, #0078D4, #5AA9E6);
  transition: width 0.3s ease;
}

.seo-text a:hover::after {
  width: 100%;
}

@media (max-width: 800px) {
  .seo-text {
    padding: 80px 30px;
  }

  .seo-text h2 {
    font-size: 1.6rem;
  }

  .seo-text h3 {
    font-size: 1.25rem;
  }

  .seo-text p {
    font-size: 0.95rem;
  }
}
.hero-seo-link a {
  color: rgba(255,255,255,0.8);
  font-family: "Roboto Mono", monospace;
  font-size: 13px;
  text-decoration: none;
}
.hero-seo-link a:hover {
  text-decoration: underline;
}
.hero-seo {
  color: rgba(255,255,255,0.8);
  font-family: "Roboto Mono", monospace;
  font-size: 14px;
  margin-top: 15px;
}
.route-actions {
  margin-top: 12px;
  display: flex;
  justify-content: center;
}


.btn-gpx {
  display: inline-block;
  padding: 10px 18px;
  border-radius: 999px;
  border: 1px solid #5AA9E6;
  color: #5AA9E6;
  text-decoration: none;
  font-size: 14px;
  transition: 0.2s ease;
}

.btn-gpx:hover {
  background: #5AA9E6;
  color: #000;
}
.route-download {
  margin-top: 14px;
  text-align: center;
}

.gpx-btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 8px;
  padding: 11px 18px;
  border-radius: 999px;
  border: 1px solid #7fa7ff;
  color: #ffffff;
  text-decoration: none;
  font-weight: 700;
  font-size: 14px;
}

.gpx-note {
  margin-top: 7px;
  font-size: 12px;
  line-height: 1.4;
  color: rgba(255,255,255,0.55);
}
.reserve-note{
  margin-top:10px;
  margin-bottom:18px;
  color:#94a3b8;
  font-size:0.92rem;
  text-align:center;
}

.contact-alternatives{
  display:flex;
  gap:12px;
  flex-wrap:wrap;
  margin-top:10px;
}

.contact-btn{
  flex:1;
  min-width:100px;
  text-align:center;
  padding:13px 14px;
  border-radius:16px;
  text-decoration:none;
  color:white;
  font-weight:600;
  transition:0.2s ease;
}

.contact-btn:hover{
  transform:translateY(-2px);
}

.whatsapp-btn{
  background:#1f8f5f;
}

.viber-btn{
  background:#7360f2;
}

.email-btn{
  background:#334155;
}
.contact-alternatives{
  display:flex;
  gap:10px;
  margin-top:14px;
  flex-wrap:wrap;
}
.contact-btn{
  display:flex;
  align-items:center;
  justify-content:center;
}
.home-btn{
  position:fixed;
  top:20px;
  right:20px;
  z-index:99999;

  padding:12px 18px;
  border-radius:999px;

  background:rgba(15,23,42,.88);
  border:1px solid rgba(148,163,184,.25);

  color:#fff;
  text-decoration:none;
  font-weight:700;
  font-size:.95rem;

  backdrop-filter:blur(10px);

  transition:.2s ease;
}

.home-btn:hover{
  transform:translateY(-2px);
  background:rgba(34,211,238,.14);
  border-color:rgba(34,211,238,.45);
}