/* General Reset */
* {
  margin: 0;
  padding: 0;
  box-sizing: border-box;
  font-family: 'Inter', sans-serif;
}

body {
  background: #fefbf6;
  color: #333;
  line-height: 1.6;
}

/* Hero Section */
.hero {
  text-align: center;
  padding: 4rem 1rem;
  background: linear-gradient(135deg, #fddc8d, #f9a826);
  color: #222;
}

.logo {
  width: 20%;
  height: 20%;
  border-radius: 24px;
}

.hero h1 {
  font-size: 3rem;
  font-weight: 800;
}

.tagline {
  font-size: 1.25rem;
  margin: 0.5rem 0 2rem;
  color: #444;
}

.cta-btn {
  display: inline-block;
  color: #fff;
  border-radius: 8px;
  text-decoration: none;
  font-weight: 600;
  margin-left: 0.5rem;
  margin-right: 0.5rem;
  transition: transform 0.2s ease;
}

.cta-btn:hover {
  transform: scale(1.15);
}

/* Features */
.features {
  max-width: 900px;
  margin: 3rem auto;
  padding: 0 1rem;
  text-align: center;
}

.features h2 {
  font-size: 2rem;
  margin-bottom: 1.5rem;
  color: #222;
}

.features ul {
  list-style: none;
  text-align: left;
  margin: 0 auto;
  max-width: 700px;
}

.features li {
  background: #fff7eb;
  margin-bottom: 1rem;
  padding: 1rem;
  border-radius: 10px;
  box-shadow: 0 2px 6px rgba(0,0,0,0.05);
}

/* Screenshots */
.screenshots {
  padding: 3rem 1rem;
  background: #fefcf8;
  text-align: center;
}

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

.screenshot-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(200px, 1fr));
  gap: 1.5rem;
  max-width: 1000px;
  margin: 0 auto;
}

.screenshot-grid img {
  width: 100%;
  border-radius: 16px;
  box-shadow: 0 4px 12px rgba(0,0,0,0.1);
  transition: transform 0.2s ease;
}

.screenshot-grid img:hover {
  transform: translateY(-4px);
}

/* Footer */
footer {
  text-align: center;
  padding: 2rem 1rem;
  font-size: 0.9rem;
  background: #f9f3e9;
}

footer a {
  color: #f9a826;
  text-decoration: none;
}

footer a:hover {
  text-decoration: underline;
}