* {
  margin: 0;
  padding: 0;
  box-sizing: border-box;
}

html {
  scroll-behavior: smooth;
}

body {
  font-family: Arial, Helvetica, sans-serif;
  background: #050505;
  color: #ffffff;
}

a {
  color: inherit;
  text-decoration: none;
}

.hero {
  width: 100%;
  min-height: 100vh;
  position: relative;
  overflow: hidden;
  background-image: url("../assets/hero.png");
  background-size: cover;
  background-position: center;
}

.overlay {
  position: absolute;
  inset: 0;
  z-index: 1;
  background:
    linear-gradient(
      90deg,
      rgba(0, 0, 0, 0.92) 0%,
      rgba(0, 0, 0, 0.62) 36%,
      rgba(0, 0, 0, 0.3) 65%,
      rgba(0, 0, 0, 0.75) 100%
    ),
    linear-gradient(
      180deg,
      rgba(0, 0, 0, 0.75) 0%,
      rgba(0, 0, 0, 0.15) 42%,
      rgba(0, 0, 0, 0.8) 100%
    );
}

.navbar {
  position: relative;
  z-index: 5;
  width: 100%;
  height: 120px;
  padding: 34px 70px 0;
  display: flex;
  align-items: flex-start;
  justify-content: space-between;
}

.brand {
  display: flex;
  flex-direction: column;
  line-height: 1;
  user-select: none;
}

.brand-main {
  font-size: 34px;
  font-weight: 900;
  letter-spacing: -2px;
}

.flag-dots {
  color: #fff;
  margin-right: 4px;
  letter-spacing: -6px;
}

.brand-endur {
  font-style: italic;
  color: #fff;
}

.brand-ordu {
  color: #fff;
  font-weight: 400;
}

.brand-sub {
  margin-top: 8px;
  font-size: 14px;
  font-weight: 300;
  letter-spacing: 1px;
}

.brand-sign {
  margin-top: 12px;
  font-family: cursive;
  font-size: 24px;
  font-weight: 400;
  opacity: 0.9;
}

.menu {
  display: flex;
  align-items: center;
  gap: 48px;
  padding-top: 14px;
}

.menu a {
  position: relative;
  font-size: 16px;
  font-weight: 800;
  letter-spacing: 0.5px;
  color: rgba(255, 255, 255, 0.88);
  transition: 0.3s ease;
}

.menu a:hover,
.menu a.active {
  color: #ff6a00;
}

.menu a.active::after {
  content: "";
  position: absolute;
  left: 0;
  bottom: -28px;
  width: 100%;
  height: 4px;
  background: #ff6a00;
}

.hamburger {
  width: 46px;
  height: 34px;
  margin-top: 10px;
  background: transparent;
  border: none;
  display: flex;
  flex-direction: column;
  justify-content: space-between;
  cursor: pointer;
}

.hamburger span {
  display: block;
  width: 46px;
  height: 3px;
  background: #fff;
}

.hero-content {
  position: relative;
  z-index: 5;
  width: 100%;
  max-width: 850px;
  padding-left: 70px;
  padding-top: 130px;
}

.location-line {
  display: flex;
  align-items: center;
  gap: 28px;
  margin-bottom: 30px;
}

.location-line span {
  color: #ff6a00;
  font-size: 21px;
  font-weight: 900;
  letter-spacing: 0.5px;
}

.location-line i {
  display: block;
  width: 85px;
  height: 2px;
  background: #ff6a00;
}

.hero-content h1 {
  font-size: clamp(64px, 8vw, 130px);
  line-height: 0.92;
  font-weight: 950;
  letter-spacing: -4px;
  color: #f2f2f2;
  text-transform: uppercase;
  text-shadow: 0 10px 30px rgba(0, 0, 0, 0.55);
}

.hero-content p {
  margin-top: 28px;
  font-size: 25px;
  line-height: 1.55;
  color: rgba(255, 255, 255, 0.86);
}

.hero-buttons {
  display: flex;
  gap: 26px;
  margin-top: 34px;
}

.btn {
  height: 64px;
  padding: 0 36px;
  border-radius: 5px;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 18px;
  font-size: 17px;
  font-weight: 900;
  transition: 0.3s ease;
}

.btn span {
  font-size: 25px;
  line-height: 1;
}

.btn-primary {
  background: #ff6a00;
  color: #fff;
  border: 1px solid #ff6a00;
}

.btn-primary:hover {
  background: #fff;
  border-color: #fff;
  color: #111;
}

.btn-outline {
  border: 1px solid rgba(255, 255, 255, 0.65);
  color: #fff;
  background: rgba(0, 0, 0, 0.18);
}

.btn-outline:hover {
  border-color: #ff6a00;
  color: #ff6a00;
}

.right-info {
  position: absolute;
  z-index: 5;
  right: 70px;
  top: 30%;
  height: 470px;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  gap: 36px;
}

.right-info span {
  width: 2px;
  height: 78px;
  background: #ff6a00;
}

.right-info p,
.right-info small {
  writing-mode: vertical-rl;
  transform: rotate(180deg);
  color: #fff;
  font-weight: 800;
  letter-spacing: 2px;
}

.right-info p {
  font-size: 16px;
}

.right-info small {
  font-size: 15px;
  opacity: 0.9;
}

@keyframes scrollMove {
  0% {
    opacity: 0;
    transform: translate(-50%, 0);
  }

  40% {
    opacity: 1;
  }

  100% {
    opacity: 0;
    transform: translate(-50%, 16px);
  }
}

@media (max-width: 1200px) {
  .menu {
    gap: 28px;
  }

  .hero-content {
    padding-top: 110px;
  }
}

@media (max-width: 992px) {
  .navbar {
    height: 100px;
    padding: 28px 28px 0;
  }

  .menu {
    display: none;
  }

  .hero-content {
    padding-left: 28px;
    padding-right: 28px;
    padding-top: 120px;
  }

  .hero-content p {
    font-size: 20px;
  }

  .right-info {
    display: none;
  }
}

@media (max-width: 640px) {
  .hero {
    background-position: center right;
  }

  .navbar {
    padding: 24px 20px 0;
  }

  .brand-main {
    font-size: 23px;
  }

  .brand-sub {
    font-size: 10px;
  }

  .brand-sign {
    font-size: 17px;
  }

  .hamburger {
    width: 36px;
    height: 28px;
  }

  .hamburger span {
    width: 36px;
  }

  .hero-content {
    padding-left: 20px;
    padding-right: 20px;
    padding-top: 120px;
  }

  .location-line span {
    font-size: 16px;
  }

  .location-line i {
    width: 60px;
  }

  .hero-content h1 {
    letter-spacing: -2px;
  }

  .hero-content p {
    font-size: 17px;
  }

  .hero-buttons {
    flex-direction: column;
    gap: 14px;
  }

  .btn {
    width: 100%;
    height: 58px;
  }

}
.quick-access {
  position: relative;
  background: #070707;
  padding: 110px 70px;
  color: #fff;
}

