/* styles.css */

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

html {
  scroll-behavior: smooth;
}

body {
  font-family: 'Helvetica Neue', Helvetica, Arial, sans-serif;
  background: #121212;
  color: #e0e0e0;
  line-height: 1.6;
}

/* Header */
.header {
  position: static;
  width: 100%;
  background: rgba(0,0,0,0.7);
  display: flex;
  justify-content: space-between;
  align-items: center;
  padding: 1rem 2rem;
  z-index: 100;
}

.logo {
  height: 50px;
}

.nav a {
  margin-left: 1.5rem;
  text-decoration: none;
  color: #e0e0e0;
  transition: color 0.3s;
}

.nav a:hover {
  color: #E2A423;
}

/* Hero */
.hero {
  /* prevent header overlap */
  padding: 6rem 1rem 0;
  min-height: calc(100vh - 6rem);
  display: flex;
  align-items: center;
  justify-content: center;
  text-align: center;
  background: linear-gradient(135deg, #1f1f1f, #121212);
}

.hero-content h1 {
  font-size: 3rem;
  color: #ffffff;
  margin-bottom: 1rem;
}

.hero-content p {
  max-width: 600px;
  margin: 0 auto 2rem;
  font-size: 1.25rem;
  color: #cccccc;
}

.btn {
  display: inline-block;
  padding: 0.75rem 1.5rem;
  background: #bb86fc;
  color: #121212;
  border: none;
  border-radius: 0.5rem;
  font-size: 1rem;
  cursor: pointer;
  text-decoration: none;
  transition: background 0.3s;
}

.btn:hover {
  background: #9a67ea;
}

.testflight-link {
  display: inline-block;
  margin-top: 1rem;
  margin-bottom: 4rem;
  transition: transform 0.2s;
}

.testflight-link:hover {
  transform: scale(1.05);
}

.testflight-img {
  height: 50px;
  max-width: 100%;
}

/* Features */
.features {
  padding: 6rem 2rem;
  max-width: 1000px;
  margin: 0 auto;
}

.features h2 {
  text-align: center;
  font-size: 2.5rem;
  margin-bottom: 2rem;
  color: #ffffff;
}

/* Feedback */
.feedback {
  padding: 6rem 2rem;
  max-width: 1000px;
  margin: 0 auto;
}

.feedback h2 {
  text-align: center;
  font-size: 2.5rem;
  margin-bottom: 2rem;
  color: #ffffff;
}

.single-feedback {
  display: flex;
  justify-content: center;
}

.feedback-item {
  background: #1f1f1f;
  padding: 3rem;
  border-radius: 0.5rem;
  text-align: center;
  max-width: 700px;
  width: 100%;
}

.feedback-item h3 {
  margin-bottom: 1.5rem;
  color: #ffffff;
  font-size: 1.8rem;
}

.feedback-item p {
  font-size: 1.1rem;
  color: #cccccc;
  margin-bottom: 1rem;
}

.feedback-item p:last-child {
  margin-top: 2rem;
}

.feature-list {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
  gap: 2rem;
}

.feature-item {
  background: #1f1f1f;
  padding: 2rem;
  border-radius: 0.5rem;
  text-align: center;
}

.feature-item h3 {
  margin-bottom: 1rem;
  color: #ffffff;
}

.feature-item p {
  font-size: 1rem;
  color: #cccccc;
}

.email-link {
  color: #bb86fc;
  text-decoration: none;
  transition: color 0.3s;
}

.email-link:hover {
  color: #9a67ea;
}

/* Download */
.download {
  padding: 6rem 2rem;
  background: #171717;
  text-align: center;
}

.download h2 {
  font-size: 2.5rem;
  color: #ffffff;
  margin-bottom: 2rem;
}

.download-buttons {
  display: flex;
  justify-content: center;
  gap: 2rem;
  flex-wrap: wrap;
}

.store-btn {
  background: #03dac6;
  color: #121212;
}
.store-badge img {
  max-height: 40px;
  display: inline-block;
  vertical-align: middle;
}

/* Footer */
footer {
  padding: 2rem;
  text-align: center;
  background: #000000;
  color: #555555;
  font-size: 0.875rem;
}

/* Hero Image */
.hero-image {
  max-width: 90%;
  margin: 2rem auto;
}

.hero-img {
  height: 600px;
  max-width: 100%;
  border-radius: 0.5rem;
  object-fit: contain;
}

/* Responsive */
@media (max-width: 600px) {
  .hero-content h1 {
    font-size: 2.5rem;
  }
  .hero-content p {
    font-size: 1rem;
  }
  .header {
    flex-direction: column;
    padding: 1rem;
  }
  .nav {
    margin-top: 0.5rem;
    width: 100%;
    text-align: center;
  }
  .nav a {
    margin: 0 0.5rem;
    padding: 0.5rem;
    display: inline-block;
    position: relative;
    z-index: 10;
  }
}
