:root {
  /* main colours */
  --bg: #000000;
  --text-color: #d9d9d9;
  --red-0: #8b000a;
  --red-1: #6b000d;
  --red-2: #820316;
  --red-3: #3a0004;
  --red-4: #220002;
  --red-5: #ff3b1a;
  --red-6: #ff1a1a;

  /* UI LINES */
  --line: rgba(255, 255, 255, 0.08);
  --line-red: rgba(255, 42, 42, 0.18);
  --shadow: 0 20px 60px rgba(0, 0, 0, 0.55);

  /* RADIUS AND SPACING */
  --r-lg: 18px;
  --r-md: 12px;
}
/* MAIN STUFF */

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

html {
  scroll-behavior: smooth;
  scroll-snap-type: y proximity;
}
body {
  background: var(--bg);
  font-family: "Rajdhani", sans-serif;
  color: var(--text-color);
  min-height: 100vh;
  width: 100%;
  overflow-x: hidden;
}

a {
  text-decoration: none;
}

header.hero,
section,
footer {
  scroll-snap-align: start;
}

.section-title {
  font-family: "Rajdhani", sans-serif;
  font-size: 50px;
  font-weight: 400;
  text-transform: uppercase;
  position: relative;
  display: inline-block;
}

.section-title::after {
  content: "";
  position: absolute;
  left: 100%;
  top: 50%;
  margin-left: 20px;
  width: 500px;
  height: 5px;
  background-image: url("../img/header-title.png");
  background-repeat: no-repeat;
  transform: translateY(-50%);
}

section {
  padding: 100px 0;
  scroll-margin-top: 170px;
}

.hero,
.about,
.testimonials,
.booking {
  min-height: 100vh;
  scroll-snap-align: start;
}

.lessons {
  scroll-snap-align: start;
}

.section-nav {
  position: fixed;
  right: 30px;
  bottom: 30px;
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 8px;
  z-index: 999;
}

.nav-up,
.section-nav-line {
  opacity: 0;
  pointer-events: none;
  transition: opacity 0.25s ease;
}

.nav-down {
  opacity: 1;
  transition: opacity 0.25s ease;
}

.section-nav.show-up .nav-up,
.section-nav.show-up .section-nav-line {
  opacity: 1;
  pointer-events: auto;
}

.section-nav-line {
  width: 2px;
  height: 26px;
  background: linear-gradient(180deg, transparent, var(--red-0), transparent);
  box-shadow: 0 0 8px rgba(255, 60, 40, 0.2);
}

.section-nav button {
  width: 44px;
  height: 44px;
  border-radius: 10px;
  background: rgba(0, 0, 0, 0.65);
  border: 1px solid rgba(255, 60, 60, 0.25);
  color: #fff;
  font-family: "Rajdhani", sans-serif;
  font-size: 16px;
  line-height: 1;
  cursor: pointer;
  backdrop-filter: blur(6px);
  transition:
    transform 0.2s ease,
    background 0.2s ease,
    border-color 0.2s ease;
}

.section-nav button:hover {
  background: rgba(70, 0, 0, 0.55);
  border-color: rgba(255, 70, 70, 0.45);
  transform: translateY(-2px);
}

.nav-up {
  transform: translateY(-2px);
}

.nav-down {
  transform: translateY(2px);
}

.nav-social {
  display: flex;
  align-items: center;
  gap: 20px;
  margin-left: 18px;
}

.nav-social a {
  background: none;
  border: none;
  padding: 6px;
  width: auto;
  height: auto;
  display: inline-flex;
  align-items: center;
  justify-content: center;
}

.nav-social a,
.nav-social a i {
  color: rgba(255, 255, 255, 0.7);
  font-size: 16px;
  transition:
    transform 0.2s ease,
    color 0.2s ease,
    text-shadow 0.2s ease;
}

.nav-social a:hover,
.nav-social a:hover i {
  color: var(--red-5);
  transform: translateY(-2px);
  text-shadow: 0 0 8px rgba(255, 60, 40, 0.35);
}

.nav-social a::after {
  display: none !important;
}

.nav-toggle {
  display: none;
  width: 46px;
  height: 46px;
  border-radius: 10px;
  border: 1px solid rgba(255, 80, 60, 0.25);
  background: rgba(0, 0, 0, 0.45);
  align-items: center;
  justify-content: center;
  flex-direction: column;
  gap: 5px;
  cursor: pointer;
}