.quick-access::before {
  content: "";
  position: absolute;
  inset: 0;
  background:
    radial-gradient(circle at 20% 20%, rgba(255, 106, 0, 0.13), transparent 30%),
    linear-gradient(180deg, #050505 0%, #101010 100%);
  pointer-events: none;
}

.section-head {
  position: relative;
  z-index: 2;
  max-width: 760px;
  margin-bottom: 54px;
}

.section-head span {
  display: inline-block;
  color: #ff6a00;
  font-size: 14px;
  font-weight: 900;
  letter-spacing: 3px;
  margin-bottom: 18px;
}

.section-head h2 {
  font-size: clamp(38px, 5vw, 72px);
  line-height: 0.95;
  letter-spacing: -2px;
  text-transform: uppercase;
  margin-bottom: 22px;
}

.section-head p {
  max-width: 560px;
  font-size: 18px;
  line-height: 1.7;
  color: rgba(255, 255, 255, 0.68);
}

.access-grid {
  position: relative;
  z-index: 2;
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 26px;
}

.access-card {
  min-height: 330px;
  padding: 34px;
  background: rgba(255, 255, 255, 0.045);
  border: 1px solid rgba(255, 255, 255, 0.09);
  display: flex;
  flex-direction: column;
  justify-content: space-between;
  transition: 0.35s ease;
  overflow: hidden;
  position: relative;
}

.access-card::after {
  content: "";
  position: absolute;
  right: -60px;
  bottom: -60px;
  width: 180px;
  height: 180px;
  background: rgba(255, 106, 0, 0.11);
  border-radius: 50%;
  transition: 0.35s ease;
}

.access-card:hover {
  transform: translateY(-10px);
  border-color: rgba(255, 106, 0, 0.7);
  background: rgba(255, 106, 0, 0.08);
}

.access-card:hover::after {
  transform: scale(1.4);
}

.access-card.featured {
  background: linear-gradient(135deg, rgba(255, 106, 0, 0.95), rgba(160, 60, 0, 0.75));
  border-color: #ff6a00;
}

.card-number {
  font-size: 15px;
  font-weight: 900;
  color: #ff6a00;
  letter-spacing: 2px;
}

.access-card.featured .card-number {
  color: #fff;
}

.access-card h3 {
  font-size: 38px;
  line-height: 1;
  text-transform: uppercase;
  letter-spacing: -1px;
  margin-top: 60px;
}

.access-card p {
  margin-top: 20px;
  font-size: 16px;
  line-height: 1.7;
  color: rgba(255, 255, 255, 0.68);
  max-width: 360px;
}

.access-card.featured p {
  color: rgba(255, 255, 255, 0.9);
}

.access-card span {
  margin-top: 34px;
  color: #ff6a00;
  font-size: 15px;
  font-weight: 900;
  letter-spacing: 1px;
}

.access-card.featured span {
  color: #fff;
}

@media (max-width: 992px) {
  .quick-access {
    padding: 90px 28px;
  }

  .access-grid {
    grid-template-columns: 1fr;
  }

  .access-card {
    min-height: 280px;
  }
}

@media (max-width: 640px) {
  .quick-access {
    padding: 76px 20px;
  }

  .section-head h2 {
    letter-spacing: -1px;
  }

  .access-card {
    padding: 28px;
  }

  .access-card h3 {
    font-size: 32px;
  }
}
.club-manifesto {
  position: relative;
  background: #101010;
  padding: 120px 70px;
  display: grid;
  grid-template-columns: 1.1fr 0.9fr;
  gap: 80px;
  color: #fff;
  overflow: hidden;
}

.club-manifesto::before {
  content: "ENDURORDU";
  position: absolute;
  left: -18px;
  bottom: -38px;
  font-size: clamp(80px, 16vw, 230px);
  font-weight: 950;
  letter-spacing: -8px;
  color: rgba(255, 255, 255, 0.025);
  pointer-events: none;
}

.manifesto-left,
.manifesto-right {
  position: relative;
  z-index: 2;
}

.manifesto-left span {
  display: inline-block;
  color: #ff6a00;
  font-size: 14px;
  font-weight: 900;
  letter-spacing: 3px;
  margin-bottom: 24px;
}

.manifesto-left h2 {
  max-width: 760px;
  font-size: clamp(44px, 6vw, 92px);
  line-height: 0.95;
  letter-spacing: -3px;
  text-transform: uppercase;
}

.manifesto-right {
  padding-top: 72px;
}

.manifesto-right p {
  font-size: 18px;
  line-height: 1.85;
  color: rgba(255, 255, 255, 0.72);
  margin-bottom: 24px;
}

.text-link {
  display: inline-block;
  margin-top: 18px;
  color: #ff6a00;
  font-size: 15px;
  font-weight: 900;
  letter-spacing: 1px;
  transition: 0.3s ease;
}

.text-link:hover {
  color: #fff;
  transform: translateX(8px);
}

@media (max-width: 992px) {
  .club-manifesto {
    grid-template-columns: 1fr;
    gap: 34px;
    padding: 90px 28px;
  }

  .manifesto-right {
    padding-top: 0;
  }
}

@media (max-width: 640px) {
  .club-manifesto {
    padding: 76px 20px;
  }

  .manifesto-left h2 {
    letter-spacing: -2px;
  }

  .manifesto-right p {
    font-size: 16px;
  }
}
.partners-section {
  position: relative;
  background: #070707;
  padding: 120px 70px;
  overflow: hidden;
}

.partners-section::before {
  content: "";
  position: absolute;
  inset: 0;
  background:
    radial-gradient(circle at top right, rgba(255, 106, 0, 0.12), transparent 28%);
  pointer-events: none;
}

.partners-top {
  position: relative;
  z-index: 2;
  margin-bottom: 54px;
}

.partners-top span {
  display: inline-block;
  color: #ff6a00;
  font-size: 14px;
  font-weight: 900;
  letter-spacing: 3px;
  margin-bottom: 18px;
}

.partners-top h2 {
  font-size: clamp(38px, 5vw, 74px);
  line-height: 0.95;
  letter-spacing: -3px;
  text-transform: uppercase;
  color: #fff;
}

.partners-grid {
  position: relative;
  z-index: 2;
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 22px;
}

.partner-card {
  min-height: 220px;
  padding: 34px;
  border: 1px solid rgba(255, 255, 255, 0.08);
  background: rgba(255, 255, 255, 0.03);
  display: flex;
  flex-direction: column;
  justify-content: flex-end;
  transition: 0.35s ease;
  position: relative;
  overflow: hidden;
}

.partner-card::before {
  content: "";
  position: absolute;
  inset: 0;
  background:
    linear-gradient(
      180deg,
      transparent 0%,
      rgba(255, 106, 0, 0.12) 100%
    );
  opacity: 0;
  transition: 0.35s ease;
}

.partner-card:hover {
  transform: translateY(-10px);
  border-color: rgba(255, 106, 0, 0.6);
}

.partner-card:hover::before {
  opacity: 1;
}

.partner-card.featured {
  background:
    linear-gradient(
      135deg,
      rgba(255, 106, 0, 0.95),
      rgba(140, 55, 0, 0.85)
    );
  border-color: #ff6a00;
}

.partner-card h3 {
  position: relative;
  z-index: 2;
  font-size: 34px;
  line-height: 1;
  letter-spacing: -1px;
  text-transform: uppercase;
  color: #fff;
}

.partner-card p {
  position: relative;
  z-index: 2;
  margin-top: 12px;
  font-size: 15px;
  line-height: 1.7;
  color: rgba(255, 255, 255, 0.72);
}

.partner-card.featured p {
  color: rgba(255, 255, 255, 0.92);
}

@media (max-width: 992px) {
  .partners-section {
    padding: 90px 28px;
  }

  .partners-grid {
    grid-template-columns: 1fr;
  }
}

@media (max-width: 640px) {
  .partners-section {
    padding: 76px 20px;
  }

  .partners-top h2 {
    letter-spacing: -2px;
  }

  .partner-card {
    min-height: 180px;
  }

  .partner-card h3 {
    font-size: 28px;
  }
}
.site-footer {
  position: relative;
  background: #050505;
  padding: 100px 70px 34px;
  border-top: 1px solid rgba(255, 255, 255, 0.06);
  overflow: hidden;
}

.site-footer::before {
  content: "";
  position: absolute;
  inset: 0;
  background:
    radial-gradient(circle at bottom left, rgba(255, 106, 0, 0.08), transparent 30%);
  pointer-events: none;
}

.footer-top {
  position: relative;
  z-index: 2;
  display: grid;
  grid-template-columns: 1.4fr 0.8fr 0.8fr 1fr;
  gap: 48px;
  padding-bottom: 70px;
}

.footer-brand h2 {
  font-size: 54px;
  line-height: 1;
  letter-spacing: -2px;
  color: #fff;
  margin-bottom: 22px;
}

.footer-brand p {
  max-width: 420px;
  font-size: 16px;
  line-height: 1.8;
  color: rgba(255, 255, 255, 0.66);
}

.footer-links,
.footer-contact {
  display: flex;
  flex-direction: column;
}

.footer-links h4,
.footer-contact h4 {
  color: #ff6a00;
  font-size: 14px;
  font-weight: 900;
  letter-spacing: 2px;
  margin-bottom: 22px;
}

.footer-links a,
.footer-contact p {
  margin-bottom: 14px;
  color: rgba(255, 255, 255, 0.72);
  font-size: 15px;
  transition: 0.3s ease;
}

.footer-links a:hover {
  color: #ff6a00;
  transform: translateX(6px);
}

.footer-bottom {
  position: relative;
  z-index: 2;
  padding-top: 28px;
  border-top: 1px solid rgba(255, 255, 255, 0.06);
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 20px;
}

.footer-bottom span,
.footer-bottom p {
  font-size: 13px;
  letter-spacing: 1px;
  color: rgba(255, 255, 255, 0.5);
}

.footer-bottom p {
  color: #ff6a00;
  font-weight: 700;
}

@media (max-width: 1100px) {
  .footer-top {
    grid-template-columns: 1fr 1fr;
  }
}

@media (max-width: 992px) {
  .site-footer {
    padding: 90px 28px 28px;
  }
}

@media (max-width: 640px) {
  .site-footer {
    padding: 76px 20px 24px;
  }

  .footer-top {
    grid-template-columns: 1fr;
    gap: 40px;
    padding-bottom: 50px;
  }

  .footer-brand h2 {
    font-size: 42px;
  }

  .footer-bottom {
    flex-direction: column;
    align-items: flex-start;
  }
}
.routes-page {
  background: #070707;
  min-height: 100vh;
  color: #fff;
}

.routes-hero {
  position: relative;
  min-height: 72vh;
  background:
    linear-gradient(rgba(0,0,0,.7), rgba(0,0,0,.75)),
    url("../assets/hero.png");
  background-size: cover;
  background-position: center;
  overflow: hidden;
}

.routes-overlay {
  position: absolute;
  inset: 0;
  background:
    radial-gradient(circle at right top, rgba(255,106,0,.2), transparent 30%);
}

.routes-navbar {
  position: relative;
  z-index: 3;
  width: 100%;
  padding: 34px 70px;
  display: flex;
  align-items: center;
  justify-content: space-between;
}

.routes-menu {
  display: flex;
  gap: 42px;
}

.routes-menu a {
  font-size: 15px;
  font-weight: 700;
  color: rgba(255,255,255,.7);
  transition: .3s ease;
}

.routes-menu a:hover,
.routes-menu a.active {
  color: #ff6a00;
}

.routes-hero-content {
  position: relative;
  z-index: 3;
  max-width: 850px;
  padding: 100px 70px;
}

.routes-hero-content span {
  display: inline-block;
  margin-bottom: 20px;
  color: #ff6a00;
  font-size: 14px;
  font-weight: 900;
  letter-spacing: 3px;
}

.routes-hero-content h1 {
  font-size: clamp(54px, 7vw, 120px);
  line-height: .92;
  letter-spacing: -4px;
  text-transform: uppercase;
}

.routes-hero-content p {
  max-width: 620px;
  margin-top: 24px;
  font-size: 20px;
  line-height: 1.7;
  color: rgba(255,255,255,.72);
}

.routes-filter-area {
  padding: 90px 70px 40px;
}

.filter-top span {
  color: #ff6a00;
  font-size: 14px;
  font-weight: 900;
  letter-spacing: 3px;
}

.filter-top h2 {
  margin-top: 16px;
  font-size: 54px;
  letter-spacing: -2px;
}

.filter-buttons {
  margin-top: 36px;
  display: flex;
  flex-wrap: wrap;
  gap: 18px;
}

.filter-btn {
  height: 52px;
  padding: 0 28px;
  background: rgba(255,255,255,.05);
  border: 1px solid rgba(255,255,255,.08);
  color: rgba(255,255,255,.7);
  font-size: 14px;
  font-weight: 800;
  cursor: pointer;
  transition: .3s ease;
}

.filter-btn:hover,
.filter-btn.active {
  background: #ff6a00;
  border-color: #ff6a00;
  color: #fff;
}

.routes-grid {
  padding: 30px 70px 120px;
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 26px;
}

.route-card {
  background: rgba(255,255,255,.03);
  border: 1px solid rgba(255,255,255,.08);
  overflow: hidden;
  transition: .35s ease;
}

.route-card:hover {
  transform: translateY(-10px);
  border-color: rgba(255,106,0,.5);
}

.route-image {
  height: 260px;
  background:
    linear-gradient(rgba(0,0,0,.2), rgba(0,0,0,.4)),
    url("../assets/hero.png");
  background-size: cover;
  background-position: center;
}

.route-image.second {
  filter: hue-rotate(25deg);
}

.route-image.third {
  filter: grayscale(.3);
}

.route-content {
  padding: 34px;
}

.route-meta {
  display: flex;
  justify-content: space-between;
  gap: 20px;
}

.route-meta span {
  color: #ff6a00;
  font-size: 13px;
  font-weight: 900;
  letter-spacing: 1px;
}

.route-content h3 {
  margin-top: 26px;
  font-size: 38px;
  line-height: .95;
  letter-spacing: -1px;
  text-transform: uppercase;
}

.route-content p {
  margin-top: 18px;
  font-size: 16px;
  line-height: 1.8;
  color: rgba(255,255,255,.68);
}

.route-content a {
  display: inline-block;
  margin-top: 26px;
  color: #ff6a00;
  font-size: 14px;
  font-weight: 900;
  letter-spacing: 1px;
}

@media (max-width: 1100px) {
  .routes-grid {
    grid-template-columns: 1fr 1fr;
  }
}

@media (max-width: 768px) {

  .routes-navbar,
  .routes-hero-content,
  .routes-filter-area,
  .routes-grid {
    padding-left: 24px;
    padding-right: 24px;
  }

  .routes-grid {
    grid-template-columns: 1fr;
  }

  .routes-menu {
    display: none;
  }

  .routes-hero-content h1 {
    letter-spacing: -2px;
  }

  .filter-top h2 {
    font-size: 42px;
  }
}
.festival-page {
  background: #050505;
  color: #fff;
  min-height: 100vh;
}

.festival-hero {
  position: relative;
  min-height: 85vh;
  background:
    linear-gradient(rgba(0,0,0,.72), rgba(0,0,0,.8)),
    url("../assets/hero.png");
  background-size: cover;
  background-position: center;
  overflow: hidden;
}

.festival-overlay {
  position: absolute;
  inset: 0;
  background:
    radial-gradient(circle at top left, rgba(255,106,0,.2), transparent 35%);
}

.festival-navbar {
  position: relative;
  z-index: 3;
  width: 100%;
  padding: 34px 70px;
  display: flex;
  align-items: center;
  justify-content: space-between;
}

.festival-menu {
  display: flex;
  gap: 42px;
}

.festival-menu a {
  color: rgba(255,255,255,.7);
  font-size: 15px;
  font-weight: 700;
  transition: .3s ease;
}

.festival-menu a:hover,
.festival-menu a.active {
  color: #ff6a00;
}

.festival-content {
  position: relative;
  z-index: 3;
  max-width: 850px;
  padding: 120px 70px;
}

.festival-content span {
  display: inline-block;
  margin-bottom: 20px;
  color: #ff6a00;
  font-size: 14px;
  font-weight: 900;
  letter-spacing: 3px;
}

.festival-content h1 {
  font-size: clamp(56px, 8vw, 130px);
  line-height: .9;
  letter-spacing: -4px;
  text-transform: uppercase;
}

.festival-content p {
  max-width: 620px;
  margin-top: 26px;
  font-size: 21px;
  line-height: 1.7;
  color: rgba(255,255,255,.72);
}

.festival-btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  margin-top: 36px;
  height: 62px;
  padding: 0 34px;
  background: #ff6a00;
  color: #fff;
  font-size: 15px;
  font-weight: 900;
  transition: .3s ease;
}

