

@import url("https://fonts.googleapis.com/css2?family=Poppins:ital,wght@0,100;0,200;0,300;0,400;0,500;0,600;0,700;0,800;0,900;1,100;1,200;1,300;1,400;1,500;1,600;1,700;1,800;1,900&display=swap");

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

:root {
  --primary-color: #a7c4a0;
  --secondary-color: #4e008e;
}

body {
  font-family: "Poppins", sans-serif;
  line-height: 1.6;
  color: #333;
}

/* Navigation Styles */
.navbar {
  position: fixed;
  top: 0;
  left: 0;
  right: 0;
  z-index: 1000;
  padding: 1rem 0;
  background: rgba(255, 255, 255, 0.95);
  backdrop-filter: blur(10px);
}

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

.nav-logo {
  flex: 0 0 auto;
}

.nav-logo h1 {
  color: var(--secondary-color);
  font-size: 2.4rem;
  font-weight: 700;
  font-family: "Poppins", sans-serif;
}

.nav-menu {
  display: flex;
  list-style: none;
  gap: 2rem;
  margin: 0;
  padding: 0;
}

.nav-item {
  margin: 0;
}

.nav-link {
  color: #333;
  text-decoration: none;
  font-weight: 500;
  font-size: 1rem;
  transition: color 0.3s ease;
}

.nav-link:hover {
  color: var(--primary-color);
}

.nav-link.active {
  color: var(--secondary-color);
  font-weight: 600;
}

.hamburger {
  display: none;
  flex-direction: column;
  cursor: pointer;
  gap: 4px;
}

.hamburger span {
  width: 25px;
  height: 2px;
  background-color: var(--secondary-color);
  transition: all 0.3s ease;
  border-radius: 2px;
}

.hamburger.active span:nth-child(1) {
  transform: rotate(45deg) translate(8px, 8px);
}

.hamburger.active span:nth-child(2) {
  opacity: 0;
}

.hamburger.active span:nth-child(3) {
  transform: rotate(-45deg) translate(7px, -6px);
}

.cta-button {
  text-decoration: none;
  padding: 0;
  border-radius: 6px;
  font-weight: 500;
  font-size: 0.9rem;
  font-family: "Poppins", sans-serif;
  transition: all 0.2s ease;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-width: 150px;
  border: 1px solid transparent;
  gap: 0.5rem;
}

.cta-button img {
  height: 50px;
  width: auto;
  border-radius: 6px;
}

.google-play:hover {
  transform: translateY(-1px);
}

.app-store:hover {
  transform: translateY(-1px);
}

/* Hero Section */
.hero-section {
  display: flex;
  align-items: flex-start;
  justify-content: center;
  padding: 6rem 2rem 2rem;
  margin-top: 4rem;
}
.about-app-section {
  margin-top: 1rem;
  display: flex;
  align-items: flex-start;
  justify-content: center;
  padding: 3rem 2rem 2rem;
}

.hero-container {
  text-align: center;
  max-width: 800px;
  margin: 0 auto;
}

.hero-text {
  font-size: 3rem;
  font-weight: 700;
  color: #2c3e50;
  margin-bottom: 1.5rem;
  line-height: 1.2;
}

.animated-subject {
  color: var(--primary-color);
  position: relative;
  display: inline;
}

.animated-subject.fade-out {
  opacity: 0;
  transform: translateY(-10px);
  transition: all 0.3s ease-out;
}

.animated-subject.fade-in {
  opacity: 1;
  transform: translateY(0);
  transition: all 0.3s ease-in;
}

.hero-subtitle {
  font-size: 1rem;
  color: #6c757d;
  font-weight: 500;
  margin-bottom: 2rem;
}

.hero-description {
  font-size: 0.9rem;
  color: #5a6c7d;
  font-weight: 300;
  line-height: 1.7;
  max-width: 600px;
  margin: 0 auto;
  margin-bottom: 2rem;
}

@media (min-width: 1400px) {
  .hero-description {
    font-size: 1.1rem;
  }
  .hero-text {
    font-size: 3.5rem;
  }
  .hero-subtitle {
    font-size: 1.3rem;
  }
}

.hero-cta-buttons {
  display: flex;
  gap: 1rem;
  justify-content: center;
  align-items: center;
  flex-wrap: wrap;
}

/* About App Page Styles */
.about-features {
  margin-top: 4rem;
  width: 100%;
}

.feature-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
  gap: 2rem;
  max-width: 900px;
  margin: 0 auto;
}

.feature-card {
  background: white;
  padding: 2rem;
  border-radius: 12px;
  text-align: center;
  box-shadow: 0 4px 6px rgba(0, 0, 0, 0.05);
  border: 1px solid rgba(167, 196, 160, 0.2);
  transition: transform 0.3s ease, box-shadow 0.3s ease;
}

.feature-card:hover {
  transform: translateY(-5px);
  box-shadow: 0 8px 25px rgba(0, 0, 0, 0.1);
}

.feature-icon {
  width: 80px;
  height: 80px;
  background: linear-gradient(
    135deg,
    var(--primary-color),
    var(--secondary-color)
  );
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  margin: 0 auto 1.5rem;
}

.feature-icon i {
  font-size: 2rem;
  color: white;
}

