/* Global Styles */
:root {
  --dark-bg: #0d0d0d;
  --card-bg: #1c1a1e;
  --primary: #ffd700;
  --secondary: #ffb347;
  --text-light: #f5f5f5;
  --muted: #aaa;
  --accent: #8651e9;
}

* {
  box-sizing: border-box;
}

body {
  margin: 0;
  font-family: 'Poppins', sans-serif;
  background-color: var(--dark-bg);
  color: var(--text-light);
  line-height: 1.6;
}

/* Navbar */
.navbar {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  padding: 1rem 2rem;
  display: flex;
  justify-content: flex-end;
  gap: 1.5rem;
  z-index: 10;
}

.navbar a {
  color: var(--primary);
  text-decoration: none;
  font-weight: 600;
  transition: color 0.3s ease;
}

.navbar a:hover {
  color: var(--secondary);
}

/* Hero Section */
#hero {
  background-image: linear-gradient(rgba(0,0,0,0.5), rgba(0,0,0,0.8)), url('images/hero.png');
  background-size: cover;
  background-position: center;
  height: 100vh;
  display: flex;
  align-items: center;
  justify-content: center;
  text-align: center;
  position: relative;
}

.hero-content h1 {
  font-family: 'Montserrat', sans-serif;
  font-size: 4rem;
  margin: 0;
  color: var(--primary);
  text-shadow: 0 0 10px rgba(255, 215, 0, 0.8);
}

.hero-content .tagline {
  font-size: 1.2rem;
  margin-top: 1rem;
  color: var(--muted);
  max-width: 600px;
  margin-left: auto;
  margin-right: auto;
}

/* Strain Sections */
.strain-section {
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  justify-content: center;
  gap: 2rem;
  padding: 4rem 2rem;
  background-color: var(--card-bg);
}

.strain-section:nth-child(even) {
  background-color: #221f28;
}

.strain-image {
  flex: 1 1 300px;
  max-width: 450px;
}

.strain-image img {
  width: 100%;
  border-radius: 15px;
  box-shadow: 0 10px 20px rgba(0,0,0,0.5);
}

.strain-content {
  flex: 1 1 300px;
  max-width: 600px;
}

.strain-content h2 {
  margin-top: 0;
  font-size: 2.5rem;
  font-family: 'Montserrat', sans-serif;
  color: var(--primary);
}

.strain-content h3 {
  margin-top: 1.5rem;
  font-size: 1.4rem;
  color: var(--secondary);
}

.strain-content p {
  margin-top: 0.8rem;
  line-height: 1.7;
  color: var(--text-light);
}

/* Footer */
footer {
  text-align: center;
  padding: 2rem;
  background-color: #17151b;
  font-size: 0.9rem;
  color: var(--muted);
}

/* Responsive */
@media (max-width: 768px) {
  .hero-content h1 {
    font-size: 2.8rem;
  }
  .strain-section {
    padding: 2rem 1rem;
  }
  .strain-content h2 {
    font-size: 2rem;
  }
}