.festival-btn:hover {
  background: #fff;
  color: #111;
}

.festival-info {
  padding: 120px 70px;
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 80px;
}

.festival-info-left span {
  color: #ff6a00;
  font-size: 14px;
  font-weight: 900;
  letter-spacing: 3px;
}

.festival-info-left h2 {
  margin-top: 24px;
  font-size: clamp(42px, 6vw, 90px);
  line-height: .95;
  letter-spacing: -3px;
  text-transform: uppercase;
}

.festival-info-right {
  display: flex;
  flex-direction: column;
  gap: 38px;
}

.festival-detail {
  padding-bottom: 28px;
  border-bottom: 1px solid rgba(255,255,255,.08);
}

.festival-detail small {
  color: #ff6a00;
  font-size: 13px;
  font-weight: 900;
  letter-spacing: 2px;
}

.festival-detail h3 {
  margin-top: 14px;
  font-size: 34px;
  line-height: 1.1;
  letter-spacing: -1px;
}

.festival-gallery {
  padding: 0 70px 120px;
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  grid-auto-rows: 260px;
  gap: 24px;
}

.gallery-card {
  background:
    linear-gradient(rgba(0,0,0,.2), rgba(0,0,0,.45)),
    url("../assets/hero.png");
  background-size: cover;
  background-position: center;
  border: 1px solid rgba(255,255,255,.06);
}

.gallery-card.large {
  grid-column: span 2;
  grid-row: span 2;
}

.gallery-card.wide {
  grid-column: span 2;
}

@media (max-width: 992px) {

  .festival-navbar,
  .festival-content,
  .festival-info,
  .festival-gallery {
    padding-left: 28px;
    padding-right: 28px;
  }

  .festival-info {
    grid-template-columns: 1fr;
    gap: 50px;
  }

  .festival-gallery {
    grid-template-columns: 1fr 1fr;
  }

  .festival-menu {
    display: none;
  }
}

@media (max-width: 640px) {

  .festival-navbar,
  .festival-content,
  .festival-info,
  .festival-gallery {
    padding-left: 20px;
    padding-right: 20px;
  }

  .festival-content h1,
  .festival-info-left h2 {
    letter-spacing: -2px;
  }

  .festival-gallery {
    grid-template-columns: 1fr;
  }

  .gallery-card.large,
  .gallery-card.wide {
    grid-column: span 1;
    grid-row: span 1;
  }
}
.motor-page {
  background: #070707;
  color: #fff;
  min-height: 100vh;
}

.motor-hero {
  position: relative;
  min-height: 78vh;
  background:
    linear-gradient(rgba(0,0,0,.72), rgba(0,0,0,.82)),
    url("../assets/hero.png");
  background-size: cover;
  background-position: center;
  overflow: hidden;
}

.motor-overlay {
  position: absolute;
  inset: 0;
  background:
    radial-gradient(circle at right top, rgba(255,106,0,.18), transparent 35%);
}

.motor-navbar {
  position: relative;
  z-index: 3;
  width: 100%;
  padding: 34px 70px;
  display: flex;
  align-items: center;
  justify-content: space-between;
}

.motor-logo {
  font-size: 32px;
  font-weight: 900;
  letter-spacing: -1px;
}

.motor-menu {
  display: flex;
  gap: 42px;
}

.motor-menu a {
  color: rgba(255,255,255,.7);
  font-size: 15px;
  font-weight: 700;
  transition: .3s ease;
}

.motor-menu a:hover,
.motor-menu a.active {
  color: #ff6a00;
}

.motor-content {
  position: relative;
  z-index: 3;
  max-width: 850px;
  padding: 120px 70px;
}

.motor-content span {
  display: inline-block;
  margin-bottom: 20px;
  color: #ff6a00;
  font-size: 14px;
  font-weight: 900;
  letter-spacing: 3px;
}

.motor-content h1 {
  font-size: clamp(56px, 8vw, 130px);
  line-height: .9;
  letter-spacing: -4px;
  text-transform: uppercase;
}

.motor-content p {
  max-width: 620px;
  margin-top: 26px;
  font-size: 20px;
  line-height: 1.7;
  color: rgba(255,255,255,.72);
}

.motor-map-section {
  padding: 120px 70px;
  display: grid;
  grid-template-columns: .9fr 1.1fr;
  gap: 50px;
}

.map-info span {
  color: #ff6a00;
  font-size: 14px;
  font-weight: 900;
  letter-spacing: 3px;
}

.map-info h2 {
  margin-top: 20px;
  font-size: clamp(42px, 5vw, 82px);
  line-height: .95;
  letter-spacing: -3px;
  text-transform: uppercase;
}

.map-info p {
  margin-top: 28px;
  max-width: 520px;
  font-size: 17px;
  line-height: 1.9;
  color: rgba(255,255,255,.7);
}

.map-placeholder {
  min-height: 520px;
  border: 1px solid rgba(255,255,255,.08);
  background:
    linear-gradient(rgba(0,0,0,.55), rgba(0,0,0,.65)),
    url("../assets/hero.png");
  background-size: cover;
  background-position: center;
  display: flex;
  align-items: center;
  justify-content: center;
  position: relative;
  overflow: hidden;
}

.map-placeholder::before {
  content: "";
  position: absolute;
  inset: 0;
  background:
    linear-gradient(
      90deg,
      rgba(255,106,0,.12),
      transparent
    );
}

.map-center {
  position: relative;
  z-index: 2;
  text-align: center;
}

.map-center span {
  color: #ff6a00;
  font-size: 13px;
  font-weight: 900;
  letter-spacing: 3px;
}

.map-center h3 {
  margin-top: 18px;
  font-size: 46px;
  line-height: .95;
  letter-spacing: -2px;
  text-transform: uppercase;
}

.motor-locations {
  padding: 0 70px 120px;
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 24px;
}

.location-card {
  padding: 36px;
  background: rgba(255,255,255,.03);
  border: 1px solid rgba(255,255,255,.08);
  transition: .35s ease;
}

.location-card:hover {
  transform: translateY(-10px);
  border-color: rgba(255,106,0,.55);
}

.location-card.featured {
  background:
    linear-gradient(
      135deg,
      rgba(255,106,0,.92),
      rgba(120,50,0,.85)
    );
  border-color: #ff6a00;
}

.location-card small {
  color: #ff6a00;
  font-size: 14px;
  font-weight: 900;
  letter-spacing: 2px;
}

.location-card.featured small {
  color: #fff;
}

.location-card h3 {
  margin-top: 26px;
  font-size: 38px;
  line-height: .95;
  letter-spacing: -1px;
  text-transform: uppercase;
}

.location-card p {
  margin-top: 18px;
  font-size: 16px;
  line-height: 1.8;
  color: rgba(255,255,255,.7);
}

.location-card.featured p {
  color: rgba(255,255,255,.92);
}

.location-card span {
  display: inline-block;
  margin-top: 24px;
  color: #ff6a00;
  font-size: 14px;
  font-weight: 900;
  letter-spacing: 1px;
}

.location-card.featured span {
  color: #fff;
}

@media (max-width: 992px) {

  .motor-navbar,
  .motor-content,
  .motor-map-section,
  .motor-locations {
    padding-left: 28px;
    padding-right: 28px;
  }

  .motor-map-section {
    grid-template-columns: 1fr;
  }

  .motor-locations {
    grid-template-columns: 1fr;
  }

  .motor-menu {
    display: none;
  }
}

@media (max-width: 640px) {

  .motor-navbar,
  .motor-content,
  .motor-map-section,
  .motor-locations {
    padding-left: 20px;
    padding-right: 20px;
  }

  .motor-content h1,
  .map-info h2,
  .map-center h3 {
    letter-spacing: -2px;
  }

  .map-placeholder {
    min-height: 360px;
  }

  .location-card h3 {
    font-size: 30px;
  }
}
.about-page {
  background: #070707;
  color: #fff;
  min-height: 100vh;
}

