/* ============================================
   START KARTING - OPTIMISED CSS
   ============================================ */

/* RESET & GLOBAL */
*, *::before, *::after { box-sizing: border-box; }
html { scroll-behavior: smooth; }
body {
  margin: 0;
  background: #111;
  color: #fff;
  font-family: 'DM Sans', sans-serif;
  overflow-x: clip;
  -webkit-font-smoothing: antialiased;
  -moz-osx-font-smoothing: grayscale;
}
img { max-width: 100%; height: auto; }

/* FONTS */
@font-face {
  font-family: 'Abolition Test';
  src: url('../fonts/AbolitionTest-Rough.woff2') format('woff2');
  font-weight: 400;
  font-display: swap;
}
@font-face {
  font-family: 'Rift Soft Test';
  src: url('../fonts/RiftSoftTest-Bold.woff2') format('woff2');
  font-weight: 700;
  font-display: swap;
}

/* VARIABLES */
:root {
  --topbar-h: 40px;
  --nav-h: 100px;
  --brand: #D52570;
  --brand-hover: #e63a85;
  --dark-bg: #1a1a1a;
  --body-bg: #111;
  --white: #fff;
  --overlay-dark: rgba(0, 0, 0, 0.85);
  --transition-speed: 0.3s;
}

/* SKIP LINK (accessibility) */
.skip-link {
  position: absolute;
  top: -100%;
  left: 1rem;
  background: var(--brand);
  color: var(--white);
  padding: 0.5rem 1rem;
  z-index: 10000;
  font-weight: 600;
  text-decoration: none;
}
.skip-link:focus {
  top: 0.5rem;
}

/* ============================================
   TOP BAR
   ============================================ */
.top-bar {
  position: absolute;
  top: 0;
  width: 100%;
  height: var(--topbar-h);
  background: rgba(0, 0, 0, 0.4);
  display: flex;
  align-items: center;
  z-index: 2000;
}
.top-inner {
  width: 100%;
  display: flex;
  justify-content: flex-end;
  gap: 30px;
  padding: 0 5%;
}
.top-item {
  display: flex;
  align-items: center;
  gap: 8px;
}
.top-bar img {
  width: 18px;
  height: 18px;
  object-fit: contain;
}
.top-bar a {
  color: var(--white);
  text-decoration: none;
  font-size: 14px;
  transition: color var(--transition-speed) ease;
}
.top-bar a:hover,
.top-bar a:focus-visible {
  color: #cccbcb;
}

/* ============================================
   NAVBAR
   ============================================ */
.navbar {
  position: absolute;
  top: var(--topbar-h);
  width: 100%;
  z-index: 1500;
}
.nav-inner {
  display: flex;
  justify-content: space-between;
  align-items: center;
  padding: 0 5%;
}
.logo img {
  height: 220px;
  width: auto;
}
.menu {
  display: flex;
  align-items: center;
  gap: 0;
}
.menu a {
  color: var(--white);
  text-decoration: none;
  margin-left: 40px;
  font-weight: 500;
  transition: color var(--transition-speed) ease;
}
.menu a:hover,
.menu a:focus-visible {
  color: #cccbcb;
}

/* Hamburger (mobile) */
.hamburger {
  display: none;
  flex-direction: column;
  justify-content: center;
  gap: 5px;
  background: none;
  border: none;
  cursor: pointer;
  padding: 10px;
  z-index: 1600;
}
.hamburger-line {
  display: block;
  width: 28px;
  height: 3px;
  background: var(--white);
  border-radius: 2px;
  transition: transform var(--transition-speed) ease, opacity var(--transition-speed) ease;
}
.hamburger.is-active .hamburger-line:nth-child(1) {
  transform: translateY(8px) rotate(45deg);
}
.hamburger.is-active .hamburger-line:nth-child(2) {
  opacity: 0;
}
.hamburger.is-active .hamburger-line:nth-child(3) {
  transform: translateY(-8px) rotate(-45deg);
}
/*MENU*/
.menu a {
  font-size: 18px;
  color: var(--white);
  text-decoration: none;
  margin-left: 40px;
  margin-top: -45px; 
  font-weight: 500;
  display: inline-block;
  position: relative;
  padding-bottom: 4px;
  transition: color var(--transition-speed) ease,
              transform var(--transition-speed) ease;
}
.menu a::after {
  content: '';
  position: absolute;
  bottom: 0;
  left: 0;
  width: 0;
  height: 2px;
  background: #cccbcb;
  transition: width var(--transition-speed) ease;
}
.menu a:hover,
.menu a:focus-visible {
  color: #cccbcb;
  transform: translateY(-3px);
}
.menu a:hover::after,
.menu a:focus-visible::after {
  width: 100%;
}
/* ============================================
   HERO
   ============================================ */