.nav-toggle span {
  width: 20px;
  height: 2px;
  background: white;
  display: block;
  transition: all 0.25s ease;
}

.nav-toggle.active span:nth-child(1) {
  transform: translateY(7px) rotate(45deg);
}

.nav-toggle.active span:nth-child(2) {
  opacity: 0;
}

.nav-toggle.active span:nth-child(3) {
  transform: translateY(-7px) rotate(-45deg);
}

/* HEADER */

.site-header-wrap {
  position: fixed;
  top: 0;
  left: 0;
  right: 0;
  z-index: 999;
  background: transparent;
  backdrop-filter: none;
  -webkit-backdrop-filter: none;
  border-bottom: 1px solid transparent;
  transition:
    background 0.25s ease,
    backdrop-filter 0.25s ease,
    border-color 0.25s ease;
}

.site-header-wrap.is-scrolled {
  background: rgba(0, 0, 0, 0.55);
  backdrop-filter: blur(10px);
  -webkit-backdrop-filter: blur(10px);
  box-shadow: 0 10px 30px rgba(0, 0, 0, 0.35);
  border-bottom-color: rgba(255, 255, 255, 0.06);
}

.container {
  max-width: 1440px;
  margin: 0 auto;
  padding: 0 clamp(16px, 4vw, 60px);
}

.site-header {
  display: flex;
  align-items: center;
  justify-content: space-between;
  height: 154px;
  padding: 0 40px;
  position: relative;
  z-index: 2;
  max-width: none;
  width: 100%;
}

.brand {
  display: flex;
  align-items: center;
  gap: 12px;
}

.brand img {
  height: 120px;
  width: auto;
  display: block;
  transform-origin: left center;
  transform: scale(1);
  transition:
    transform 0.25s cubic-bezier(0.34, 1.56, 0.64, 1),
    filter 0.25s ease;
}

.brand:hover img {
  transform: scale(1.08);
  filter: drop-shadow(0 0 12px rgba(255, 0, 0, 0.25));
}

.nav {
  display: flex;
  align-items: center;
  gap: 28px;
}

.nav a {
  font-family: "Rajdhani", sans-serif;
  letter-spacing: 2px;
  text-transform: uppercase;
  font-size: 14px;
  color: var(--text-color);
  opacity: 0.9;
  padding: 8px 2px;
  transition:
    opacity 0.2s ease,
    color 0.2s ease;
  position: relative;
  display: inline-block;
}

.nav a:hover {
  color: #fff;
  opacity: 1;
}

.nav .nav-cta {
  padding: 10px 25px;
  border: 1px solid var(--line-red);
  border-radius: 10px;
  background: rgba(139, 0, 10, 0.22);
  transition:
    background 0.2s ease,
    box-shadow 0.2s ease;
}

.nav-cta:hover {
  background: rgba(139, 0, 10, 0.35);
  box-shadow: 0 0 14px rgba(255, 0, 0, 0.25);
}

.nav a.nav-cta::after {
  content: none !important;
}

.nav a:not(.nav-cta)::after {
  content: "";
  position: absolute;
  left: 0;
  bottom: 0;
  height: 2px;
  width: 100%;
  background: linear-gradient(90deg, transparent, var(--red-0), transparent);
  transform: scaleX(0);
  transform-origin: left;
  transition: transform 0.25s ease;
  opacity: 0.9;
}

.nav a:not(.nav-cta):hover {
  color: #fff;
  opacity: 1;
}

.nav a:not(.nav-cta):hover::after {
  transform: scaleX(1);
}

.hero {
  position: relative;
  min-height: 100vh;
  background:
    linear-gradient(180deg, rgba(0, 0, 0, 0.35), rgba(0, 0, 0, 0.9)),
    url("../img/bg.jpg") center top no-repeat;
  padding-top: 154px;
}

.hero-center {
  min-height: calc(100vh - 154px);
  display: flex;
  align-items: center;
  justify-content: center;
  position: relative;
  z-index: 1;
}

.hero-content {
  max-width: 1100px;
  margin: 0 auto;
  text-align: center;
  transform: translateY(clamp(220px, 20vh, 340px));
}

