/* style.css - eFitLog dark/green gradient theme */

body {
  margin: 0;
  font-family: 'Segoe UI', Tahoma, Geneva, Verdana, sans-serif;
  background: #0a0a0a;
  color: #f0f0f0;
}

.navbar {
  display: flex;
  justify-content: space-between;
  align-items: center;
  padding: 1rem 2rem;
  background: linear-gradient(90deg, #00ff00 0%, #005500 100%);
  position: sticky;
  top: 0;
  z-index: 10;
}

.logo {
  height: 40px;
}

.nav-links {
  list-style: none;
  display: flex;
  gap: 1.5rem;
}

.nav-links a {
  color: white;
  text-decoration: none;
  font-weight: bold;
  transition: color 0.3s;
}

.nav-links a:hover {
  color: #00ff88;
}

.hero {
  display: flex;
  flex-direction: column-reverse;
  align-items: center;
  text-align: center;
  padding: 3rem 2rem;
  background: radial-gradient(circle at top left, #003300, #000);
}

.hero-text h1 {
  font-size: 2.5rem;
  margin-bottom: 1rem;
}

.hero-text .highlight {
  color: #00ff00;
}

.hero-image img {
  width: 250px;
  border-radius: 10px;
  margin-top: 1.5rem;
}

.cta-button {
  background: #00cc00;
  color: black;
  padding: 0.8rem 1.5rem;
  border: none;
  border-radius: 30px;
  font-size: 1rem;
  font-weight: bold;
  text-decoration: none;
  transition: background 0.3s;
}

.cta-button:hover {
  background: #00ff88;
}

.features-preview {
  padding: 3rem 2rem;
  background: #111;
  text-align: center;
}

.features-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(220px, 1fr));
  gap: 2rem;
  margin-top: 2rem;
}

body {
 /* padding-top: 80px;  Adjust to match navbar height */
}


.feature {
  background: #1a1a1a;
  padding: 1.5rem;
  border-radius: 12px;
  box-shadow: 0 4px 8px rgba(0, 255, 0, 0.1);
}

.download {
  text-align: center;
  padding: 3rem 2rem;
  background: linear-gradient(135deg, #004400, #001100);
}

.store-button {
  background: #00ff00;
  color: #000;
  padding: 1rem 2rem;
  font-size: 1.1rem;
  border-radius: 25px;
  text-decoration: none;
  font-weight: bold;
  display: inline-block;
  margin: 1rem 0;
}

.video-demo {
  padding: 3rem 2rem;
  background: #0d0d0d;
  text-align: center;
}

.hero {
  /* margin-top: 80px;  Adjust to match navbar height */
}


.video-demo iframe {
  max-width: 100%;
  border-radius: 8px;
}

footer {
  background: #000;
  color: #666;
  text-align: center;
  padding: 1rem;
  font-size: 0.9rem;
  margin-top: 2rem;
}

html, body {
  margin: 0;
  padding: 0;
}


header, .navbar {
  margin-top: 0;
  padding-top: 0;
}

ul.nav-links {
  margin: 0;
  padding: 0;
}