.about-hero {
  position: relative;
  min-height: 78vh;
  background:
    linear-gradient(rgba(0,0,0,.72), rgba(0,0,0,.82)),
    url("../assets/hero.png");
  background-size: cover;
  background-position: center;
  overflow: hidden;
}

.about-overlay {
  position: absolute;
  inset: 0;
  background:
    radial-gradient(circle at left top, rgba(255,106,0,.18), transparent 35%);
}

.about-navbar {
  position: relative;
  z-index: 3;
  width: 100%;
  padding: 34px 70px;
  display: flex;
  align-items: center;
  justify-content: space-between;
}

.about-logo {
  font-size: 32px;
  font-weight: 900;
  letter-spacing: -1px;
}

.about-menu {
  display: flex;
  gap: 42px;
}

.about-menu a {
  color: rgba(255,255,255,.7);
  font-size: 15px;
  font-weight: 700;
  transition: .3s ease;
}

.about-menu a:hover,
.about-menu a.active {
  color: #ff6a00;
}

.about-content {
  position: relative;
  z-index: 3;
  max-width: 850px;
  padding: 120px 70px;
}

.about-content span {
  display: inline-block;
  margin-bottom: 20px;
  color: #ff6a00;
  font-size: 14px;
  font-weight: 900;
  letter-spacing: 3px;
}

.about-content h1 {
  font-size: clamp(56px, 8vw, 130px);
  line-height: .9;
  letter-spacing: -4px;
  text-transform: uppercase;
}

.about-content p {
  max-width: 620px;
  margin-top: 26px;
  font-size: 20px;
  line-height: 1.7;
  color: rgba(255,255,255,.72);
}

.about-story {
  padding: 120px 70px;
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 70px;
}

.story-left span {
  color: #ff6a00;
  font-size: 14px;
  font-weight: 900;
  letter-spacing: 3px;
}

.story-left h2 {
  margin-top: 22px;
  font-size: clamp(42px, 6vw, 92px);
  line-height: .95;
  letter-spacing: -3px;
  text-transform: uppercase;
}

.story-right p {
  margin-bottom: 28px;
  font-size: 18px;
  line-height: 1.9;
  color: rgba(255,255,255,.72);
}

.about-values {
  padding: 0 70px 120px;
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 24px;
}

.value-card {
  padding: 38px;
  background: rgba(255,255,255,.03);
  border: 1px solid rgba(255,255,255,.08);
  transition: .35s ease;
}

.value-card:hover {
  transform: translateY(-10px);
  border-color: rgba(255,106,0,.5);
}

.value-card.featured {
  background:
    linear-gradient(
      135deg,
      rgba(255,106,0,.92),
      rgba(120,50,0,.85)
    );
  border-color: #ff6a00;
}

.value-card small {
  color: #ff6a00;
  font-size: 14px;
  font-weight: 900;
  letter-spacing: 2px;
}

.value-card.featured small {
  color: #fff;
}

.value-card h3 {
  margin-top: 26px;
  font-size: 42px;
  line-height: .95;
  letter-spacing: -1px;
  text-transform: uppercase;
}

.value-card p {
  margin-top: 18px;
  font-size: 16px;
  line-height: 1.8;
  color: rgba(255,255,255,.72);
}

.value-card.featured p {
  color: rgba(255,255,255,.92);
}

.team-preview {
  padding: 0 70px 120px;
}

.team-head span {
  color: #ff6a00;
  font-size: 14px;
  font-weight: 900;
  letter-spacing: 3px;
}

.team-head h2 {
  margin-top: 22px;
  max-width: 760px;
  font-size: clamp(42px, 5vw, 82px);
  line-height: .95;
  letter-spacing: -3px;
  text-transform: uppercase;
}

.team-grid {
  margin-top: 50px;
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 24px;
}

.team-card {
  padding: 36px;
  border: 1px solid rgba(255,255,255,.08);
  background: rgba(255,255,255,.03);
}

.team-card h3 {
  font-size: 34px;
  line-height: 1;
  letter-spacing: -1px;
  text-transform: uppercase;
}

.team-card p {
  margin-top: 18px;
  font-size: 16px;
  line-height: 1.8;
  color: rgba(255,255,255,.7);
}

@media (max-width: 992px) {

  .about-navbar,
  .about-content,
  .about-story,
  .about-values,
  .team-preview {
    padding-left: 28px;
    padding-right: 28px;
  }

  .about-story,
  .about-values,
  .team-grid {
    grid-template-columns: 1fr;
  }

  .about-menu {
    display: none;
  }
}

@media (max-width: 640px) {

  .about-navbar,
  .about-content,
  .about-story,
  .about-values,
  .team-preview {
    padding-left: 20px;
    padding-right: 20px;
  }

  .about-content h1,
  .story-left h2,
  .team-head h2 {
    letter-spacing: -2px;
  }

  .value-card h3,
  .team-card h3 {
    font-size: 32px;
  }
}
.contact-page {
  background: #070707;
  color: #fff;
  min-height: 100vh;
}

.contact-hero {
  position: relative;
  min-height: 72vh;
  background:
    linear-gradient(rgba(0,0,0,.72), rgba(0,0,0,.82)),
    url("../assets/hero.png");
  background-size: cover;
  background-position: center;
  overflow: hidden;
}

.contact-overlay {
  position: absolute;
  inset: 0;
  background:
    radial-gradient(circle at right top, rgba(255,106,0,.18), transparent 35%);
}

.contact-navbar {
  position: relative;
  z-index: 3;
  width: 100%;
  padding: 34px 70px;
  display: flex;
  align-items: center;
  justify-content: space-between;
}

.contact-logo {
  font-size: 32px;
  font-weight: 900;
  letter-spacing: -1px;
}

.contact-menu {
  display: flex;
  gap: 42px;
}

.contact-menu a {
  color: rgba(255,255,255,.7);
  font-size: 15px;
  font-weight: 700;
  transition: .3s ease;
}

.contact-menu a:hover,
.contact-menu a.active {
  color: #ff6a00;
}

.contact-content {
  position: relative;
  z-index: 3;
  max-width: 850px;
  padding: 120px 70px;
}

.contact-content span {
  display: inline-block;
  margin-bottom: 20px;
  color: #ff6a00;
  font-size: 14px;
  font-weight: 900;
  letter-spacing: 3px;
}

.contact-content h1 {
  font-size: clamp(56px, 8vw, 130px);
  line-height: .9;
  letter-spacing: -4px;
  text-transform: uppercase;
}

.contact-content p {
  max-width: 620px;
  margin-top: 26px;
  font-size: 20px;
  line-height: 1.7;
  color: rgba(255,255,255,.72);
}

.contact-section {
  padding: 120px 70px;
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 60px;
}

.contact-left span {
  color: #ff6a00;
  font-size: 14px;
  font-weight: 900;
  letter-spacing: 3px;
}

.contact-left h2 {
  margin-top: 22px;
  font-size: clamp(42px, 5vw, 82px);
  line-height: .95;
  letter-spacing: -3px;
  text-transform: uppercase;
}

.contact-items {
  margin-top: 50px;
  display: flex;
  flex-direction: column;
  gap: 34px;
}

.contact-item {
  padding-bottom: 26px;
  border-bottom: 1px solid rgba(255,255,255,.08);
}

.contact-item small {
  color: #ff6a00;
  font-size: 13px;
  font-weight: 900;
  letter-spacing: 2px;
}

.contact-item h3 {
  margin-top: 14px;
  font-size: 34px;
  line-height: 1.1;
  letter-spacing: -1px;
}

.contact-form-area {
  display: flex;
  align-items: center;
}

.form-box {
  width: 100%;
  min-height: 420px;
  padding: 48px;
  border: 1px solid rgba(255,255,255,.08);
  background:
    linear-gradient(
      135deg,
      rgba(255,255,255,.03),
      rgba(255,106,0,.06)
    );
  display: flex;
  flex-direction: column;
  justify-content: center;
}

.form-box span {
  color: #ff6a00;
  font-size: 13px;
  font-weight: 900;
  letter-spacing: 3px;
}

.form-box h3 {
  margin-top: 22px;
  font-size: 52px;
  line-height: .95;
  letter-spacing: -2px;
  text-transform: uppercase;
}

.form-box p {
  margin-top: 22px;
  max-width: 420px;
  font-size: 16px;
  line-height: 1.8;
  color: rgba(255,255,255,.72);
}

.social-section {
  padding: 0 70px 120px;
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 24px;
}

.social-card {
  padding: 38px;
  background: rgba(255,255,255,.03);
  border: 1px solid rgba(255,255,255,.08);
  transition: .35s ease;
}

.social-card:hover {
  transform: translateY(-10px);
  border-color: rgba(255,106,0,.5);
}

.social-card.featured {
  background:
    linear-gradient(
      135deg,
      rgba(255,106,0,.92),
      rgba(120,50,0,.85)
    );
  border-color: #ff6a00;
}

.social-card small {
  color: #ff6a00;
  font-size: 13px;
  font-weight: 900;
  letter-spacing: 2px;
}

.social-card.featured small {
  color: #fff;
}

.social-card h3 {
  margin-top: 24px;
  font-size: 38px;
  line-height: .95;
  letter-spacing: -1px;
  text-transform: uppercase;
}

@media (max-width: 992px) {

  .contact-navbar,
  .contact-content,
  .contact-section,
  .social-section {
    padding-left: 28px;
    padding-right: 28px;
  }

  .contact-section,
  .social-section {
    grid-template-columns: 1fr;
  }

  .contact-menu {
    display: none;
  }
}

@media (max-width: 640px) {

  .contact-navbar,
  .contact-content,
  .contact-section,
  .social-section {
    padding-left: 20px;
    padding-right: 20px;
  }

  .contact-content h1,
  .contact-left h2,
  .form-box h3 {
    letter-spacing: -2px;
  }

  .contact-item h3,
  .social-card h3 {
    font-size: 30px;
  }

  .form-box {
    padding: 36px;
  }
}
.legal-page {
  background: #070707;
  color: #fff;
  min-height: 100vh;
}

.legal-hero {
  position: relative;
  min-height: 72vh;
  background:
    linear-gradient(rgba(0,0,0,.72), rgba(0,0,0,.82)),
    url("../assets/hero.png");
  background-size: cover;
  background-position: center;
  overflow: hidden;
}

.legal-overlay {
  position: absolute;
  inset: 0;
  background:
    radial-gradient(circle at left top, rgba(255,106,0,.18), transparent 35%);
}

.legal-navbar {
  position: relative;
  z-index: 3;
  width: 100%;
  padding: 34px 70px;
  display: flex;
  align-items: center;
  justify-content: space-between;
}