.hero-title {
  line-height: 0.95;
  font-family: "Rajdhani", sans-serif;
  font-weight: 700;
  font-size: clamp(44px, 5.4vw, 104px);
  text-transform: uppercase;
  letter-spacing: 4px;
  opacity: 0.9;
  margin-bottom: 5px;
  white-space: nowrap;
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  text-shadow:
    0 0 12px rgba(255, 255, 255, 0.4),
    0 0 5px rgba(255, 225, 225, 0.3);
}

.hero-title::after {
  content: "";
  display: block;
  width: 120px;
  height: 3px;
  margin: 15px auto 0;
  background: linear-gradient(90deg, transparent, var(--red-0), transparent);
  opacity: 0.6;
}

.hero-tagline {
  font-size: clamp(18px, 1.2vw, 26px);
  font-family: "Rajdhani", sans-serif;
  text-transform: uppercase;
  letter-spacing: 2px;

  color: var(--text-color);

  margin: 15px auto 24px;
  max-width: 780px;
}

.accent {
  color: var(--red-0);
  font-weight: bold;
  background: linear-gradient(180deg, #ff1a1a, #8b000a);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
}

.hero-btn {
  padding: 18px 40px;
  font-size: 16px;
  letter-spacing: 2.5px;
  margin-top: 12px;
}

.btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  padding: 16px 32px;
  border-radius: 10px;
  border: 1px solid var(--line-red);
  background: rgba(139, 0, 10, 0.22);
  font-family: "Rajdhani", sans-serif;
  letter-spacing: 2px;
  text-transform: uppercase;
  font-size: 25px;
  color: #fff;
  transition:
    transform 0.2s ease,
    background 0.2s ease,
    box-shadow 0.2s ease;
}

.btn:hover {
  background: rgba(139, 0, 10, 0.35);
  box-shadow: 0 0 18px rgba(255, 0, 0, 0.2);
  transform: translateY(-1px);
}

/* LESSONS */

.lessons {
  padding: 60px 0 80px;
}

.lessons-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  margin-top: 38px;
  gap: clamp(16px, 2.2vw, 32px);
}

.lesson-card {
  display: flex;
  flex-direction: column;
  border: 1px solid var(--red-3);
  border-radius: var(--r-lg);
  background:
    linear-gradient(180deg, rgba(60, 0, 0, 0.35), rgba(0, 0, 0, 0.92)),
    url("../img/noise.png");
  background-size: cover;
  transition:
    transform 0.25s ease,
    box-shadow 0.25s ease;
  min-height: 480px;
  padding: 40px 34px;
}

.lesson-card:hover {
  transform: translateY(-6px);
  box-shadow:
    0 12px 30px rgba(0, 0, 0, 0.6),
    0 0 12px rgba(255, 0, 0, 0.12);
}

.lesson-card h3 {
  font-family: "Rajdhani", sans-serif;
  font-size: 40px;
  text-transform: uppercase;
  font-weight: bold;
  letter-spacing: 2px;
  margin-bottom: 22px;
  text-align: center;
}

.lesson-card ul {
  list-style: none;
  margin-bottom: 25px;
  opacity: 0.9;
}

.lesson-card li {
  margin-bottom: 15px;
  font-family: "Rajdhani", sans-serif;
  font-size: 19px;
  text-transform: uppercase;
}

.lesson-card p {
  opacity: 0.75;
  margin-bottom: 30px;
}

.lesson-card .btn {
  margin-top: auto;
  width: 100%;
  justify-content: center;
}

.lessons-learn {
  margin-top: 60px;
}

.lessons-learn-head {
  margin-bottom: 26px;
}

.lessons-subtitle {
  font-family: "Rajdhani", sans-serif;
  font-size: 32px;
  font-weight: 600;
  text-transform: uppercase;
  letter-spacing: 3px;
  opacity: 0.95;
}

.lessons-learn-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: clamp(14px, 2vw, 22px);
}

.learn-item {
  padding: 26px;
  border-radius: var(--r-md);
  border: 1px solid rgba(255, 0, 0, 0.12);
  background:
    linear-gradient(180deg, rgba(60, 0, 0, 0.22), rgba(0, 0, 0, 0.85)),
    url("../img/noise.png");
  background-size: cover;
  transition:
    transform 0.25s ease,
    box-shadow 0.25s ease,
    border-color 0.25s ease;
}

