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

body {
  font-family: -apple-system, BlinkMacSystemFont, 'Segoe UI', 'Roboto', 'Oxygen', 'Ubuntu', 'Cantarell', sans-serif;
  background-color: #FFF4E6;
  color: #4A7C9D;
  line-height: 1.6;
}

/* Colors */
:root {
  --cream: #FFF4E6;
  --blue-dark: #2C5470;
  --blue-medium: #4A7C9D;
  --coral: #F4A58A;
  --coral-dark: #D97758;
  --yellow: #F4C95D;
}

/* Navigation */
nav {
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 2rem 3rem;
  max-width: 1200px;
  margin: 0 auto;
}

.logo {
  display: flex;
  align-items: center;
  gap: 0.75rem;
  text-decoration: none;
  transition: opacity 0.3s;
}

.logo:hover {
  opacity: 0.7;
}

.logo-icon {
  width: 88px;
  height: 88px;
  color: var(--blue-medium);
}

.logo-text {
  font-size: 1.25rem;
  font-weight: 600;
  color: var(--blue-dark);
}

.nav-links {
  display: flex;
  gap: 3rem;
}

.nav-links a {
  color: var(--blue-medium);
  text-decoration: none;
  font-weight: 500;
  transition: opacity 0.3s;
}

.nav-links a:hover {
  opacity: 0.7;
}

/* Hero Section */
.hero {
  max-width: 1000px;
  margin: 0 auto;
  padding: 8rem 3rem;
  text-align: center;
}

.hero-icons {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 0.75rem;
  margin-bottom: 2rem;
}

.icon-plane {
  width: 20px;
  height: 20px;
  color: var(--coral);
}

.icon-sparkles {
  width: 20px;
  height: 20px;
  color: var(--yellow);
}

.hero h1 {
  font-size: 3.75rem;
  font-weight: 700;
  color: var(--blue-dark);
  margin-bottom: 2rem;
  line-height: 1.2;
}

.hero p {
  font-size: 1.25rem;
  color: var(--blue-medium);
  margin-bottom: 3rem;
  max-width: 42rem;
  margin-left: auto;
  margin-right: auto;
}

.btn-primary {
  display: inline-flex;
  align-items: center;
  gap: 0.75rem;
  padding: 1rem 2.5rem;
  background-color: var(--coral);
  color: var(--cream);
  border: none;
  border-radius: 0.375rem;
  font-size: 1rem;
  font-weight: 500;
  text-decoration: none;
  cursor: pointer;
  transition: opacity 0.3s;
}

.btn-primary:hover {
  opacity: 0.9;
}

.btn-icon {
  width: 20px;
  height: 20px;
}

/* Products Section */
.products {
  max-width: 1300px;
  margin: 0 auto;
  padding: 6rem 3rem;
}

.products-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
  gap: 4rem;
}

.product-card {
  text-align: left;
}

.product-card.coming-soon {
  opacity: 0.6;
}

.product-icon {
  width: 40px;
  height: 40px;
  margin-bottom: 1.5rem;
}

.product-card h3 {
  font-size: 1.5rem;
  font-weight: 600;
  color: var(--blue-dark);
  margin-bottom: 1rem;
}

.product-card p {
  color: var(--blue-medium);
  margin-bottom: 1.5rem;
  line-height: 1.8;
}

.product-link {
  display: inline-flex;
  align-items: center;
  gap: 0.5rem;
  color: var(--coral-dark);
  font-weight: 500;
  text-decoration: none;
  transition: opacity 0.3s;
}

.product-link:hover {
  opacity: 0.7;
}

.product-status {
  color: var(--blue-medium);
  font-weight: 500;
}

/* About Section */
.about {
  max-width: 800px;
  margin: 0 auto;
  padding: 6rem 3rem;
  text-align: center;
}

.about p {
  font-size: 1.125rem;
  color: var(--blue-medium);
  line-height: 1.8;
}

/* Footer */
footer {
  padding: 3rem 3rem;
  margin-top: 8rem;
  border-top: 1px solid rgba(74, 124, 157, 0.2);
}

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

.footer-logo {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 0.5rem;
  margin-bottom: 1.5rem;
}

.footer-logo-icon {
  width: 40px;
  height: 40px;
  color: var(--blue-medium);
}

.footer-logo-text {
  font-size: 1rem;
  font-weight: 600;
  color: var(--blue-dark);
}

.footer-links {
  display: flex;
  gap: 2rem;
  justify-content: center;
  margin-bottom: 1rem;
}

.footer-links a {
  color: var(--blue-medium);
  text-decoration: none;
  font-size: 0.875rem;
  transition: opacity 0.3s;
}

.footer-links a:hover {
  opacity: 0.7;
}

/* App Page Styles */
.app-page {
  max-width: 1000px;
  margin: 0 auto;
  padding: 4rem 3rem;
}

.app-header {
  text-center;
  margin-bottom: 4rem;
}

.app-icon {
  width: 64px;
  height: 64px;
  margin: 0 auto 1.5rem;
}

.app-header h1 {
  font-size: 3rem;
  font-weight: 700;
  color: var(--blue-dark);
  margin-bottom: 1.5rem;
}