.legal-logo {
  font-size: 32px;
  font-weight: 900;
  letter-spacing: -1px;
}

.legal-menu {
  display: flex;
  gap: 42px;
}

.legal-menu a {
  color: rgba(255,255,255,.7);
  font-size: 15px;
  font-weight: 700;
  transition: .3s ease;
}

.legal-menu a:hover,
.legal-menu a.active {
  color: #ff6a00;
}

.legal-content {
  position: relative;
  z-index: 3;
  max-width: 850px;
  padding: 120px 70px;
}

.legal-content span {
  display: inline-block;
  margin-bottom: 20px;
  color: #ff6a00;
  font-size: 14px;
  font-weight: 900;
  letter-spacing: 3px;
}

.legal-content h1 {
  font-size: clamp(56px, 8vw, 130px);
  line-height: .9;
  letter-spacing: -4px;
  text-transform: uppercase;
}

.legal-content p {
  max-width: 620px;
  margin-top: 26px;
  font-size: 20px;
  line-height: 1.7;
  color: rgba(255,255,255,.72);
}

.legal-section {
  padding: 120px 70px;
}

.legal-head span {
  color: #ff6a00;
  font-size: 14px;
  font-weight: 900;
  letter-spacing: 3px;
}

.legal-head h2 {
  margin-top: 22px;
  max-width: 760px;
  font-size: clamp(42px, 5vw, 82px);
  line-height: .95;
  letter-spacing: -3px;
  text-transform: uppercase;
}

.legal-grid {
  margin-top: 54px;
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 24px;
}

.legal-card {
  padding: 38px;
  background: rgba(255,255,255,.03);
  border: 1px solid rgba(255,255,255,.08);
  transition: .35s ease;
}

.legal-card:hover {
  transform: translateY(-10px);
  border-color: rgba(255,106,0,.5);
}

.legal-card.featured {
  background:
    linear-gradient(
      135deg,
      rgba(255,106,0,.92),
      rgba(120,50,0,.85)
    );
  border-color: #ff6a00;
}

.legal-card small {
  color: #ff6a00;
  font-size: 13px;
  font-weight: 900;
  letter-spacing: 2px;
}

.legal-card.featured small {
  color: #fff;
}

.legal-card h3 {
  margin-top: 24px;
  font-size: 40px;
  line-height: .95;
  letter-spacing: -1px;
  text-transform: uppercase;
}

.legal-card p {
  margin-top: 18px;
  font-size: 16px;
  line-height: 1.8;
  color: rgba(255,255,255,.72);
}

.legal-card.featured p {
  color: rgba(255,255,255,.92);
}

.legal-card a {
  display: inline-block;
  margin-top: 28px;
  color: #ff6a00;
  font-size: 14px;
  font-weight: 900;
  letter-spacing: 1px;
}

.legal-card.featured a {
  color: #fff;
}

@media (max-width: 992px) {

  .legal-navbar,
  .legal-content,
  .legal-section {
    padding-left: 28px;
    padding-right: 28px;
  }

  .legal-grid {
    grid-template-columns: 1fr;
  }

  .legal-menu {
    display: none;
  }
}

@media (max-width: 640px) {

  .legal-navbar,
  .legal-content,
  .legal-section {
    padding-left: 20px;
    padding-right: 20px;
  }

  .legal-content h1,
  .legal-head h2 {
    letter-spacing: -2px;
  }

  .legal-card h3 {
    font-size: 32px;
  }
}
.hamburger {
  width: 42px;
  height: 32px;
  background: transparent;
  border: none;
  display: none;
  flex-direction: column;
  justify-content: space-between;
  cursor: pointer;
  position: relative;
  z-index: 1200;
}

.hamburger span {
  width: 100%;
  height: 3px;
  background: #fff;
  transition: .35s ease;
}

.hamburger.active span:nth-child(1) {
  transform: translateY(14px) rotate(45deg);
}

.hamburger.active span:nth-child(2) {
  opacity: 0;
}

.hamburger.active span:nth-child(3) {
  transform: translateY(-14px) rotate(-45deg);
}

.mobile-menu {
  position: fixed;
  inset: 0;
  background:
    linear-gradient(
      135deg,
      rgba(10,10,10,.98),
      rgba(20,20,20,.98)
    );
  z-index: 1100;
  opacity: 0;
  visibility: hidden;
  transition: .4s ease;
  display: flex;
  align-items: center;
  justify-content: center;
}

.mobile-menu.active {
  opacity: 1;
  visibility: visible;
}

.mobile-menu-inner {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 28px;
}

.mobile-menu-inner a {
  color: #fff;
  font-size: 34px;
  font-weight: 900;
  letter-spacing: -1px;
  text-transform: uppercase;
  transition: .3s ease;
}

.mobile-menu-inner a:hover {
  color: #ff6a00;
  transform: translateX(6px);
}

@media (max-width: 992px) {
  .hamburger {
    display: flex;
  }
}
.hamburger {
  width: 46px;
  height: 34px;
  background: transparent;
  border: none;
  display: flex;
  flex-direction: column;
  justify-content: space-between;
  cursor: pointer;
  position: relative;
  z-index: 1200;
  padding: 0;
  flex-shrink: 0;
}

.hamburger span {
  display: block;
  width: 46px;
  height: 3px;
  background: #fff;
  transition: .35s ease;
}

.hamburger.active span:nth-child(1) {
  transform: translateY(15px) rotate(45deg);
}

.hamburger.active span:nth-child(2) {
  opacity: 0;
}

.hamburger.active span:nth-child(3) {
  transform: translateY(-15px) rotate(-45deg);
}
.navbar,
.routes-navbar,
.festival-navbar,
.motor-navbar,
.about-navbar,
.contact-navbar,
.legal-navbar {
  position: fixed;
  top: 0;
  left: 0;
  z-index: 1000;
  transition:
    background .35s ease,
    backdrop-filter .35s ease,
    padding .35s ease,
    border-color .35s ease;
}

.nav-scrolled {
  background: rgba(10,10,10,.72);
  backdrop-filter: blur(16px);
  -webkit-backdrop-filter: blur(16px);
  border-bottom: 1px solid rgba(255,255,255,.06);
}
.route-card,
.access-card,
.partner-card,
.value-card,
.team-card,
.social-card,
.location-card,
.legal-card {
  position: relative;
  overflow: hidden;
}

.route-card::after,
.access-card::after,
.partner-card::after,
.value-card::after,
.team-card::after,
.social-card::after,
.location-card::after,
.legal-card::after {
  content: "";
  position: absolute;
  inset: 0;
  background:
    linear-gradient(
      135deg,
      transparent 0%,
      rgba(255,255,255,.04) 50%,
      transparent 100%
    );
  transform: translateX(-100%);
  transition: .6s ease;
  pointer-events: none;
}

.route-card:hover::after,
.access-card:hover::after,
.partner-card:hover::after,
.value-card:hover::after,
.team-card:hover::after,
.social-card:hover::after,
.location-card:hover::after,
.legal-card:hover::after {
  transform: translateX(100%);
}

.route-image,
.gallery-card,
.map-placeholder {
  transition:
    transform .7s ease,
    filter .5s ease;
}

.route-card:hover .route-image,
.gallery-card:hover,
.map-placeholder:hover {
  transform: scale(1.05);
}

.btn,
.festival-btn,
.filter-btn {
  position: relative;
  overflow: hidden;
}

.btn::before,
.festival-btn::before,
.filter-btn::before {
  content: "";
  position: absolute;
  top: 0;
  left: -120%;
  width: 100%;
  height: 100%;
  background:
    linear-gradient(
      90deg,
      transparent,
      rgba(255,255,255,.25),
      transparent
    );
  transition: .7s ease;
}

.btn:hover::before,
.festival-btn:hover::before,
.filter-btn:hover::before {
  left: 120%;
}

.menu a,
.routes-menu a,
.festival-menu a,
.motor-menu a,
.about-menu a,
.contact-menu a,
.legal-menu a {
  position: relative;
}

.menu a::after,
.routes-menu a::after,
.festival-menu a::after,
.motor-menu a::after,
.about-menu a::after,
.contact-menu a::after,
.legal-menu a::after {
  content: "";
  position: absolute;
  left: 0;
  bottom: -10px;
  width: 0%;
  height: 2px;
  background: #ff6a00;
  transition: .35s ease;
}

.menu a:hover::after,
.routes-menu a:hover::after,
.festival-menu a:hover::after,
.motor-menu a:hover::after,
.about-menu a:hover::after,
.contact-menu a:hover::after,
.legal-menu a:hover::after,
.menu a.active::after,
.routes-menu a.active::after,
.festival-menu a.active::after,
.motor-menu a.active::after,
.about-menu a.active::after,
.contact-menu a.active::after,
.legal-menu a.active::after {
  width: 100%;
}

html {
  scroll-behavior: smooth;
}
.route-card {
  opacity: 1;
  transform: translateY(0);
  transition:
    opacity .35s ease,
    transform .35s ease,
    border-color .35s ease;
}
.loader {
  position: fixed;
  inset: 0;
  background: #050505;
  z-index: 99999;
  display: flex;
  align-items: center;
  justify-content: center;
  transition:
    opacity .9s ease,
    visibility .9s ease;
}

.loader.hide {
  opacity: 0;
  visibility: hidden;
}

.loader-inner {
  text-align: center;
}

.loader-inner h1 {
  font-size: clamp(54px, 8vw, 140px);
  line-height: .9;
  letter-spacing: -4px;
  color: #fff;
  text-transform: uppercase;
  animation: loaderText 1.4s ease infinite alternate;
}

.loader-inner span {
  display: inline-block;
  margin-top: 20px;
  color: #ff6a00;
  font-size: 14px;
  font-weight: 900;
  letter-spacing: 4px;
}

@keyframes loaderText {

  from {
    opacity: .45;
    transform: translateY(0);
  }

  to {
    opacity: 1;
    transform: translateY(-8px);
  }

}

body.loaded section,
body.loaded footer {
  animation: pageFade 1s ease;
}

@keyframes pageFade {

  from {
    opacity: 0;
    transform: translateY(30px);
  }

  to {
    opacity: 1;
    transform: translateY(0);
  }

}
.festival-form-section {
  padding: 0 70px 120px;
  display: grid;
  grid-template-columns: .9fr 1.1fr;
  gap: 60px;
}

.festival-form-left span {
  color: #ff6a00;
  font-size: 14px;
  font-weight: 900;
  letter-spacing: 3px;
}