.learn-item:hover {
  transform: translateY(-4px);
  border-color: rgba(255, 0, 0, 0.24);
  box-shadow:
    0 12px 26px rgba(0, 0, 0, 0.55),
    0 0 12px rgba(255, 0, 0, 0.1);
}

.learn-item h4 {
  font-family: "Rajdhani", sans-serif;
  font-size: 22px;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 2px;
  margin-bottom: 10px;
}

.learn-item p {
  opacity: 0.8;
  line-height: 1.5;
}

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

  .lessons-learn-grid {
    grid-template-columns: 1fr;
  }
}

/* ABOUT */

.about {
  padding: 100px 0;
}

.about-copy a {
  text-decoration: none;
  color: var(--red-5);
  border-bottom: 1px solid transparent;
  transition:
    border-color 0.25s ease,
    color 0.25s ease;
}

.about-copy a:hover {
  color: var(--red-6);
  border-bottom-color: var(--red-6);
}

.about-grid {
  margin-top: 60px;
  display: grid;
  grid-template-columns: 0.95fr 1.05fr;
  gap: clamp(24px, 4vw, 70px);
  align-items: start;
}

.about-media {
  position: relative;
  border-radius: var(--r-lg);
  overflow: hidden;
  border: 1px solid rgba(255, 0, 0, 0.1);
  box-shadow: var(--shadow);
  max-height: 900px;
}

.about-media img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: 80% center;
  display: block;
}

.about-img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: 80% center;
}

.about-media img {
  transition: transform 0.6s ease;
}

.about-media:hover img {
  transform: scale(1.04);
}

.about-media::after {
  content: "";
  position: absolute;
  inset: 0;
  background:
    radial-gradient(60% 60% at 50% 35%, rgba(255, 0, 0, 0.1), transparent 60%),
    linear-gradient(180deg, rgba(0, 0, 0, 0.35), rgba(0, 0, 0, 0.85));
}

.about-copy {
  max-width: 540px;
  font-size: 16px;
  line-height: 1.7;
  font-family: "Rajdhani", sans-serif;
  display: flex;
  flex-direction: column;
  justify-content: flex-start;
  gap: 14px;
}

.about-copy h3 {
  font-family: "Rajdhani", sans-serif;
  letter-spacing: 2px;
  text-transform: uppercase;
  font-size: 25px;
  margin-top: 5px;
  color: var(--red-5);
}

.about-copy p {
  margin-bottom: 2px;
  opacity: 0.9;
}

.about-lead {
  font-size: clamp(16px, 1.1vw, 20px);
  line-height: 1.55;
  margin-bottom: 26px;
}

.about-points {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 18px;
  margin-top: 60px;
  margin-bottom: 40px;
  align-items: stretch;
}

.about-point {
  padding: 18px;
  border-radius: var(--r-md);
  border: 1px solid rgba(255, 0, 0, 0.1);
  background:
    linear-gradient(180deg, rgba(55, 8, 4, 0.5), rgba(0, 0, 0, 0.5)),
    url("../img/noise.png");
  background-size: cover;
  transition:
    transform 0.25s ease,
    box-shadow 0.25s ease,
    border-color 0.25s ease,
    background 0.25s ease;
}

.about-point:hover {
  transform: translateY(-4px);
  border-color: rgba(255, 0, 0, 0.25);
  background:
    linear-gradient(180deg, rgba(55, 8, 4, 0.5), rgba(0, 0, 0, 0.5)),
    url("../img/noise.png");
  background-size: cover;
  box-shadow:
    0 10px 25px rgba(0, 0, 0, 0.6),
    0 0 16px rgba(255, 0, 0, 0.12);
}

.about-point h3 {
  font-family: "Rajdhani", sans-serif;
  letter-spacing: 2px;
  text-transform: uppercase;
  font-size: 18px;
  margin-bottom: 8px;
}

.about-point p {
  opacity: 0.8;
}

.about-actions {
  display: flex;
  gap: 14px;
}

.btn-ghost {
  background: rgba(0, 0, 0, 0.35);
  border: 1px solid rgba(255, 255, 255, 0.1);
}

/* TESTIMONALS */

.testimonials {
  padding: 100px 0;
}

.testimonials-slider {
  margin-top: 50px;
  padding-top: 12px;
  overflow: hidden;
}