.feature-card h3 {
  font-size: 1.4rem;
  font-weight: 600;
  color: var(--secondary-color);
  margin-bottom: 1rem;
}

.feature-card p {
  font-size: 1rem;
  color: #5a6c7d;
  line-height: 1.6;
}

/* Single Page App Styles */
.app-container {
  position: relative;
  width: 100%;
  min-height: 100vh;
}

.page {
  display: none;
  width: 100%;
  min-height: 100vh;
  opacity: 0;
  transition: opacity 0.3s ease-in-out;
}

.page.active {
  display: block;
  opacity: 1;
}

/* Responsive Design */
@media (max-width: 768px) {
  .nav-container {
    padding: 0 1rem;
    justify-content: space-between;
  }

  .navbar {
    padding: 1rem 0;
  }

  .nav-logo h1 {
    font-size: 2rem;
  }

  .hamburger {
    display: flex;
  }

  .nav-menu {
    position: fixed;
    top: 80px;
    left: -100%;
    width: 100%;
    background: rgba(255, 255, 255, 0.98);
    backdrop-filter: blur(10px);
    flex-direction: column;
    text-align: center;
    transition: left 0.3s ease;
    padding: 2rem 0;
    box-shadow: 0 4px 6px rgba(0, 0, 0, 0.1);
  }

  .nav-menu.active {
    left: 0;
  }

  .nav-item {
    margin: 1rem 0;
  }

  .nav-link {
    font-size: 1.2rem;
    display: block;
    padding: 0.5rem;
  }

  .cta-button {
    width: 100%;
    max-width: 250px;
    padding: 0;
  }

  .cta-button img {
    height: 40px;
  }

  .hero-text {
    font-size: 3rem;
  }

  .hero-subtitle {
    font-size: 1.1rem;
  }

  .hero-description {
    font-size: 1rem;
    max-width: 100%;
    padding: 0 1rem;
  }

  .hero-cta-buttons {
    flex-direction: row;
    gap: 0.5rem;
    width: 100%;
    max-width: 320px;
    margin: 0 auto;
  }

  .hero-cta-buttons .cta-button {
    width: auto;
    flex: 1;
  }

  .feature-grid {
    grid-template-columns: 1fr;
    gap: 1.5rem;
    padding: 0 1rem;
  }

  .feature-card {
    padding: 1.5rem;
  }

  .feature-icon {
    width: 60px;
    height: 60px;
  }

  .feature-icon i {
    font-size: 1.5rem;
  }
}

@media (max-width: 480px) {
  .nav-container {
    padding: 0 0.8rem;
  }

  .nav-logo h1 {
    font-size: 1.8rem;
  }

  .nav-menu {
    top: 70px;
  }

  .cta-button {
    font-size: 0.85rem;
    min-width: 180px;
  }

  .cta-button img {
    height: 40px;
  }

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

  .hero-subtitle {
    font-size: 1rem;
  }

  .hero-description {
    font-size: 0.9rem;
    max-width: 100%;
    padding: 0 0.5rem;
  }

  .hero-section {
    padding: 4rem 1rem 1rem;
  }

  .hero-cta-buttons {
    flex-direction: row;
    gap: 0.5rem;
    width: 100%;
    max-width: 300px;
    margin: 0 auto;
  }

  .hero-cta-buttons .cta-button {
    width: auto;
    flex: 1;
  }

  .feature-grid {
    gap: 1rem;
    padding: 0 0.5rem;
  }

  .feature-card {
    padding: 1rem;
  }

  .feature-icon {
    width: 50px;
    height: 50px;
  }

  .feature-icon i {
    font-size: 1.2rem;
  }

  .feature-card h3 {
    font-size: 1.1rem;
  }

  .feature-card p {
    font-size: 0.85rem;
  }
}

/* Add body top margin to account for fixed navbar */
body {
  margin-top: 80px;
}

@media (max-width: 768px) {
  body {
    margin-top: 90px;
  }
}

.about-page-cta {
  margin-top: 3rem;
  margin-bottom: 3rem;
}

/* Footer styles */
.footer {
  width: 100%;
  position: fixed;
  left: 0;
  bottom: 0;
  background: #fff;
  padding: 0.7rem 0;
  display: flex;
  justify-content: center;
  align-items: center;
  z-index: 100;
}

.footer-content {
  width: 100%;
  max-width: 900px;
  display: flex;
  justify-content: space-between;
  align-items: center;
  font-size: 1rem;
  color: #222;
  padding: 0 1.5rem;
}

.footer-brand {
  font-weight: 500;
  letter-spacing: 0.5px;
}

.footer-socials {
  display: flex;
  gap: 1.1rem;
}

.footer-icon {
  color: #222;
  font-size: 1.25rem;
  transition: color 0.2s;
  opacity: 0.8;
}
.footer-icon:hover {
  opacity: 1;
}

/* Instagram gradient hover */
.footer-icon[aria-label="Instagram"]:hover i {
  background: radial-gradient(circle at 30% 110%, #fdf497 0%, #fdf497 5%, #fd5949 45%, #d6249f 60%, #285AEB 90%);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
}

/* LinkedIn blue hover */
.footer-icon[aria-label="LinkedIn"]:hover i {
  color: #0077b5;
  background: none;
  -webkit-text-fill-color: initial;
}
/* Reset and base styles */