@font-face {
  font-family: 'Anton';
  src: url('../fonts/anton.woff2') format('woff2');
  font-display: swap;
}
/* Base Reset */
* {
  margin: 0;
  padding: 0;
  box-sizing: border-box;
}

body, html {
  font-family: 'Segoe UI', Tahoma, Geneva, Verdana, sans-serif;
  height: 100%;
  overflow-x: hidden;
  color: #333;
  background-color: #fff;
}

/* Typography */
h1, h2, h3, h4, h5 {
  font-family: 'Anton', sans-serif;
  letter-spacing: 2px;
  text-transform: uppercase;
}

.video-header {
  position: relative;
  width: 100%;
  height: 100vh;
  overflow: hidden;
  /* Remove flexbox for this container */
  /* display: flex; */
  /* align-items: center; */
  /* justify-content: center; */
  color: white;
  text-align: center;
  background: black;
}

.video-header video {
  position: absolute;
  top: 50%;
  left: 50%;
  min-width: 100%;
  min-height: 100%;
  width: auto;
  height: auto;
  z-index: 0; /* change from -1 to 0 */
  transform: translate(-50%, -50%);
  filter: brightness(0.6);
  object-fit: cover; /* ensures video covers area nicely */
}

.video-header .content {
  position: relative; /* make sure it stacks above video */
  z-index: 10;
  max-width: 800px;
  padding: 20px;
}
video-header h1 {
  font-size: 4rem;
  margin-bottom: 0.5rem;
  color: #FF6F00;
  text-shadow: 0 0 10px rgba(255,111,0,0.7);
}

.video-header p {
  font-size: 1.5rem;
  font-weight: 600;
  margin-bottom: 2rem;
  color: #fff;
  text-shadow: 0 0 5px rgba(0,0,0,0.7);
}
.content-wrapper {
  position: relative;
  z-index: 10;
  height: 100vh;
  display: flex;
  align-items: center;
  justify-content: center;
  text-align: center;
}

.content {
  max-width: 800px;
  padding: 20px;
  color: white;
}

.content h1 {
  font-size: 4rem;
  margin-bottom: 0.5rem;
  color: #FF6F00;
  text-shadow: 0 0 10px rgba(255, 111, 0, 0.7);
  font-family: 'Anton', sans-serif;
}

.content p {
  font-size: 1.5rem;
  font-weight: 600;
  margin-bottom: 2rem;
  text-shadow: 0 0 5px rgba(0, 0, 0, 0.7);
}

.btn-primary {
  /* Your button styling here */
}

.btn-primary {
  padding: 1rem 3rem;
  font-size: 1.25rem;
  background-color: #FF6F00;
  color: white;
  border: none;
  border-radius: 30px;
  cursor: pointer;
  transition: background-color 0.3s ease;
  text-transform: uppercase;
  font-weight: 700;
  box-shadow: 0 4px 15px rgba(255,111,0,0.5);
}

.btn-primary:hover {
  background-color: #e55b00;
  box-shadow: 0 6px 20px rgba(229,91,0,0.7);
}

/* Parallax Sections */
section {
  min-height: 80vh;
  padding: 60px 15%;
  background-attachment: fixed;
  background-position: center;
  background-repeat: no-repeat;
  background-size: cover;
  display: flex;
  flex-direction: column;
  justify-content: center;
  color: #fff;
  text-align: center;
}

#section1 {
  background-image: url('../img/weights-bg.jpg');
  background-color: rgba(0,0,0,0.6);
  background-blend-mode: darken;
}

#section2 {
  background-image: url('../img/cardio-bg.jpg');
  background-color: rgba(0,0,0,0.5);
  background-blend-mode: multiply;
}

#section3 {
  background-color: #222;
  color: #FF6F00;
}

section h2 {
  font-size: 3rem;
  margin-bottom: 1rem;
  text-shadow: 0 0 10px rgba(0,0,0,0.7);
}

section p {
  font-size: 1.25rem;
  max-width: 700px;
  margin: 0 auto 2rem auto;
  font-weight: 500;
  text-shadow: 0 0 7px rgba(0,0,0,0.6);
}

.apparel-section {
  background-color: #111;
  color: #fff;
  padding: 80px 20px;
}

.apparel-section .container {
  display: flex;
  flex-direction: row; /* Explicitly horizontal */
  align-items: center;
  justify-content: space-between;
  max-width: 1200px;
  margin: 0 auto;
  gap: 40px;
}

.apparel-text {
  flex: 1;
  max-width: 500px;
  text-align: left;
}

.apparel-text h2 {
  font-size: 2.5rem;
  color: #FF6F00;
  font-family: 'Anton', sans-serif;
  margin-bottom: 20px;
}

.apparel-text p {
  font-size: 1.2rem;
  line-height: 1.6;
  margin-bottom: 30px;
}

.apparel-image {
  flex: 1;
  display: flex;
  justify-content: flex-end;
}

.apparel-image img {
  width: 100%;
  max-width: 400px;
  border-radius: 12px;
  box-shadow: 0 0 20px rgba(0,0,0,0.5);
}

.btn-secondary {
  background-color: #FF6F00;
  border: none;
  color: white;
  padding: 12px 30px;
  font-size: 1rem;
  font-weight: bold;
  text-transform: uppercase;
  border-radius: 6px;
  cursor: pointer;
  transition: background 0.3s;
}

.btn-secondary:hover {
  background-color: #e65c00;
}

/* Responsive stacking on small screens */
@media (max-width: 768px) {
  .apparel-section .container {
    flex-direction: column;
    text-align: center;
  }

  .apparel-text,
  .apparel-image {
    max-width: 100%;
    flex: 1 1 100%;
  }

  .apparel-image {
    justify-content: center;
    margin-top: 20px;
  }

  .apparel-text {
    text-align: center;
  }
}
.connect-section {
  background-color: #1a1a1a;
  color: white;
  padding: 80px 20px;
  text-align: center;
}

.connect-section h2 {
  font-family: 'Anton', sans-serif;
  color: #FF6F00;
  font-size: 2.5rem;
  margin-bottom: 10px;
}

.connect-section p {
  font-size: 1.2rem;
  margin-bottom: 30px;
}

.social-links {
  display: flex;
  justify-content: center;
  gap: 30px;
  flex-wrap: wrap;
}

.social-links a {
  color: #FF6F00;
  font-size: 2rem;
  transition: transform 0.3s ease, color 0.3s ease;
}

.social-links a:hover {
  color: #fff;
  transform: scale(1.2);
}

/* Responsive */
@media(max-width: 768px) {
  .video-header h1 {
    font-size: 2.5rem;
  }
  .video-header p {
    font-size: 1rem;
  }
  section {
    padding: 40px 10%;
    min-height: 60vh;
  }
  .apparel-section .container {
    flex-direction: column;
    text-align: center;
  }

  .apparel-text,
  .apparel-image {
    max-width: 100%;
    flex: 1 1 100%;
  }

  .apparel-image {
    margin-top: 20px;
  }
  section {
    background-attachment: scroll;
  }
}