.testimonials-track {
  display: flex;
  transition: transform 0.45s ease;
  will-change: transform;
}

.testimonial-slide {
  flex: 0 0 100%;
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 24px;
}

.testimonial-card {
  position: relative;
  display: flex;
  flex-direction: column;
  min-height: 420px;
  padding: 38px 34px;
  border-radius: var(--r-lg);
  border: 1px solid rgba(255, 80, 60, 0.14);
  background:
    linear-gradient(180deg, rgba(55, 8, 4, 0.35), rgba(0, 0, 0, 0.9)),
    url("../img/noise.png");
  background-size: cover;
  overflow: hidden;
  transition:
    transform 0.25s ease,
    box-shadow 0.25s ease,
    border-color 0.25s ease;
}

.testimonial-card::before {
  content: "“";
  position: absolute;
  top: 18px;
  left: 26px;
  font-family: Georgia, serif;
  font-size: 110px;
  line-height: 1;
  color: rgba(255, 80, 40, 0.22);
  pointer-events: none;
}

.testimonial-card:hover {
  transform: translateY(-6px);
  border-color: rgba(255, 100, 70, 0.22);
  box-shadow:
    0 14px 28px rgba(0, 0, 0, 0.6),
    0 0 16px rgba(255, 70, 40, 0.12);
}

.testimonial-stars {
  min-height: 28px;
  display: flex;
  align-items: center;
  font-size: 18px;
  letter-spacing: 3px;
  color: #ff5a2f;
  margin-bottom: 18px;
  position: relative;
  z-index: 1;
}

.testimonial-text {
  min-height: 150px;
  font-size: 18px;
  line-height: 1.65;
  color: rgba(255, 255, 255, 0.9);
  margin-bottom: 28px;
  position: relative;
  z-index: 1;
}

.testimonial-author {
  min-height: 52px;
  margin-top: auto;
  display: flex;
  flex-direction: column;
  justify-content: center;
  position: relative;
  z-index: 1;
}

.testimonial-author strong {
  display: block;
  font-family: "Rajdhani", sans-serif;
  font-size: 18px;
  letter-spacing: 2px;
  text-transform: uppercase;
  margin-bottom: 4px;
}

.testimonial-author span {
  font-size: 14px;
  color: rgba(255, 255, 255, 0.65);
}

.testimonials-pagination {
  display: flex;
  justify-content: center;
  gap: 10px;
  margin-top: 28px;
}

.testimonials-pagination button {
  width: 12px;
  height: 12px;
  border-radius: 999px;
  background: rgba(255, 255, 255, 0.15);
  border: 1px solid rgba(255, 80, 60, 0.2);
  cursor: pointer;
  transition:
    transform 0.2s ease,
    background 0.2s ease,
    border-color 0.2s ease;
}

.testimonials-pagination button.active {
  background: var(--red-0);
  border-color: var(--red-0);
  box-shadow: 0 0 10px rgba(255, 70, 40, 0.25);
  transform: scale(1.15);
}

/* BOOKING & FAQ */

.booking {
  padding: 100px 0;
}

.booking .container {
  max-width: 1600px;
}

.booking-grid {
  margin-top: 50px;
  display: grid;
  grid-template-columns: 2fr 1fr;
  gap: clamp(24px, 3vw, 40px);
  align-items: start;
}

.booking-form-wrap {
  padding: 40px;
  border-radius: var(--r-lg);

  border: 1px solid rgba(255, 80, 60, 0.15);

  background:
    linear-gradient(180deg, rgba(55, 8, 4, 0.35), rgba(0, 0, 0, 0.9)),
    url("../img/noise.png");

  background-size: cover;

  box-shadow: 0 20px 50px rgba(0, 0, 0, 0.6);
}

.form-group {
  margin-bottom: 22px;
}

.form-group label {
  display: block;
  margin-bottom: 6px;
  font-family: "Rajdhani", sans-serif;
  letter-spacing: 1px;
  font-size: 14px;
}

.form-group input,
.form-group select,
.form-group textarea {
  width: 100%;

  padding: 14px 16px;

  border-radius: 10px;
  border: 1px solid rgba(255, 255, 255, 0.08);

  background: rgba(0, 0, 0, 0.45);

  color: #fff;

  font-size: 15px;

  transition:
    border 0.2s ease,
    box-shadow 0.2s ease;
}

