
:root {
  --header-padding: 3px 0;
  --logo-height: 0px;
  --hero-padding: .25rem 1rem 1rem;
  --hero-img-max-width: 240px;
  --body-padding-top: 0px;
}

/* Global */
* {
  margin: 0;
  padding: 0;
  box-sizing: border-box;
}

.hero-banner img {
  width: 100%;
  max-height: 100%;
  object-fit: cover;
  display: block;
  margin: 3.5rem 0rem;
}

body {
  font-family: 'Inter', 'Roboto', sans-serif;
  background: #FFF7E8;
  color: #333;
  line-height: 1.6;
  padding-top: var(--body-padding-top);
}

.intro {
  text-align: center;
}

.container p {
  text-align: left;
}

.container {
  max-width: 900px;
  margin: 0 auto;
  padding: 1rem;
}

/* Header & Nav */
header {
  background: #FFF7E8;
  border-bottom: 2px solid #ddd;
  position: fixed;
  top: 0;
  left: 0;
  width: 100%;
  z-index: 1000;
  padding: var(--header-padding);
}

.nav-wrapper {
  display: flex;
  align-items: center;
  justify-content: space-between;
}

.logo {
  height: var(--logo-height);
}

nav a {
  margin-left: 1.5rem;
  text-decoration: none;
  color: #333;
  font-weight: 500;
}

nav a.active,
nav a:hover {
  color: #2A7C5C;
}

/* Hero */
.hero {
  background: #FFF7E8;
  padding: var(--hero-padding);
  text-align: center;
}

.hero img {
  max-width: var(--hero-img-max-width);
  height: auto;
  margin-bottom: 1rem;
}

.hero h1 {
  font-size: 2rem;
  margin-bottom: 1rem;
  color: #E35E44;
}

.hero p {
  font-size: 1.2rem;
  max-width: 650px;
  margin: 0 auto;
}

/* Mission */
.mission ul {
  margin-top: 1rem;
  list-style-type: square;
  padding-left: 1.5rem;
  color: #2A7C5C;
}

/* App Section */
.apps h1 {
  text-align: center;
  margin-bottom: 2rem;
}

.app {
  display: flex;
  flex-wrap: wrap;
  gap: 2rem;
  background: #fff;
  padding: 1.5rem;
  border-radius: 8px;
  box-shadow: 0 2px 6px rgba(0, 0, 0, 0.1);
}

.app img {
  max-width: auto;
  height: 200px;
  border-radius: 4px;
}

.app div {
  flex: 1;
}

.play-badge {
  margin-top: 1rem;
  max-height: 60px;
}

/* Contact */
.contact h1 {
  margin-bottom: 1rem;
}

/* Footer */
footer {
  background: #fff;
  text-align: center;
  padding: 1rem;
  margin-top: 3rem;
  font-size: 0.9rem;
}

/* Mobile */
@media(max-width: 600px) {
  .app {
    flex-direction: column;
    align-items: center;
    text-align: center;
  }

  nav {
    display: none;
  }
}

/* Mobile Responsive Enhancements */
@media screen and (max-width: 768px) {
  body {
    font-size: 1rem;
    padding-top: 120px;
  }

  header {
    flex-direction: column;
    align-items: center;
    text-align: center;
    padding-bottom: 0.25rem;
  }

  .nav-wrapper {
    flex-direction: column;
    gap: 0.5rem;
  }

  nav {
    display: flex;
    flex-wrap: wrap;
    justify-content: center;
    gap: 1rem;
    margin-top: 0.5rem;
  }

  .header-banner {
    max-height: 80px;
    margin-bottom: 0.25rem;
  }

  .hero {
    padding: var(--hero-padding);
    text-align: center;
  }

  .hero img {
    max-width: 180px;
  }

  .apps .app,
  .mission ul {
    text-align: center;
  }

  .app {
    flex-direction: column;
    align-items: center;
  }

  .app img {
    max-width: 80%;
  }

  iframe {
    height: 1500px !important;
  }

  .container {
    padding: 0 1rem;
  }
}