.festival-form-left h2 {
  margin-top: 22px;
  font-size: clamp(42px, 5vw, 82px);
  line-height: .95;
  letter-spacing: -3px;
  text-transform: uppercase;
}

.festival-form-left p {
  margin-top: 28px;
  max-width: 520px;
  font-size: 17px;
  line-height: 1.9;
  color: rgba(255,255,255,.7);
}

.festival-form {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 24px;
}

.form-group {
  display: flex;
  flex-direction: column;
}

.form-group.full {
  grid-column: span 2;
}

.form-group label {
  margin-bottom: 12px;
  color: #ff6a00;
  font-size: 13px;
  font-weight: 900;
  letter-spacing: 2px;
}

.form-group input,
.form-group textarea {
  width: 100%;
  background: rgba(255,255,255,.04);
  border: 1px solid rgba(255,255,255,.08);
  padding: 18px 20px;
  color: #fff;
  font-size: 15px;
  outline: none;
  transition: .3s ease;
}

.form-group input:focus,
.form-group textarea:focus {
  border-color: #ff6a00;
  background: rgba(255,106,0,.05);
}

.form-group textarea {
  min-height: 160px;
  resize: vertical;
}

.form-group input::placeholder,
.form-group textarea::placeholder {
  color: rgba(255,255,255,.35);
}

.festival-submit {
  height: 62px;
  border: none;
  background: #ff6a00;
  color: #fff;
  font-size: 15px;
  font-weight: 900;
  letter-spacing: 1px;
  cursor: pointer;
  transition: .3s ease;
}

.festival-submit:hover {
  background: #fff;
  color: #111;
}

@media (max-width: 992px) {

  .festival-form-section {
    grid-template-columns: 1fr;
    padding-left: 28px;
    padding-right: 28px;
  }

}

@media (max-width: 640px) {

  .festival-form-section {
    padding-left: 20px;
    padding-right: 20px;
  }

  .festival-form {
    grid-template-columns: 1fr;
  }

  .form-group.full {
    grid-column: span 1;
  }

  .festival-form-left h2 {
    letter-spacing: -2px;
  }

}
.festival-form-section {
  align-items: start;
  overflow: hidden;
}

.festival-form-area {
  width: 100%;
  max-width: 760px;
}

.festival-form {
  width: 100%;
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 24px;
}

.form-group input,
.form-group textarea {
  width: 100%;
  min-width: 0;
  box-sizing: border-box;
}

.festival-submit {
  grid-column: span 2;
  width: 100%;
}

@media (max-width: 1200px) {
  .festival-form-section {
    grid-template-columns: 1fr;
  }

  .festival-form-area {
    max-width: 100%;
  }
}

@media (max-width: 700px) {
  .festival-form {
    grid-template-columns: 1fr;
  }

  .form-group.full,
  .festival-submit {
    grid-column: span 1;
  }
}
.form-success {
  display: none;
  grid-column: span 2;
  margin-top: 8px;
  padding: 18px 20px;
  background: rgba(255, 106, 0, 0.12);
  border: 1px solid rgba(255, 106, 0, 0.45);
  color: #fff;
  font-size: 15px;
  line-height: 1.6;
}

.form-success.show {
  display: block;
}

.festival-submit.loading {
  opacity: 0.75;
  pointer-events: none;
}

@media (max-width: 700px) {
  .form-success {
    grid-column: span 1;
  }
}
.error-page {
  position: relative;
  min-height: 100vh;
  background:
    linear-gradient(rgba(0,0,0,.78), rgba(0,0,0,.88)),
    url("../assets/hero.png");
  background-size: cover;
  background-position: center;
  overflow: hidden;
  display: flex;
  align-items: center;
  justify-content: center;
  padding: 40px;
}

.error-overlay {
  position: absolute;
  inset: 0;
  background:
    radial-gradient(circle at center, rgba(255,106,0,.14), transparent 40%);
}

.error-content {
  position: relative;
  z-index: 3;
  text-align: center;
  max-width: 820px;
}

.error-content span {
  display: inline-block;
  margin-bottom: 20px;
  color: #ff6a00;
  font-size: 14px;
  font-weight: 900;
  letter-spacing: 4px;
}

.error-content h1 {
  font-size: clamp(64px, 9vw, 160px);
  line-height: .9;
  letter-spacing: -5px;
  color: #fff;
  text-transform: uppercase;
}

.error-content p {
  margin: 30px auto 0;
  max-width: 620px;
  font-size: 20px;
  line-height: 1.8;
  color: rgba(255,255,255,.72);
}

.error-btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  margin-top: 42px;
  height: 64px;
  padding: 0 38px;
  background: #ff6a00;
  color: #fff;
  font-size: 15px;
  font-weight: 900;
  letter-spacing: 1px;
  transition: .35s ease;
}

.error-btn:hover {
  background: #fff;
  color: #111;
}

@media (max-width: 640px) {

  .error-content h1 {
    letter-spacing: -2px;
  }

  .error-content p {
    font-size: 17px;
  }

}
.news-section {
  position: relative;
  padding: 120px 70px;
  background: #050505;
  overflow: hidden;
}

.news-section::before {
  content: "";
  position: absolute;
  inset: 0;
  background:
    radial-gradient(circle at top right, rgba(255,106,0,.08), transparent 35%);
  pointer-events: none;
}

.news-head {
  position: relative;
  z-index: 2;
}

.news-head span {
  color: #ff6a00;
  font-size: 14px;
  font-weight: 900;
  letter-spacing: 3px;
}

.news-head h2 {
  margin-top: 22px;
  max-width: 760px;
  font-size: clamp(42px, 5vw, 82px);
  line-height: .95;
  letter-spacing: -3px;
  text-transform: uppercase;
  color: #fff;
}

.news-grid {
  position: relative;
  z-index: 2;
  margin-top: 60px;
  display: grid;
  grid-template-columns: 1.2fr .9fr .9fr;
  gap: 24px;
}

.news-card {
  padding: 42px;
  background: rgba(255,255,255,.03);
  border: 1px solid rgba(255,255,255,.08);
  transition: .35s ease;
}

.news-card:hover {
  transform: translateY(-10px);
  border-color: rgba(255,106,0,.5);
}

.news-card.featured {
  background:
    linear-gradient(
      135deg,
      rgba(255,106,0,.92),
      rgba(120,50,0,.85)
    );
  border-color: #ff6a00;
}

.news-card small {
  color: #ff6a00;
  font-size: 13px;
  font-weight: 900;
  letter-spacing: 2px;
}

.news-card.featured small {
  color: #fff;
}

.news-card h3 {
  margin-top: 24px;
  font-size: 46px;
  line-height: .95;
  letter-spacing: -2px;
  text-transform: uppercase;
  color: #fff;
}

.news-card p {
  margin-top: 22px;
  font-size: 16px;
  line-height: 1.8;
  color: rgba(255,255,255,.72);
}

.news-card.featured p {
  color: rgba(255,255,255,.92);
}

.news-card a {
  display: inline-block;
  margin-top: 28px;
  color: #ff6a00;
  font-size: 14px;
  font-weight: 900;
  letter-spacing: 1px;
}

.news-card.featured a {
  color: #fff;
}

@media (max-width: 1100px) {

  .news-grid {
    grid-template-columns: 1fr;
  }

}

@media (max-width: 768px) {

  .news-section {
    padding-left: 24px;
    padding-right: 24px;
  }

  .news-head h2 {
    letter-spacing: -2px;
  }

  .news-card h3 {
    font-size: 34px;
  }

}

@media (max-width: 640px) {

  .news-section {
    padding-left: 20px;
    padding-right: 20px;
  }

}
.route-detail-page {
  background: #070707;
  color: #fff;
  min-height: 100vh;
}

.route-detail-hero {
  position: relative;
  min-height: 82vh;
  background:
    linear-gradient(rgba(0,0,0,.72), rgba(0,0,0,.82)),
    url("../assets/hero.png");
  background-size: cover;
  background-position: center;
  overflow: hidden;
}

.route-detail-overlay {
  position: absolute;
  inset: 0;
  background:
    radial-gradient(circle at right top, rgba(255,106,0,.16), transparent 35%);
}

.route-detail-content {
  position: relative;
  z-index: 3;
  max-width: 860px;
  padding: 140px 70px;
}

.route-detail-content span {
  display: inline-block;
  margin-bottom: 20px;
  color: #ff6a00;
  font-size: 14px;
  font-weight: 900;
  letter-spacing: 3px;
}

.route-detail-content h1 {
  font-size: clamp(60px, 8vw, 140px);
  line-height: .9;
  letter-spacing: -5px;
  text-transform: uppercase;
}

.route-detail-content p {
  max-width: 620px;
  margin-top: 28px;
  font-size: 20px;
  line-height: 1.8;
  color: rgba(255,255,255,.72);
}

.route-stats {
  padding: 0 70px;
  margin-top: -80px;
  position: relative;
  z-index: 10;
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 24px;
}

.route-stat {
  padding: 36px;
  background: rgba(18,18,18,.95);
  border: 1px solid rgba(255,255,255,.08);
  backdrop-filter: blur(10px);
}

.route-stat.featured {
  background:
    linear-gradient(
      135deg,
      rgba(255,106,0,.92),
      rgba(120,50,0,.85)
    );
  border-color: #ff6a00;
}

.route-stat small {
  color: #ff6a00;
  font-size: 13px;
  font-weight: 900;
  letter-spacing: 2px;
}

.route-stat.featured small {
  color: #fff;
}

.route-stat h3 {
  margin-top: 18px;
  font-size: 34px;
  line-height: 1;
  letter-spacing: -1px;
  text-transform: uppercase;
}

.route-description {
  padding: 140px 70px 120px;
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 70px;
}

.route-description-left span {
  color: #ff6a00;
  font-size: 14px;
  font-weight: 900;
  letter-spacing: 3px;
}

.route-description-left h2 {
  margin-top: 22px;
  font-size: clamp(42px, 5vw, 82px);
  line-height: .95;
  letter-spacing: -3px;
  text-transform: uppercase;
}

.route-description-right p {
  margin-bottom: 28px;
  font-size: 18px;
  line-height: 1.9;
  color: rgba(255,255,255,.72);
}

.route-gallery {
  padding: 0 70px 120px;
  display: grid;
  grid-template-columns: 1.2fr .8fr;
  gap: 24px;
}

.route-gallery-item {
  min-height: 320px;
  background:
    linear-gradient(rgba(0,0,0,.25), rgba(0,0,0,.45)),
    url("../assets/hero.png");
  background-size: cover;
  background-position: center;
  border: 1px solid rgba(255,255,255,.08);
}

.route-gallery-item.large {
  grid-row: span 2;
  min-height: 664px;
}