.form-group input:focus,
.form-group select:focus,
.form-group textarea:focus {
  outline: none;

  border-color: rgba(255, 80, 60, 0.5);

  box-shadow: 0 0 0 2px rgba(255, 60, 40, 0.15);
}

.booking-btn {
  width: 100%;
  margin-top: 10px;
  padding: 16px;
  font-size: 16px;
  letter-spacing: 2px;
}

.booking-side {
  display: flex;
  flex-direction: column;
  gap: 16px;
  align-self: start;
}

.faq-title {
  position: relative;
  display: inline-block;
  font-family: "Rajdhani", sans-serif;
  font-size: 32px;
  font-weight: 600;
  text-transform: uppercase;
  letter-spacing: 3px;
  margin-bottom: 24px;
}

.faq-title::after {
  content: "";
  position: absolute;
  left: 12%;
  top: 50%;
  margin-left: 12px;
  width: 60px;
  height: 3px;
  background: linear-gradient(90deg, var(--red-0), transparent);
  transform: translateY(-50%);
}

.faq-list {
  display: flex;
  flex-direction: column;
  gap: 14px;
}

.faq-item {
  border-radius: var(--r-md);
  border: 1px solid rgba(255, 80, 60, 0.12);
  background:
    linear-gradient(180deg, rgba(55, 8, 4, 0.25), rgba(0, 0, 0, 0.85)),
    url("../img/noise.png");
  background-size: cover;
  overflow: hidden;
  transition:
    border-color 0.25s ease,
    box-shadow 0.25s ease,
    transform 0.2s ease;
}

.faq-item:hover {
  transform: translateY(-2px);
  border-color: rgba(255, 100, 70, 0.22);
  box-shadow:
    0 10px 22px rgba(0, 0, 0, 0.45),
    0 0 12px rgba(255, 70, 40, 0.08);
}

.faq-question {
  width: 100%;
  background: transparent;
  border: 0;
  color: #fff;
  padding: 20px 22px;
  display: flex;
  justify-content: space-between;
  align-items: center;
  text-align: left;
  cursor: pointer;
  font-family: "Rajdhani", sans-serif;
  font-size: 18px;
  letter-spacing: 1.5px;
  text-transform: uppercase;
  transition:
    background 0.25s ease,
    color 0.25s ease;
}

.faq-item.active .faq-question {
  background: rgba(255, 255, 255, 0.02);
}

.faq-icon {
  font-size: 24px;
  line-height: 1;
  color: var(--red-0);
  transition:
    transform 0.25s ease,
    color 0.25s ease;
}

.faq-answer {
  max-height: 0;
  overflow: hidden;
  opacity: 0;
  transition:
    max-height 0.35s ease,
    opacity 0.25s ease;
}

.faq-answer p {
  padding: 0 22px 20px;
  margin: 0;
  color: rgba(255, 255, 255, 0.75);
  line-height: 1.6;
}

.faq-item.open .faq-icon {
  transform: rotate(180deg);
}

.faq-item.open .faq-answer {
  max-height: 220px;
  letter-spacing: 2px;
  opacity: 1;
}

/* FOOTER */

.footer {
  min-height: 10vh;
  display: flex;
  align-items: center;
  justify-content: space-between;
  font-family: "Rajdhani", sans-serif;
  letter-spacing: 2px;
  font-size: 10px;
  font-weight: bold;
}

.footer-divider {
  width: 100%;
  height: 1px;
  background: linear-gradient(
    90deg,
    transparent,
    rgba(255, 60, 40, 0.6),
    transparent
  );
  margin-bottom: 40px;
  box-shadow: 0 0 6px var(--red-1);
}

.footer-copy {
  opacity: 0.75;
}

.footer-social {
  display: flex;
  align-items: center;
  gap: 18px;
  opacity: 0.75;
}

.footer-social a {
  color: rgba(255, 255, 255, 0.7);
  font-size: 18px;
  transition:
    transform 0.2s ease,
    color 0.2s ease,
    text-shadow 0.2s ease;
}

.footer-social a:hover {
  color: var(--red-5);
  opacity: 1;
  transform: translateY(-2px);
  text-shadow: 0 0 8px rgba(255, 60, 40, 0.35);
}
