:root {
  --primary: #ff1e1e;
  --dark: #0a0a0a;
  --gray: #444;
  --light: #eee;
}

* {
  margin: 0;
  padding: 0;
  box-sizing: border-box;
}

body {
  font-family: 'Montserrat', sans-serif;
  background-color: var(--dark);
  color: white;
  line-height: 1.6;
}

/* Navbar */
.navbar {
  background: #000;
}

.navbar-container {
  display: flex;
  justify-content: space-between;
  align-items: center;
  padding: 1rem 2rem;
}

.navbar-left {
  flex: 1;
  display: flex;
  align-items: center;
}

.navbar-center {
  flex: 2;
  display: flex;
  justify-content: center;
}

.navbar-right {
  flex: 1;
  display: flex;
  justify-content: flex-end;
  align-items: center;
  gap: 1rem;
}

.logo {
  font-size: 1.8rem;
  font-weight: 800;
  color: var(--primary);
}

.nav-links {
  display: flex;
  list-style: none;
  gap: 2rem;
}

.nav-links li a {
  color: white;
  text-decoration: none;
  font-weight: 500;
  transition: color 0.3s;
}

.nav-links li a:hover {
  color: var(--primary);
}

.btn {
  padding: 0.7rem 1.4rem;
  font-weight: 600;
  border: none;
  cursor: pointer;
  border-radius: 5px;
  transition: background 0.3s;
}

.btn.primary {
  background: var(--primary);
  color: black;
}

.btn.secondary {
  background: none;
  border: 2px solid var(--primary);
  color: var(--primary);
}

/* Hamburger və Mobile Menu */
.hamburger {
  display: none;
  font-size: 1.5rem;
  cursor: pointer;
}

.mobile-menu {
  display: none;
  background-color: #000;
  padding: 1rem;
  list-style: none;
}

.mobile-menu li {
  margin-bottom: 1rem;
}

.mobile-menu li a,
.mobile-menu li button {
  color: white;
  text-decoration: none;
  font-weight: 500;
}

/* Hero Bölməsi */
.hero-video {
  position: relative;
  height: 90vh;
  overflow: hidden;
  background-image: url('./assets/wrest-poster.jpg');
  background-size: cover;
  background-position: center;
}

.bg-video {
  position: absolute;
  width: 100%;
  height: 100%;
  object-fit: cover;
  z-index: 1;
  opacity: 0.25;
}

.hero-overlay {
  position: relative;
  z-index: 2;
  color: white;
  text-align: center;
  top: 50%;
  transform: translateY(-50%);
  padding: 0 2rem;
}

.hero-overlay h1 {
  font-size: 3rem;
  font-weight: 800;
}

.hero-overlay h1 span {
  color: var(--primary);
}

.hero-overlay p {
  margin: 1rem 0;
  font-size: 1.2rem;
}

/* Ümumi Bölmələr */
.features,
.services,
.trainings,
.experience,
.trainers,
.success,
.cta {
  padding: 4rem 2rem;
  text-align: center;
}

.features h2,
.services h2,
.trainings h2,
.experience h2,
.trainers h2,
.success h2,
.cta h2 {
  font-size: 2rem;
  margin-bottom: 2rem;
}

.features span,
.services span,
.trainings span,
.experience span,
.trainers span,
.success span {
  color: var(--primary);
}

.feature-list,
.service-cards,
.training-grid,
.experience-blocks,
.trainer-cards {
  display: flex;
  flex-wrap: wrap;
  gap: 1.5rem;
  justify-content: center;
  margin-top: 1.5rem;
}

.feature,
.card,
.training-box,
.block,
.trainer {
  background: #111;
  padding: 1rem;
  border-radius: 10px;
  min-width: 180px;
  font-weight: 600;
  box-shadow: 0 0 10px rgba(255, 30, 30, 0.1);
  text-align: center;
}

.card.highlight {
  background-color: var(--primary);
  color: black;
}

.feature img {
  width: 80px;
  height: 120px;
  margin-top: 1rem;
  object-fit: contain;
}

.feature-text {
  font-size: 1rem;
}

/* Təcrübə və testimonial */
.testimonial {
  background: #111;
  margin: 2rem auto;
  padding: 2rem;
  max-width: 600px;
  border-radius: 10px;
  font-style: italic;
}

/* Abunə (CTA) bölməsi */
.cta input[type='email'] {
  padding: 0.8rem;
  margin-top: 1rem;
  width: 250px;
  border: none;
  border-radius: 5px;
  margin-right: 0.5rem;
}

/* Footer */
footer {
  background: #111;
  color: #888;
  padding: 2rem;
  display: flex;
  justify-content: space-between;
  flex-wrap: wrap;
  gap: 1rem;
}

footer a {
  color: var(--primary);
  text-decoration: none;
  margin: 0 0.5rem;
}
