html {
  scroll-behavior: smooth;
}
body {
  font-family: 'Plus Jakarta Sans', sans-serif;
}

nav h1 {
  font-family: 'Bebas Neue', sans-serif;
  letter-spacing: 3px;
}

.hero {
  padding: 100px 20px;
}

.hero h1 {
  font-size: 40px;
}

button {
  padding: 12px 25px;
  background: #e10600;
  border: none;
  color: white;
  font-family: 'Plus Jakarta Sans', sans-serif;
  font-weight: bold;
  cursor: pointer;
}

* {
  margin: 0;
  padding: 0;
  box-sizing: border-box;
}

body {
  font-family: 'Plus Jakarta Sans', sans-serif;
  background: #000000;
  color: #fff;
  line-height: 1.6;
}

nav {
  display: flex;
  justify-content: space-between;
  align-items: center;
  padding: 20px 8%;
  position: fixed;
  width: 100%;
  background: rgba(0, 0, 0, 0.6);
  backdrop-filter: blur(8px);
  z-index: 10;
}

nav h1 {
  font-weight: 800;
  letter-spacing: 3px;

}
/* Hide hamburger by default */
.menu-toggle {
  display: none;
  flex-direction: column;
  gap: 5px;
  cursor: pointer;
}

.menu-toggle span {
  width: 25px;
  height: 2px;
  background: white;
}

/* Mobile layout */
@media (max-width: 768px) {

  .nav-links {
    display: none;
    position: absolute;
    top: 70px;
    right: 8%;
    background: #000;
    padding: 20px;
    border-radius: 8px;
    flex-direction: column;
    gap: 15px;
  }

  .nav-links.active {
    display: flex;
  }

  .menu-toggle {
    display: flex;
  }

}

nav a {
  font-family: 'Plus Jakarta Sans', sans-serif;
  color: #aaa;
  text-decoration: none;
  margin-left: 30px;
  font-weight: 400;
  position: relative;
  transition: 0.2s ease;
}

nav a::after {
  content: "";
  position: absolute;
  left: 0;
  bottom: -4px;
  width: 0%;
  height: 1px;
  background: white;
  transition: 0.2s ease;
}

nav a:hover {
  color: #fff;
}

nav a:hover::after {
  width: 100%;
}

nav {
  position: relative;
}

.hero {
  height: 60vh;
  display: flex;
  align-items: flex-start;
  justify-content: center;
  text-align: center;
  padding: 220px 8% 0 8%;
  background: #000;
}


.hero-content {
  max-width: 700px;
}

.hero h2 {
    font-family: 'Plus Jakarta Sans', serif;
  font-size: 3rem;
  font-weight: 800;
  margin-bottom: 10px;
}

.hero p {
  font-size: 1.2rem;
  color: #ccc;
  margin-bottom: 40px;
}

.media-section {
  padding: 140px 8%;
  background: #000;
}

.media-intro {
  text-align: center;
  margin-bottom: 100px;
}

.media-item {
  margin-bottom: 40px;
  text-align: center;
}

.scroll-video {
  width: 100%;
  max-width: 1100px;
  border-radius: 12px;
  display: block;
  margin: 0 auto;
  transition: transform 0.4s ease, opacity 0.4s ease;
  opacity: 0.7;
}

.scroll-video.active {
  transform: scale(1.02);
  opacity: 1;
}

.video-wrapper {
  position: relative;
  max-width: 1100px;
  margin: 0 auto;
}

.video-wrapper video {
  width: 100%;
  border-radius: 12px;
  display: block;
}

video::-webkit-media-controls {
  display: none !important;
}

video::-webkit-media-controls-enclosure {
  display: none !important;
}

.sound-toggle {
  position: absolute;
  bottom: 20px;
  right: 20px;
  background: rgba(0, 0, 0, 0.6);
  color: white;
  border: none;
  padding: 8px 14px;
  font-size: 0.9rem;
  border-radius: 6px;
  cursor: pointer;
  transition: 0.2s ease;
}

.sound-toggle:hover {
  background: rgba(0, 0, 0, 0.8);
}

.media-caption {
  margin-top: 25px;
  color: #aaa;
}

.shift {
  padding: 120px 8%;
  text-align: center;
  background: #000;
}

.shift h3 {
  font-family: 'DM Serif Text', serif;
  font-size: 2.5rem;
  margin-bottom: 20px;
}

.shift p {
  max-width: 700px;
  margin: 0 auto 60px;
  color: #aaa;
}


.contact-form {
  max-width: 600px;
  margin: 40px auto 0;
  display: flex;
  flex-direction: column;
  gap: 16px;
}

.btn {
  text-decoration: none;
  font-family: 'Plus Jakarta Sans', sans-serif;
}

a {
  text-decoration: none;
}

.contact-form input,
.contact-form textarea {
  padding: 14px 16px;
  background: #000;
  border: 1px solid #333;
  color: white;
  font-family: 'Plus Jakarta Sans', sans-serif;
  border-radius: 8px;
  font-size: 14px;
  transition: 0.2s ease;
}

.contact-form textarea {
  min-height: 120px;
  resize: vertical;
}

.contact-form input:focus,
.contact-form textarea:focus {
  outline: none;
  border-color: #666;
  background: #0a0a0a;
}

.contact-form textarea {
  min-height: 120px;
}

.contact-form input:focus,
.contact-form textarea:focus {
  outline: none;
  border-color: #666;
}

.btn {
  padding: 14px 28px;
  background: white;
  color: black;
  border: none;
  font-weight: 600;
  cursor: pointer;
  border-radius: 4px;
}

.section {
  padding: 50px 8%;
  text-align: center;
}

.section h3 {
  font-size: 2rem;
  margin-bottom: 20px;
}

.section p {
  max-width: 700px;
  margin: 0 auto 40px;
  color: #aaa;
}

.grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
  gap: 30px;
}

.card {
  background: #1a1a1a;
  padding: 40px;
  border-radius: 10px;
  transition: 0.3s ease;
}

.card:hover {
  background: #222;
  transform: translateY(-5px);
}

.card h4 {
  margin-bottom: 15px;
  font-size: 1.2rem;
}

.card p {
  color: #aaa;
}

footer {
  padding: 60px 8%;
  text-align: center;
  background: #000;
  color: #666;
}

.graph-svg {
  width: 100%;
  height: auto;
}

.curve-line {
  stroke: white;
  stroke-width: 2;
  fill: none;
  stroke-dasharray: 500;
  stroke-dashoffset: 500;
  animation: draw 2s ease forwards;
}

@keyframes draw {
  to {
    stroke-dashoffset: 0;
  }
}

.curve-dot {
  fill: white;
  filter: drop-shadow(0 0 8px rgba(255,255,255,0.8));
  opacity: 0;
  animation: fadeIn 0.5s ease forwards;
  animation-delay: 2s;
}

@keyframes fadeIn {
  to {
    opacity: 1;
  }
}

.footer a {
  color: #aaa;
  text-decoration: none;
}