.hero {
  position: relative;
  height: 100vh;
  overflow: hidden;
  background: #4a0a2a;
}
.hero-video {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  object-fit: cover;
  -webkit-transform: translateZ(0);
}
.hero-overlay {
  position: absolute;
  inset: 0;
  background: rgba(213, 37, 112, 0.5);
}
.hero-content {
  position: relative;
  display: flex;
  align-items: center;
  height: 100%;
  padding: 0 5%;
}
.hero h1 {
  font-family: 'Abolition Test', sans-serif;
  font-size: clamp(48px, 7vw, 95px);
  line-height: 1.1;
  margin: 0;
}
.hero-content h1 {
  margin-top: 200px;
}

/* ============================================
   SECTIONS
   ============================================ */
.section {
  padding: 100px 0;
}
.section.dark {
  background: var(--dark-bg);
}
.container {
  padding-left: 5%;
  padding-right: 5%;
}
.grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 60px;
  align-items: start;
}
.section .left h2 {
  font-family: 'Abolition Test', sans-serif;
  font-size: clamp(48px, 7vw, 95px);
  line-height: 1.1;
  margin-top: 0;
}
.section .right p,
.section .right h4 {
  font-family: 'Rift Soft Test', sans-serif;
  font-size: clamp(18px, 2vw, 25px);
  line-height: 1.35;
}
.section .right h4 {
  margin-top: 2em;
  color: var(--brand);
}

/* Checklist */
.checklist {
  list-style: none;
  padding: 0;
  margin: 0 0 2rem 0;
}
.checklist li {
  font-family: 'Rift Soft Test', sans-serif;
  font-size: clamp(18px, 2vw, 25px);
  line-height: 1.35;
  padding: 8px 0 8px 35px;
  position: relative;
}
.checklist li::before {
  content: '';
  position: absolute;
  left: 0;
  top: 50%;
  transform: translateY(-50%);
  width: 20px;
  height: 20px;
  background: url('../images/tick-mark.png') center / contain no-repeat;
}

/* ============================================
   CTA BUTTONS
   ============================================ */
.cta {
  display: inline-flex;
  align-items: center;
  gap: 15px;
  padding: 14px 28px;
  background: var(--brand);
  color: var(--white);
  text-decoration: none;
  font-weight: 600;
  border: none;
  cursor: pointer;
  font-family: 'DM Sans', sans-serif;
  font-size: 16px;
  transition: transform var(--transition-speed) ease,
              box-shadow var(--transition-speed) ease,
              background var(--transition-speed) ease;
}
.cta:hover,
.cta:focus-visible {
  transform: translateY(-3px);
  box-shadow: 0 8px 25px rgba(213, 37, 112, 0.4);
  background: var(--brand-hover);
}
.cta-text {
  display: flex;
  flex-direction: column;
  gap: 2px;
}
.cta-text strong {
  font-weight: 400;
  font-size: 13px;
  opacity: 0.8;
}
.cta-arrow img {
  width: 24px;
  height: 24px;
  transition: transform var(--transition-speed) ease;
}
.cta:hover .cta-arrow img {
  transform: translateX(6px);
}

/* ============================================
   BACK TO TOP
   ============================================ */
