/* style.css */
:root {
  --bg-dark: #111111;
  --bg-darker: #000000;
  --accent-orange: #ff5500;
  --text-light: #f4f4f4;
  --text-gray: #aaaaaa;
}

* {
  margin: 0;
  padding: 0;
  box-sizing: border-box;
  font-family: 'Oswald', 'Arial Black', sans-serif; /* Bold, sporty fonts */
}

body {
  background-color: var(--bg-dark);
  color: var(--text-light);
  line-height: 1.6;
}

/* Navigation */
header {
  background-color: var(--bg-darker);
  padding: 15px 5%;
  position: sticky;
  top: 0;
  z-index: 100;
  border-bottom: 2px solid var(--accent-orange);
  display: flex;
  justify-content: space-between;
  align-items: center;
}

.logo {
  color: var(--accent-orange);
  font-size: 2rem;
  font-style: italic;
  text-decoration: none;
  font-weight: 900;
}

.nav-links {
  list-style: none;
  display: flex;
  gap: 25px;
}

.nav-links a {
  color: var(--text-light);
  text-decoration: none;
  font-weight: bold;
  text-transform: uppercase;
  transition: color 0.3s;
}

.nav-links a:hover {
  color: var(--accent-orange);
}

/* Hero Section */
.hero {
  height: 70vh;
  background: linear-gradient(rgba(0,0,0,0.7), rgba(0,0,0,0.7)), url('https://images.unsplash.com/photo-1558981403-c5f9899a28bc?auto=format&fit=crop&q=80') center/cover;
  display: flex;
  flex-direction: column;
  justify-content: center;
  padding-left: 5%;
}

.hero h1 {
  font-size: 4rem;
  font-style: italic;
  line-height: 1.1;
  margin-bottom: 10px;
}

.hero h1 span {
  color: var(--accent-orange);
}

.hero p {
  font-family: 'Arial', sans-serif;
  font-size: 1.2rem;
  max-width: 600px;
  margin-bottom: 20px;
  color: var(--text-gray);
}

/* Split Section (Products) */
.product-showcase {
  display: flex;
  flex-wrap: wrap;
  padding: 20px;
  gap: 20px;
}

.product-box {
  flex: 1;
  min-width: 300px;
  background-color: #1a1a1a;
  border: 1px solid #333;
  padding: 30px;
  text-align: left;
}

.product-box h2 {
  color: var(--accent-orange);
  font-size: 2rem;
  font-style: italic;
}

.product-box h3 {
  margin-bottom: 15px;
  font-size: 1.2rem;
}

.product-box ul {
  list-style: none;
  margin-bottom: 20px;
  font-family: 'Arial', sans-serif;
}

.product-box ul li {
  margin-bottom: 8px;
  position: relative;
  padding-left: 20px;
}

.product-box ul li::before {
  content: "•";
  color: var(--accent-orange);
  position: absolute;
  left: 0;
  font-size: 1.5rem;
  line-height: 1;
}

.btn-orange {
  display: inline-block;
  background: linear-gradient(to bottom, #ff7b00, #ff4400);
  color: white;
  padding: 10px 25px;
  text-decoration: none;
  font-weight: bold;
  font-size: 1.2rem;
  transition: transform 0.2s;
}

.btn-orange:hover {
  transform: scale(1.05);
}

/* Trust Badges */
.trust-section {
  text-align: center;
  padding: 50px 20px;
  border-top: 1px solid #333;
  border-bottom: 1px solid #333;
}

.trust-section h2 {
  color: var(--accent-orange);
  font-size: 2.5rem;
  font-style: italic;
  margin-bottom: 30px;
}

.badges {
  display: flex;
  justify-content: center;
  gap: 50px;
  flex-wrap: wrap;
}

.badge {
  text-align: center;
  max-width: 200px;
}

.badge h4 {
  margin: 10px 0;
  font-size: 1.2rem;
}

.badge p {
  font-family: 'Arial', sans-serif;
  color: var(--text-gray);
  font-size: 0.9rem;
}

/* Animations */
.fade-in {
  opacity: 0;
  transform: translateY(20px);
  animation: fadeIn 1s forwards;
}

@keyframes fadeIn {
  to {
    opacity: 1;
    transform: translateY(0);
  }
}