/*
  Global styles for YourAppName website.
  Designed to be minimal and fully responsive, closely following the
  aesthetic of fondlyapp.com. Dark background with light text,
  centralized hero section, and simple navigation.
*/

/* Reset some default browser styles */
* {
  margin: 0;
  padding: 0;
  box-sizing: border-box;
}

body {
  font-family: Arial, Helvetica, sans-serif;
  background-color: #0d0d0d; /* nearly black */
  color: #f5f5f5;
  line-height: 1.6;
  min-height: 100vh;
  display: flex;
  flex-direction: column;
}

header {
  display: flex;
  justify-content: space-between;
  align-items: center;
  padding: 1rem 2rem;
}

/* Logo styling */
.logo {
  font-size: 2rem;
  font-weight: bold;
  color: #ffffff;
  text-decoration: none;
}

/* Navigation styling */
nav ul {
  list-style: none;
  display: flex;
  gap: 1rem;
}

nav a {
  color: #ffffff;
  text-decoration: none;
  font-size: 1rem;
  opacity: 0.8;
  transition: opacity 0.3s ease;
}

nav a:hover {
  opacity: 1;
}

/* Hero section styles */
.hero {
  flex: 1;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  text-align: center;
  padding: 2rem;
}

.hero .app-name {
  font-size: 3.5rem;
  margin-bottom: 0.5rem;
}

.hero .tagline {
  font-size: 1.3rem;
  margin-bottom: 2rem;
  color: #cccccc;
  max-width: 600px;
}

.badges {
  display: flex;
  gap: 1rem;
  flex-wrap: wrap;
  justify-content: center;
}

.badges img {
  height: 60px;
  width: auto;
  display: block;
}

/* Content pages (Terms/Privacy) */
.content {
  max-width: 800px;
  margin: 2rem auto;
  padding: 0 1rem 4rem;
  text-align: left;
}

.content h1 {
  margin-bottom: 1rem;
  text-align: center;
  font-size: 2rem;
}

.content h2 {
  margin-top: 1.5rem;
  margin-bottom: 0.5rem;
  font-size: 1.3rem;
}

.content p {
  margin-bottom: 1rem;
  color: #e0e0e0;
}

.updated {
  font-size: 0.9rem;
  color: #888888;
  margin-bottom: 1.5rem;
  text-align: center;
}

footer {
  text-align: center;
  padding: 1rem 0;
  font-size: 0.8rem;
  color: #888888;
}

footer nav a {
  color: #888888;
  text-decoration: none;
  margin: 0 0.25rem;
  opacity: 0.8;
}

footer nav a:hover {
  opacity: 1;
}

/* Responsive adjustments */
@media (max-width: 600px) {
  .hero .app-name {
    font-size: 2.5rem;
  }
  .hero .tagline {
    font-size: 1.1rem;
  }
  .badges img {
    height: 50px;
  }
  header {
    flex-direction: column;
    gap: 0.5rem;
  }
  nav ul {
    gap: 0.5rem;
  }
}