.back-to-top {
  position: fixed;
  bottom: 30px;
  right: 30px;
  left: auto;
  width: 48px;
  height: 48px;
  background: var(--brand);
  border: none;
  border-radius: 50%;
  cursor: pointer;
  z-index: 8000;
  display: flex;
  align-items: center;
  justify-content: center;
  opacity: 0;
  visibility: hidden;
  transition: opacity var(--transition-speed) ease,
              transform var(--transition-speed) ease,
              visibility var(--transition-speed) ease;
}
.back-to-top img {
  transform: rotate(-45deg);
  width: 20px;
  height: 20px;
}
.back-to-top.is-visible {
  opacity: 1;
  visibility: visible;
}
.back-to-top:hover,
.back-to-top:focus-visible {
  background: var(--brand-hover);
  transform: translateY(-3px);
}

/* ============================================
   MODALS (shared)
   ============================================ */
.modal-overlay,
.sk-contact-overlay {
  position: fixed;
  inset: 0;
  background: var(--overlay-dark);
  display: flex;
  justify-content: center;
  align-items: center;
  z-index: 9999;
  opacity: 0;
  visibility: hidden;
  transition: opacity var(--transition-speed) ease;
}
.modal-overlay.is-open,
.sk-contact-overlay.is-open {
  opacity: 1;
  visibility: visible;
}
.modal-box,
.sk-contact-box {
  background: var(--body-bg);
  padding: 40px;
  max-width: 650px;
  width: 95%;
  max-height: 90vh;
  overflow-y: auto;
  position: relative;
  border: 1px solid rgba(255, 255, 255, 0.1);
}
.modal-close {
  position: absolute;
  top: 12px;
  right: 16px;
  background: none;
  border: none;
  color: var(--white);
  font-size: 32px;
  cursor: pointer;
  line-height: 1;
  padding: 4px 8px;
  transition: color var(--transition-speed) ease;
}
.modal-close:hover,
.modal-close:focus-visible {
  color: var(--brand);
}

/* ============================================
   CONTACT FORM
   ============================================ */
