/* === GLOBAL VARIABLES === */
:root {
  --primary-green: #00ff66;
  --primary-green-dark: #00cc52;
  --neutral-dark: #111;
  --neutral-light: #f9f9f9;
}

/* === RESET === */
* {
  margin: 0;
  padding: 0;
  box-sizing: border-box;
}

body {
  font-family: 'Montserrat', sans-serif;
  color: var(--neutral-dark);
  background-color: var(--neutral-light);
  line-height: 1.6;
}

/* === HEADER & NAVIGATION === */
header {
  background-color: var(--neutral-dark);
  color: white;
  padding: 1rem 2rem;
}

nav {
  display: flex;
  justify-content: space-between;
  align-items: center;
}

.logo {
  font-size: 1.5rem;
  font-weight: 700;
  color: var(--primary-green);
}

nav ul {
  display: flex;
  list-style: none;
}

nav ul li {
  margin-left: 1.5rem;
}

nav ul li a {
  color: white;
  text-decoration: none;
  font-weight: 500;
  transition: color 0.3s;
}

nav ul li a:hover,
nav ul li a.active {
  color: var(--primary-green);
}

/* === HERO SECTION === */
.hero {
  background: url('images/hero-bg.jpg') center/cover no-repeat;
  color: white;
  text-align: center;
  padding: 4rem 2rem;
  height: 50vh; /* Reduced to 50% height */
  display: flex;
  flex-direction: column;
  justify-content: center;
}

.hero h1 {
  font-size: 2.5rem;
}

.hero p {
  font-size: 1.2rem;
  margin: 1rem 0;
}

/* === HERO PRODUCTS === */
.hero-products {
  background: url('images/hero-bg.jpg') center/cover no-repeat;
  color: white;
  text-align: center;
  padding: 4rem 2rem;
}

.hero-products h1 {
  font-size: 2.5rem;
}

.hero-products p {
  font-size: 1.2rem;
  margin-bottom: 2rem;
}

/* === BUTTONS === */
.btn,
.btn-primary {
  background-color: var(--primary-green);
  color: var(--neutral-dark);
  padding: 0.6rem 1.2rem;
  border-radius: 5px;
  text-decoration: none;
  font-weight: 600;
  transition: background-color 0.3s;
}

.btn:hover,
.btn-primary:hover {
  background-color: var(--primary-green-dark);
}

.btn.secondary {
  background-color: transparent;
  border: 2px solid var(--primary-green);
  color: var(--primary-green);
}

.btn.secondary:hover {
  background-color: var(--primary-green);
  color: var(--neutral-dark);
}

/* === VIDEO === */
.video-container {
  text-align: center;
  padding: 2rem;
}

.video-container video {
  width: 50%; /* 50% size */
  height: auto;
  border-radius: 10px;
  box-shadow: 0 4px 20px rgba(0,0,0,0.2);
}

/* === FEATURES SECTION === */
.features {
  background: white;
  padding: 2rem;
  text-align: center;
}

.feature {
  background: #f0f0f0;
  padding: 1rem;
  border-radius: 8px;
  box-shadow: 0 4px 8px rgba(0,0,0,0.05);
  margin-bottom: 1.5rem;
}

.feature h3 {
  margin-bottom: 0.5rem;
}

/* === GALLERY === */
.gallery {
  padding: 2rem;
  text-align: center;
  background: white;
}

.gallery-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(220px, 1fr));
  gap: 1.5rem;
}

.gallery-item {
  background: #fafafa;
  border-radius: 10px;
  overflow: hidden;
  box-shadow: 0 0 8px rgba(0,0,0,0.1);
  transition: transform 0.3s ease;
}

.gallery-item:hover {
  transform: translateY(-5px);
}

.gallery-item img {
  width: 100%;
  height: 200px;
  object-fit: cover;
}

.gallery-item h3 {
  margin: 0.5rem 0 0.2rem;
}

.gallery-item p {
  padding: 0 1rem 1rem;
  font-size: 0.9rem;
  color: #555;
}

/* === FOOTER === */
footer {
  background-color: var(--neutral-dark);
  color: white;
  text-align: center;
  padding: 1rem;
  margin-top: 2rem;
}