.route-map-download {
  padding: 0 70px 120px;
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 24px;
}

.route-map-box,
.route-download-box {
  padding: 48px;
  border: 1px solid rgba(255,255,255,.08);
  background: rgba(255,255,255,.03);
}

.route-map-box span,
.route-download-box span {
  color: #ff6a00;
  font-size: 13px;
  font-weight: 900;
  letter-spacing: 2px;
}

.route-map-box h3,
.route-download-box h3 {
  margin-top: 20px;
  font-size: 46px;
  line-height: .95;
  letter-spacing: -2px;
  text-transform: uppercase;
}

.route-map-box p,
.route-download-box p {
  margin-top: 22px;
  font-size: 16px;
  line-height: 1.8;
  color: rgba(255,255,255,.72);
}

.route-download-btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  margin-top: 32px;
  height: 58px;
  padding: 0 32px;
  background: #ff6a00;
  color: #fff;
  font-size: 14px;
  font-weight: 900;
  letter-spacing: 1px;
  transition: .35s ease;
}

.route-download-btn:hover {
  background: #fff;
  color: #111;
}

@media (max-width: 1100px) {

  .route-stats,
  .route-description,
  .route-map-download {
    grid-template-columns: 1fr 1fr;
  }

}

@media (max-width: 992px) {

  .route-detail-content,
  .route-stats,
  .route-description,
  .route-gallery,
  .route-map-download {
    padding-left: 28px;
    padding-right: 28px;
  }

  .route-stats,
  .route-description,
  .route-gallery,
  .route-map-download {
    grid-template-columns: 1fr;
  }

  .route-gallery-item.large {
    min-height: 320px;
  }

}

@media (max-width: 640px) {

  .route-detail-content,
  .route-stats,
  .route-description,
  .route-gallery,
  .route-map-download {
    padding-left: 20px;
    padding-right: 20px;
  }

  .route-detail-content h1,
  .route-description-left h2,
  .route-map-box h3,
  .route-download-box h3 {
    letter-spacing: -2px;
  }

  .route-stat h3 {
    font-size: 28px;
  }

}
.news-detail-page {
  background: #070707;
  color: #fff;
  min-height: 100vh;
}

.news-detail-hero {
  position: relative;
  min-height: 82vh;
  background:
    linear-gradient(rgba(0,0,0,.72), rgba(0,0,0,.84)),
    url("../assets/hero.png");
  background-size: cover;
  background-position: center;
  overflow: hidden;
}

.news-detail-overlay {
  position: absolute;
  inset: 0;
  background:
    radial-gradient(circle at left top, rgba(255,106,0,.18), transparent 35%);
}

.news-detail-content {
  position: relative;
  z-index: 3;
  max-width: 900px;
  padding: 140px 70px;
}

.news-detail-content span {
  display: inline-block;
  margin-bottom: 20px;
  color: #ff6a00;
  font-size: 14px;
  font-weight: 900;
  letter-spacing: 3px;
}

.news-detail-content h1 {
  font-size: clamp(60px, 8vw, 140px);
  line-height: .9;
  letter-spacing: -5px;
  text-transform: uppercase;
}

.news-detail-content p {
  max-width: 620px;
  margin-top: 28px;
  font-size: 20px;
  line-height: 1.8;
  color: rgba(255,255,255,.72);
}

.news-meta {
  margin-top: 40px;
  display: flex;
  gap: 50px;
}

.news-meta-item small {
  color: #ff6a00;
  font-size: 13px;
  font-weight: 900;
  letter-spacing: 2px;
}

.news-meta-item h3 {
  margin-top: 14px;
  font-size: 22px;
  letter-spacing: -1px;
}

.news-article {
  padding: 120px 70px;
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 70px;
}

.news-article-left span {
  color: #ff6a00;
  font-size: 14px;
  font-weight: 900;
  letter-spacing: 3px;
}

.news-article-left h2 {
  margin-top: 22px;
  font-size: clamp(42px, 5vw, 82px);
  line-height: .95;
  letter-spacing: -3px;
  text-transform: uppercase;
}

.news-article-right p {
  margin-bottom: 28px;
  font-size: 18px;
  line-height: 1.9;
  color: rgba(255,255,255,.72);
}

.news-gallery {
  padding: 0 70px 120px;
  display: grid;
  grid-template-columns: 1.2fr .8fr;
  gap: 24px;
}

.news-gallery-item {
  min-height: 320px;
  background:
    linear-gradient(rgba(0,0,0,.25), rgba(0,0,0,.45)),
    url("../assets/hero.png");
  background-size: cover;
  background-position: center;
  border: 1px solid rgba(255,255,255,.08);
}

.news-gallery-item.large {
  grid-row: span 2;
  min-height: 664px;
}

.news-share {
  padding: 0 70px 120px;
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 50px;
}

.share-left span {
  color: #ff6a00;
  font-size: 14px;
  font-weight: 900;
  letter-spacing: 3px;
}

.share-left h2 {
  margin-top: 22px;
  font-size: clamp(42px, 5vw, 72px);
  line-height: .95;
  letter-spacing: -3px;
  text-transform: uppercase;
}

.share-buttons {
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  gap: 20px;
}

.share-buttons a {
  height: 58px;
  padding: 0 30px;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  background: rgba(255,255,255,.04);
  border: 1px solid rgba(255,255,255,.08);
  color: #fff;
  font-size: 14px;
  font-weight: 900;
  letter-spacing: 1px;
  transition: .35s ease;
}

.share-buttons a:hover {
  background: #ff6a00;
  border-color: #ff6a00;
}

.related-news {
  padding: 0 70px 120px;
}

.related-head span {
  color: #ff6a00;
  font-size: 14px;
  font-weight: 900;
  letter-spacing: 3px;
}

.related-head h2 {
  margin-top: 22px;
  max-width: 760px;
  font-size: clamp(42px, 5vw, 72px);
  line-height: .95;
  letter-spacing: -3px;
  text-transform: uppercase;
}

.related-grid {
  margin-top: 50px;
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 24px;
}

.related-card {
  padding: 42px;
  background: rgba(255,255,255,.03);
  border: 1px solid rgba(255,255,255,.08);
}

.related-card.featured {
  background:
    linear-gradient(
      135deg,
      rgba(255,106,0,.92),
      rgba(120,50,0,.85)
    );
  border-color: #ff6a00;
}

.related-card small {
  color: #ff6a00;
  font-size: 13px;
  font-weight: 900;
  letter-spacing: 2px;
}

.related-card.featured small {
  color: #fff;
}

.related-card h3 {
  margin-top: 24px;
  font-size: 40px;
  line-height: .95;
  letter-spacing: -2px;
  text-transform: uppercase;
}

.related-card a {
  display: inline-block;
  margin-top: 28px;
  color: #ff6a00;
  font-size: 14px;
  font-weight: 900;
  letter-spacing: 1px;
}

.related-card.featured a {
  color: #fff;
}

@media (max-width: 992px) {

  .news-detail-content,
  .news-article,
  .news-gallery,
  .news-share,
  .related-news {
    padding-left: 28px;
    padding-right: 28px;
  }

  .news-article,
  .news-gallery,
  .news-share,
  .related-grid {
    grid-template-columns: 1fr;
  }

  .news-gallery-item.large {
    min-height: 320px;
  }

}

@media (max-width: 640px) {

  .news-detail-content,
  .news-article,
  .news-gallery,
  .news-share,
  .related-news {
    padding-left: 20px;
    padding-right: 20px;
  }

  .news-detail-content h1,
  .news-article-left h2,
  .share-left h2,
  .related-head h2 {
    letter-spacing: -2px;
  }

  .news-meta {
    flex-direction: column;
    gap: 24px;
  }

  .related-card h3 {
    font-size: 32px;
  }

}
.premium-footer {
  position: relative;
  padding: 140px 70px 50px;
  background: #040404;
  overflow: hidden;
  border-top: 1px solid rgba(255,255,255,.06);
}

.footer-gradient {
  position: absolute;
  inset: 0;
  background:
    radial-gradient(circle at bottom right, rgba(255,106,0,.12), transparent 35%);
  pointer-events: none;
}

.footer-top-big {
  position: relative;
  z-index: 2;
}

.footer-top-big span {
  color: #ff6a00;
  font-size: 14px;
  font-weight: 900;
  letter-spacing: 4px;
}

.footer-top-big h2 {
  margin-top: 22px;
  font-size: clamp(64px, 9vw, 180px);
  line-height: .88;
  letter-spacing: -6px;
  text-transform: uppercase;
  color: #fff;
}

.footer-main {
  position: relative;
  z-index: 2;
  margin-top: 80px;
  padding-top: 60px;
  border-top: 1px solid rgba(255,255,255,.08);
  display: grid;
  grid-template-columns: 1.2fr .8fr .8fr 1fr;
  gap: 40px;
}

.footer-column {
  display: flex;
  flex-direction: column;
}

.footer-column.brand p {
  max-width: 340px;
}

.footer-column h3 {
  font-size: 38px;
  line-height: 1;
  letter-spacing: -2px;
  color: #fff;
}

.footer-column small {
  margin-bottom: 24px;
  color: #ff6a00;
  font-size: 13px;
  font-weight: 900;
  letter-spacing: 2px;
}

.footer-column a,
.footer-column p {
  margin-bottom: 16px;
  color: rgba(255,255,255,.68);
  font-size: 16px;
  line-height: 1.8;
  transition: .3s ease;
}

.footer-column a:hover {
  color: #ff6a00;
  transform: translateX(6px);
}

.footer-bottom-bar {
  position: relative;
  z-index: 2;
  margin-top: 70px;
  padding-top: 30px;
  border-top: 1px solid rgba(255,255,255,.08);
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 20px;
}

.footer-bottom-bar span,
.footer-bottom-bar p {
  color: rgba(255,255,255,.45);
  font-size: 14px;
  letter-spacing: 1px;
}

@media (max-width: 1100px) {

  .footer-main {
    grid-template-columns: 1fr 1fr;
  }

}

@media (max-width: 768px) {

  .premium-footer {
    padding-left: 24px;
    padding-right: 24px;
  }

  .footer-main {
    grid-template-columns: 1fr;
  }

  .footer-bottom-bar {
    flex-direction: column;
    align-items: flex-start;
  }

  .footer-top-big h2 {
    letter-spacing: -3px;
  }

}

@media (max-width: 640px) {

  .premium-footer {
    padding-left: 20px;
    padding-right: 20px;
  }

}
.events-section {
  position: relative;
  padding: 120px 70px;
  background: #070707;
  overflow: hidden;
}