.app-header p {
  font-size: 1.25rem;
  color: var(--blue-medium);
}

.status-badge {
  display: inline-block;
  padding: 0.5rem 1rem;
  border-radius: 9999px;
  font-size: 0.875rem;
  font-weight: 500;
  margin-top: 1rem;
}

.status-coming-soon {
  background-color: var(--yellow);
  color: var(--blue-dark);
}

.status-in-dev {
  background-color: var(--blue-medium);
  color: var(--cream);
}

.app-content {
  margin-top: 3rem;
}

.app-section {
  margin-bottom: 3rem;
}

.app-section h2 {
  font-size: 1.875rem;
  font-weight: 600;
  color: var(--blue-dark);
  margin-bottom: 1rem;
}

.app-section p {
  color: var(--blue-medium);
  line-height: 1.8;
  margin-bottom: 1rem;
}

.app-section ul {
  list-style: none;
  margin-top: 1rem;
}

.app-section ul li {
  color: var(--blue-medium);
  margin-bottom: 1rem;
  line-height: 1.6;
}

/* Privacy Policy Styles */
.privacy-page {
  max-width: 1000px;
  margin: 0 auto;
  padding: 4rem 3rem;
}

.privacy-header {
  margin-bottom: 3rem;
}

.privacy-icon {
  width: 48px;
  height: 48px;
  margin-bottom: 1rem;
}

.privacy-header h1 {
  font-size: 2.5rem;
  font-weight: 700;
  color: var(--blue-dark);
  margin-bottom: 0.5rem;
}

.privacy-header p {
  color: var(--blue-medium);
}

.privacy-content {
  color: var(--blue-medium);
}

.privacy-section {
  margin-bottom: 2rem;
}

.privacy-section h2 {
  font-size: 1.5rem;
  font-weight: 600;
  color: var(--blue-dark);
  margin-bottom: 0.75rem;
}

.privacy-section p {
  line-height: 1.8;
  margin-bottom: 1rem;
}

.privacy-section ul {
  list-style: none;
  margin-top: 1rem;
  margin-left: 1.5rem;
}

.privacy-section ul li {
  margin-bottom: 0.5rem;
}

/* Contact Page Styles */
.contact-page {
  max-width: 1000px;
  margin: 0 auto;
  padding: 4rem 3rem;
}

.contact-header {
  text-center;
  margin-bottom: 3rem;
}

.contact-icon {
  width: 64px;
  height: 64px;
  margin: 0 auto 1.5rem;
  color: var(--coral);
}

.contact-header h1 {
  font-size: 3rem;
  font-weight: 700;
  color: var(--blue-dark);
  margin-bottom: 1.5rem;
}

.contact-header p {
  font-size: 1.25rem;
  color: var(--blue-medium);
}

.contact-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
  gap: 3rem;
  margin-bottom: 3rem;
}

.contact-info {
  display: flex;
  flex-direction: column;
  gap: 1.5rem;
}

.contact-item {
  display: flex;
  align-items: flex-start;
  gap: 1rem;
}

.contact-item-icon {
  width: 24px;
  height: 24px;
  color: var(--blue-medium);
  margin-top: 0.25rem;
}

.contact-item h3 {
  font-weight: 600;
  color: var(--blue-dark);
  margin-bottom: 0.25rem;
}

.contact-item p {
  color: var(--blue-medium);
}

.contact-form {
  display: flex;
  flex-direction: column;
  gap: 1rem;
}

.form-group {
  display: flex;
  flex-direction: column;
}

.form-group label {
  font-weight: 500;
  color: var(--blue-dark);
  margin-bottom: 0.5rem;
}

.form-group input,
.form-group textarea {
  padding: 0.75rem 1rem;
  border: 1px solid var(--blue-medium);
  border-radius: 0.375rem;
  font-family: inherit;
  color: var(--blue-dark);
  background-color: var(--cream);
}

.form-group input:focus,
.form-group textarea:focus {
  outline: none;
  border-color: var(--coral);
}

.form-group textarea {
  resize: vertical;
  min-height: 120px;
}

.btn-submit {
  width: 100%;
  padding: 0.75rem 1.5rem;
  background-color: var(--coral);
  color: var(--cream);
  border: none;
  border-radius: 0.375rem;
  font-size: 1rem;
  font-weight: 500;
  cursor: pointer;
  transition: opacity 0.3s;
}

.btn-submit:hover {
  opacity: 0.9;
}

.form-success {
  text-align: center;
  color: var(--yellow);
  font-weight: 500;
  margin-top: 1rem;
}

/* Responsive Design */
@media (max-width: 768px) {
  nav {
    flex-direction: column;
    gap: 1.5rem;
    padding: 1.5rem;
  }

  .nav-links {
    gap: 1.5rem;
  }

  .hero {
    padding: 4rem 1.5rem;
  }

  .hero h1 {
    font-size: 2.5rem;
  }

  .products,
  .about,
  .app-page,
  .privacy-page,
  .contact-page {
    padding: 3rem 1.5rem;
  }

  .products-grid {
    grid-template-columns: 1fr;
    gap: 3rem;
  }

  .contact-grid {
    grid-template-columns: 1fr;
  }
}
