/* Reset & Base */
* {
  margin: 0;
  padding: 0;
  box-sizing: border-box;
}

body {
  font-family: 'Sora', sans-serif;
  color: #333;
  line-height: 1.6;
}

/* Header */
header {
  position: fixed;
  top: 0;
  width: 100%;
  background: rgba(255, 255, 255, 0.95);
  backdrop-filter: blur(10px);
  box-shadow: 0 2px 4px rgba(0,0,0,0.1);
  z-index: 100;
}

.header-container {
  display: flex;
  justify-content: space-between;
  align-items: center;
  max-width: 1200px;
  margin: 0 auto;
  padding: 1rem 2rem;
}

.logo {
  display: flex;
  align-items: center;
}

.logo img {
  height: 40px;
  margin-right: 0.5rem;
}

.logo span {
  font-family: 'Road Rage', cursive;
  font-weight: 500;
  font-size: 1rem;
  text-transform: uppercase;
  letter-spacing: 0.5px;
}

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

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

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

nav ul li a:hover {
  color: #555;
}

/* Hero Section */
.hero {
  display: flex;
  align-items: center;
  justify-content: center;
  height: 100vh;
  background: linear-gradient(135deg, #e7f0d1, #f5f9ee);
  text-align: center;
  padding: 0 1rem;
  margin-top: 80px; /* Offset for fixed header */
}

.hero-content {
  max-width: 800px;
}

.hero h1 {
  font-size: 2.8rem;
  font-weight: 700;
  margin-bottom: 1rem;
}

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

.cta-button {
  display: inline-block;
  padding: 0.8rem 1.8rem;
  background-color: #333;
  color: #fff;
  border-radius: 30px;
  text-decoration: none;
  font-weight: 600;
  transition: background 0.3s;
}

.cta-button:hover {
  background-color: #555;
}

/* Features Section */
.features {
  max-width: 1200px;
  margin: 4rem auto;
  padding: 0 2rem;
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
  gap: 2rem;
}

.feature-card {
  background: #fff;
  padding: 2rem;
  border-radius: 12px;
  box-shadow: 0 4px 12px rgba(0,0,0,0.05);
  transition: transform 0.3s;
}

.feature-card:hover {
  transform: translateY(-5px);
}

.feature-card h2 {
  font-size: 1.5rem;
  margin-bottom: 1rem;
}

.feature-card p {
  font-size: 1rem;
  line-height: 1.5;
}

/* Product Showcase Section */
.product-showcase {
  padding: 6rem 2rem;
  text-align: center;
  background: linear-gradient(135deg, #f5f9ee, #e7f0d1);  /* Matching the hero section's color scheme */
}

.product-showcase h2 {
  margin-bottom: 3rem;
  font-size: 2.5rem;
  color: #333;
}

.screenshot-container {
  display: grid;
  grid-template-columns: repeat(3, minmax(250px, 1fr));
  gap: 2rem;
  max-width: 1200px;
  margin: 0 auto;
  padding: 0 1rem;
}

.screenshot {
  box-shadow: 0 8px 24px rgba(0, 0, 0, 0.12);
  border-radius: 12px;
  overflow: hidden;
  transition: transform 0.3s ease;
  background: white;
}

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

.screenshot img {
  width: 100%;
  height: auto;
  display: block;
}

/* Footer */
footer {
  background: #fff;
  padding: 1.5rem 2rem;
  border-top: 1px solid #e0e0e0;
  margin-top: 4rem;
}

.footer-content {
  max-width: 1200px;
  margin: 0 auto;
  text-align: center;
}

.footer-content p {
  margin-bottom: 0.5rem;
  font-size: 0.9rem;
}

.footer-content ul {
  list-style: none;
  display: flex;
  justify-content: center;
}

.footer-content ul li {
  margin: 0 1rem;
}

.footer-content ul li a {
  text-decoration: none;
  color: #333;
  font-size: 0.9rem;
  transition: color 0.3s;
}

.footer-content ul li a:hover {
  color: #555;
}

/* Responsive adjustments */
@media (max-width: 1024px) {
  .screenshot-container {
    grid-template-columns: repeat(2, 1fr);
  }
}

@media (max-width: 768px) {
  .screenshot-container {
    grid-template-columns: 1fr;
    max-width: 500px;
  }

  .product-showcase {
    padding: 4rem 1rem;
  }

  .product-showcase h2 {
    font-size: 2rem;
    margin-bottom: 2rem;
  }

  /* Adjust navigation for better mobile visibility */
  nav ul {
    flex-wrap: wrap;
    justify-content: center;
    font-size: 14px; /* Reduce font size to fit */
  }

  nav ul li {
    margin: 5px;
  }

  .header-container {
    flex-direction: column;
    text-align: center;
  }
}