.events-section::before {
  content: "";
  position: absolute;
  inset: 0;
  background:
    radial-gradient(circle at left center, rgba(255,106,0,.08), transparent 35%);
  pointer-events: none;
}

.events-head {
  position: relative;
  z-index: 2;
}

.events-head span {
  color: #ff6a00;
  font-size: 14px;
  font-weight: 900;
  letter-spacing: 3px;
}

.events-head h2 {
  margin-top: 22px;
  max-width: 860px;
  font-size: clamp(42px, 5vw, 82px);
  line-height: .95;
  letter-spacing: -3px;
  text-transform: uppercase;
  color: #fff;
}

.events-timeline {
  position: relative;
  z-index: 2;
  margin-top: 70px;
  display: flex;
  flex-direction: column;
  gap: 24px;
}

.event-item {
  display: grid;
  grid-template-columns: 160px 1fr;
  gap: 32px;
  padding: 34px;
  background: rgba(255,255,255,.03);
  border: 1px solid rgba(255,255,255,.08);
  transition: .35s ease;
}

.event-item:hover {
  transform: translateX(10px);
  border-color: rgba(255,106,0,.5);
}

.event-item.featured {
  background:
    linear-gradient(
      135deg,
      rgba(255,106,0,.92),
      rgba(120,50,0,.85)
    );
  border-color: #ff6a00;
}

.event-date {
  display: flex;
  flex-direction: column;
  justify-content: center;
}

.event-date small {
  color: #ff6a00;
  font-size: 13px;
  font-weight: 900;
  letter-spacing: 2px;
}

.event-item.featured .event-date small {
  color: #fff;
}

.event-date h3 {
  margin-top: 10px;
  font-size: clamp(34px, 4vw, 82px);
  line-height: .9;
  letter-spacing: -2px;
  color: #fff;
  text-transform: uppercase;
  word-break: break-word;
}

.event-content {
  display: flex;
  flex-direction: column;
  justify-content: center;
}

.event-content span {
  color: #ff6a00;
  font-size: 13px;
  font-weight: 900;
  letter-spacing: 2px;
}

.event-item.featured .event-content span {
  color: #fff;
}

.event-content h4 {
  margin-top: 18px;
  font-size: 42px;
  line-height: .95;
  letter-spacing: -2px;
  text-transform: uppercase;
  color: #fff;
}

.event-content p {
  margin-top: 18px;
  max-width: 700px;
  font-size: 16px;
  line-height: 1.8;
  color: rgba(255,255,255,.72);
}

.event-item.featured .event-content p {
  color: rgba(255,255,255,.92);
}

@media (max-width: 992px) {

  .events-section {
    padding-left: 28px;
    padding-right: 28px;
  }

  .event-item {
    grid-template-columns: 1fr;
  }

}

@media (max-width: 640px) {

  .events-section {
    padding-left: 20px;
    padding-right: 20px;
  }

  .events-head h2,
  .event-content h4 {
    letter-spacing: -2px;
  }

  .event-date h3 {
  margin-top: 10px;
  font-size: clamp(34px, 4vw, 82px);
  line-height: .9;
  letter-spacing: -2px;
  color: #fff;
  text-transform: uppercase;
  word-break: break-word;
}
}
@media (max-width: 768px) {
  body {
    overflow-x: hidden;
  }

  .hero,
  .routes-hero,
  .festival-hero,
  .motor-hero,
  .about-hero,
  .contact-hero,
  .legal-hero,
  .route-detail-hero,
  .news-detail-hero {
    min-height: 100vh;
  }

  .hero-content,
  .routes-hero-content,
  .festival-content,
  .motor-content,
  .about-content,
  .contact-content,
  .legal-content,
  .route-detail-content,
  .news-detail-content {
    padding-top: 160px;
    padding-bottom: 80px;
  }

  .hero-content h1,
  .routes-hero-content h1,
  .festival-content h1,
  .motor-content h1,
  .about-content h1,
  .contact-content h1,
  .legal-content h1,
  .route-detail-content h1,
  .news-detail-content h1 {
    font-size: clamp(48px, 15vw, 72px);
    line-height: .92;
    letter-spacing: -2px;
  }

  .hero-content p,
  .routes-hero-content p,
  .festival-content p,
  .motor-content p,
  .about-content p,
  .contact-content p,
  .legal-content p,
  .route-detail-content p,
  .news-detail-content p {
    font-size: 16px;
    line-height: 1.7;
  }

  .navbar,
  .routes-navbar,
  .festival-navbar,
  .motor-navbar,
  .about-navbar,
  .contact-navbar,
  .legal-navbar {
    padding: 24px 20px;
    height: auto;
    align-items: center;
  }

  .brand-main,
  .routes-logo,
  .festival-logo,
  .motor-logo,
  .about-logo,
  .contact-logo,
  .legal-logo {
    font-size: 24px;
  }

  .brand-sub,
  .brand-sign {
    display: none;
  }

  .hero-buttons {
    flex-direction: column;
    width: 100%;
  }

  .btn,
  .festival-btn,
  .festival-submit,
  .route-download-btn,
  .error-btn {
    width: 100%;
  }

  .section-head h2,
  .manifesto-left h2,
  .partners-top h2,
  .news-head h2,
  .events-head h2,
  .festival-info-left h2,
  .map-info h2,
  .story-left h2,
  .contact-left h2,
  .legal-head h2,
  .route-description-left h2,
  .news-article-left h2,
  .share-left h2,
  .related-head h2,
  .footer-top-big h2 {
    font-size: clamp(34px, 12vw, 54px);
    line-height: .95;
    letter-spacing: -2px;
  }

  .quick-access,
  .club-manifesto,
  .partners-section,
  .news-section,
  .events-section,
  .festival-info,
  .festival-form-section,
  .motor-map-section,
  .about-story,
  .contact-section,
  .legal-section,
  .route-description,
  .news-article,
  .premium-footer {
    padding-top: 76px;
    padding-bottom: 76px;
  }

  .access-card,
  .news-card,
  .event-item,
  .location-card,
  .value-card,
  .team-card,
  .legal-card,
  .related-card {
    padding: 28px;
  }

  .access-card h3,
  .news-card h3,
  .event-content h4,
  .location-card h3,
  .value-card h3,
  .team-card h3,
  .legal-card h3,
  .related-card h3 {
    font-size: 30px;
    letter-spacing: -1px;
  }

  .footer-top-big h2 {
    font-size: clamp(54px, 16vw, 90px);
  }

  .mobile-menu-inner a {
    font-size: 30px;
  }
}
.hamburger.active span {
  background: #fff;
}

.hamburger.active {
  position: fixed;
  top: 38px;
  right: 70px;
  opacity: 1;
}

.mobile-menu.active + .hamburger,
.hamburger.active {
  z-index: 12000;
}

@media (max-width: 768px) {
  .hamburger.active {
    top: 28px;
    right: 24px;
  }
}
.hamburger.active span {
  height: 4px;
  box-shadow: 0 0 18px rgba(255,255,255,.35);
}
.mobile-close {
  position: fixed;
  top: 34px;
  right: 54px;
  z-index: 13000;
  width: 54px;
  height: 54px;
  border: 1px solid rgba(255,255,255,.22);
  background: rgba(255,255,255,.06);
  color: #fff;
  font-size: 42px;
  line-height: 1;
  cursor: pointer;
  display: none;
  align-items: center;
  justify-content: center;
  transition: .3s ease;
}

.mobile-menu.active .mobile-close {
  display: flex;
}

.mobile-close:hover {
  background: #ff6a00;
  border-color: #ff6a00;
}

@media (max-width: 768px) {
  .mobile-close {
    top: 24px;
    right: 24px;
    width: 48px;
    height: 48px;
    font-size: 36px;
  }
}
.brand-logo {
  display: flex;
  align-items: center;
  position: relative;
  z-index: 1200;
}

.brand-logo img {
  width: 260px;
  height: auto;
  object-fit: contain;
  transition: .35s ease;
}

.brand-logo:hover img {
  transform: scale(1.03);
}

@media (max-width: 992px) {

  .brand-logo img {
    width: 210px;
  }

}

@media (max-width: 640px) {

  .brand-logo img {
    width: 170px;
  }

}
.brand-logo {
  display: flex;
  align-items: center;
  height: 100%;
  padding: 10px 0;
}

.brand-logo img {
  display: block;
  width: auto;
  max-width: 240px;
  max-height: 78px;
  object-fit: contain;
}

.navbar,
.routes-navbar,
.festival-navbar,
.motor-navbar,
.about-navbar,
.contact-navbar,
.legal-navbar {
  min-height: 92px;
  align-items: center;
}
.hero-content,
.routes-hero-content,
.festival-content,
.motor-content,
.about-content,
.contact-content,
.legal-content,
.route-detail-content,
.news-detail-content {
  padding-top: 170px !important;
}
.navbar,
.routes-navbar,
.festival-navbar,
.motor-navbar,
.about-navbar,
.contact-navbar,
.legal-navbar {
  height: 110px;
  padding-top: 0;
  padding-bottom: 0;
}
@media (max-width: 480px) {
  .hero-content h1,
  .routes-hero-content h1,
  .festival-content h1,
  .motor-content h1,
  .about-content h1,
  .contact-content h1,
  .legal-content h1,
  .route-detail-content h1,
  .news-detail-content h1 {
    font-size: clamp(42px, 13vw, 58px) !important;
    line-height: 0.95 !important;
    letter-spacing: -1.5px !important;
    max-width: 100%;
    word-break: normal;
    overflow-wrap: break-word;
  }

  .hero-content,
  .routes-hero-content,
  .festival-content,
  .motor-content,
  .about-content,
  .contact-content,
  .legal-content,
  .route-detail-content,
  .news-detail-content {
    width: 100%;
    max-width: 100%;
    padding-left: 24px !important;
    padding-right: 24px !important;
  }

  .routes-hero-content p,
  .festival-content p,
  .motor-content p,
  .about-content p,
  .contact-content p,
  .legal-content p,
  .route-detail-content p,
  .news-detail-content p {
    max-width: 100%;
  }
}
@media (max-width: 480px) {
  .hero-content h1,
  .routes-hero-content h1,
  .festival-content h1,
  .motor-content h1,
  .about-content h1,
  .contact-content h1,
  .legal-content h1,
  .route-detail-content h1,
  .news-detail-content h1 {
    font-size: clamp(34px, 10.5vw, 46px) !important;
    line-height: 1.02 !important;
    letter-spacing: -1px !important;
    word-break: keep-all !important;
    overflow-wrap: normal !important;
    hyphens: none !important;
  }
}