.sk-contact-heading {
  font-family: 'Abolition Test', sans-serif;
  font-size: 36px;
  margin: 0 0 30px 0;
}
.sk-field {
  margin-bottom: 18px;
}
.sk-field label {
  display: block;
  font-size: 14px;
  font-weight: 500;
  margin-bottom: 6px;
  color: rgba(255, 255, 255, 0.7);
}
.sk-field input,
.sk-field textarea,
.sk-field select {
  width: 100%;
  padding: 12px 14px;
  background: rgba(255, 255, 255, 0.05);
  border: 1px solid rgba(255, 255, 255, 0.2);
  color: var(--white);
  font-family: 'DM Sans', sans-serif;
  font-size: 16px;
  transition: border-color var(--transition-speed) ease;
}
.sk-field input:focus,
.sk-field textarea:focus,
.sk-field select:focus {
  outline: none;
  border-color: var(--brand);
}
.sk-field input::placeholder,
.sk-field textarea::placeholder {
  color: rgba(255, 255, 255, 0.35);
}
.sk-field select option {
  background: var(--body-bg);
  color: var(--white);
}
.cta-submit {
  width: 100%;
  justify-content: center;
  margin-top: 10px;
}
.sk-form-feedback {
  text-align: center;
  margin-top: 12px;
  font-size: 14px;
  min-height: 1.4em;
}
.sk-form-feedback.success { color: #4caf50; }
.sk-form-feedback.error { color: #ef5350; }

/* ============================================
   FAQ
   ============================================ */
.sk-faq-section {
  padding: 100px 0;
  background: var(--body-bg);
}
.sk-faq-title {
  font-family: 'Abolition Test', sans-serif;
  font-size: clamp(32px, 5vw, 60px);
  line-height: 1.1;
  margin: 0 0 50px 0;
  text-align: center;
}
.sk-faq {
  max-width: 800px;
  margin: 0 auto;
}
.sk-faq-item {
  border-bottom: 1px solid rgba(255, 255, 255, 0.1);
}
.sk-faq-question {
  width: 100%;
  background: none;
  border: none;
  color: var(--white);
  text-align: left;
  padding: 22px 40px 22px 0;
  font-family: 'Rift Soft Test', sans-serif;
  font-size: clamp(18px, 2vw, 22px);
  cursor: pointer;
  position: relative;
  transition: color var(--transition-speed) ease,
              transform var(--transition-speed) ease;
}
.sk-faq-question:hover,
.sk-faq-question:focus-visible {
  color: var(--brand);
  transform: translateX(6px);
}
.sk-faq-question::after {
  content: '+';
  position: absolute;
  right: 0;
  top: 50%;
  transform: translateY(-50%);
  font-size: 28px;
  font-weight: 300;
  font-family: 'DM Sans', sans-serif;
  transition: transform var(--transition-speed) ease;
}
.sk-faq-item.active .sk-faq-question::after {
  content: '\2013';
  transform: translateY(-50%);
}
.sk-faq-answer {
  max-height: 0;
  overflow: hidden;
  transition: max-height 0.4s ease;
}
.sk-faq-answer p {
  font-family: 'Rift Soft Test', sans-serif;
  font-size: 18px;
  line-height: 1.5;
  padding-bottom: 20px;
  margin: 0;
  color: rgba(255, 255, 255, 0.8);
}
.sk-faq-item.active .sk-faq-answer {
  max-height: 300px;
}

/* ============================================
   FOCUS VISIBLE (accessibility)
   ============================================ */
:focus-visible {
  outline: 2px solid var(--brand);
  outline-offset: 2px;
}
/*SOUND*/
.sound-toggle {
  position: fixed;
  bottom: 30px;
  left: 30px;
  width: 48px;
  height: 48px;
  background: var(--brand);
  border: none;
  border-radius: 50%;
  cursor: pointer;
  z-index: 8000;
  font-size: 20px;
  display: flex;
  align-items: center;
  justify-content: center;
  transition: background var(--transition-speed) ease;
}
.sound-toggle:hover {
  background: var(--brand-hover);
}
/* ============================================
   RESPONSIVE
   ============================================ */

/* Tablet */
@media (max-width: 1024px) {
  .grid {
    gap: 40px;
  }
  .logo img {
    height: 160px;
  }
}

/* Mobile */
@media (max-width: 768px) {
  .grid {
    grid-template-columns: 1fr;
    gap: 30px;
  }

  .hamburger {
    display: flex;
    margin-top: -60px;
  }

  .nav-inner {
    flex-direction: column;
    align-items: center;
    justify-content: center;
    padding: 0;
  }

  .logo img {
    height: 220px;
  }

  .menu {
    position: fixed;
    inset: 0;
    background: rgba(0, 0, 0, 0.95);
    flex-direction: column;
    justify-content: center;
    align-items: center;
    gap: 30px;
    opacity: 0;
    visibility: hidden;
    transition: opacity var(--transition-speed) ease;
    z-index: 1550;
  }
  .menu.is-open {
    opacity: 1;
    visibility: visible;
  }
  .menu a {
  margin-left: 0;
  font-size: 24px;
  line-height: 3;
  padding-bottom: 0;
}
.menu a::after {
  display: none;
        margin-top: 100px; 
}

  .hero {
    height: 90vh;
  }
  .hero-content h1 {
    margin-top: 300px;
  }

  .section {
    padding: 60px 0;
  }
  .sk-faq-section {
    padding: 60px 0;
  }

  .top-bar a {
    font-size: 20px;
  }

  .modal-box,
  .sk-contact-box {
    padding: 25px 20px;
    width: 95%;
  }
}

/* Small mobile */
@media (max-width: 480px) {
  .top-inner {
    justify-content: center;
    gap: 15px;
    flex-wrap: wrap;
  }
  .top-bar a {
    font-size: 12px;
  }
  .cta {
    padding: 12px 18px;
    font-size: 14px;
  }
}