* {
  margin: 0;
  padding: 0;
  box-sizing: border-box;
  font-family: "Segoe UI", Tahoma, Geneva, Verdana, sans-serif;
}

body {
  background: linear-gradient(135deg, #f5f7fa 0%, #e4efe9 100%);
  color: #c57d20;
  line-height: 1.6;
}

header {
  background-color: white;
  box-shadow: 0 2px 15px rgba(0, 0, 0, 0.1);
  padding: 20px 5%;
  position: sticky;
  top: 0;
  z-index: 100;
  display: flex;
  justify-content: space-between;
  align-items: center;
}

.logo {
  display: flex;
  align-items: center;
  gap: 10px;
}

.logo-icon {
  font-size: 24px;
  color: #fac824;
}

.logo-text {
  font-size: 24px;
  font-weight: 700;
  color: #c57d20;
}

nav ul {
  display: flex;
  list-style: none;
  gap: 30px;
}

nav a {
  text-decoration: none;
  color: #c57d20;
  font-weight: 500;
  transition: color 0.3s;
}

nav a:hover {
  color: #fac824;
}

.hero {
  display: flex;
  flex-direction: column;
  align-items: center;
  text-align: center;
  padding: 80px 5%;
  background: linear-gradient(
      rgba(255, 255, 255, 0.9),
      rgba(255, 255, 255, 0.7)
    ),
    url('data:image/svg+xml;utf8,<svg xmlns="http://www.w3.org/2000/svg" width="100" height="100" viewBox="0 0 100 100"><rect width="100" height="100" fill="%23f8f9fa"/><path d="M0 50 L100 50 M50 0 L50 100" stroke="%23e9ecef" stroke-width="2"/></svg>');
  background-size: 30px;
}

.hero h1 {
  font-size: 3.5rem;
  margin-bottom: 20px;
  color: #c57d20;
}

.hero p {
  font-size: 1.5rem;
  max-width: 800px;
  margin-bottom: 40px;
  color: #725221;
}

.cta-button {
  background-color: #fac824;
  color: white;
  padding: 15px 40px;
  border-radius: 50px;
  text-decoration: none;
  font-weight: 600;
  font-size: 1.2rem;
  transition: all 0.3s;
  box-shadow: 0 4px 15px rgba(207, 177, 79, 0.3);
}

.cta-button:hover {
  background-color: #c57d20;
  transform: translateY(-3px);
  box-shadow: 0 6px 20px rgba(207, 177, 79, 0.3);
}

.features {
  padding: 100px 5%;
  background-color: white;
}

.section-title {
  text-align: center;
  font-size: 2.5rem;
  margin-bottom: 60px;
  color: #c57d20;
}

.features-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
  gap: 40px;
  max-width: 1200px;
  margin: 0 auto;
}

.feature-card {
  background: linear-gradient(145deg, #f5f7fa, #eed9cb);
  border-radius: 15px;
  padding: 30px;
  text-align: center;
  box-shadow: 0 5px 15px rgba(0, 0, 0, 0.05);
  transition: transform 0.3s;
}

.feature-card:hover {
  transform: translateY(-10px);
}

.feature-icon {
  font-size: 50px;
  color: #fac824;
  margin-bottom: 20px;
}

.feature-title {
  font-size: 1.5rem;
  margin-bottom: 15px;
  color: #c57d20;
}

.feature-desc {
  color: #725221;
}

.app-showcase {
  padding: 100px 5%;
  background: linear-gradient(to bottom, #ffffff 0%, #fadac1 100%);
  display: flex;
  flex-direction: column;
  align-items: center;
}

.app-screens {
  display: flex;
  justify-content: center;
  gap: 30px;
  flex-wrap: wrap;
  margin-top: 50px;
}

.screen {
  width: 380px;
  height: 800px;
  background: white;
  border-radius: 40px;
  padding: 10px;
  box-shadow: 0 10px 30px rgba(0, 0, 0, 0.1);
  overflow: hidden;
  position: relative;
}

.screen-content {
  width: 100%;
  height: 100%;
  background: linear-gradient(135deg, #e4efe9 0%, #f5f7fa 100%);
  border-radius: 30px;
  overflow: hidden;
  display: flex;
  flex-direction: column;
  align-items: center;
}

.screen-content img{
    width: 100%;
}

.screen-header {
  width: 100%;
  height: 50px;
  background-color: #fac824;
  border-radius: 20px 20px 0 0;
  margin-bottom: 20px;
}

.screen-dots {
  display: flex;
  gap: 5px;
  margin-top: 15px;
}

.dot {
  width: 8px;
  height: 8px;
  background-color: white;
  border-radius: 50%;
}

.yoga-pose {
  font-size: 80px;
  margin: 20px 0;
}

.community {
  padding: 100px 5%;
  background-color: white;
  text-align: center;
}

.testimonials {
  display: flex;
  gap: 30px;
  flex-wrap: wrap;
  justify-content: center;
  margin-top: 50px;
}

.testimonial {
  background: linear-gradient(145deg, #f5f7fa, #e4efe9);
  border-radius: 15px;
  padding: 30px;
  max-width: 350px;
  box-shadow: 0 5px 15px rgba(0, 0, 0, 0.05);
}

.testimonial-text {
  font-style: italic;
  margin-bottom: 20px;
  color: #725221;
}

.testimonial-author {
  font-weight: 600;
  color: #c57d20;
}

.download {
  padding: 100px 5%;
  background: linear-gradient(135deg, #fac824 0%, #c57d20 100%);
  color: white;
  text-align: center;
}

.download h2 {
  color: white;
  margin-bottom: 30px;
}

.download p {
  max-width: 700px;
  margin: 0 auto 40px;
  font-size: 1.2rem;
}

.app-badges {
  display: flex;
  justify-content: center;
  gap: 20px;
  margin-top: 30px;
}

.badge {
  background-color: white;
  color: #c57d20;
  padding: 15px 30px;
  border-radius: 10px;
  font-weight: 600;
  display: flex;
  align-items: center;
  gap: 10px;
  text-decoration: none;
  transition: transform 0.3s;
}

.badge:hover {
  transform: scale(1.05);
}

footer {
  background-color: #000;
  color: white;
  padding: 50px 5% 30px;
  text-align: center;
}

.footer-content {
  max-width: 1200px;
  margin: 0 auto;
  display: flex;
  flex-direction: column;
  align-items: center;
}

.footer-logo {
  font-size: 2rem;
  font-weight: 700;
  margin-bottom: 20px;
}

.contact-email {
  margin: 20px 0;
  font-size: 1.1rem;
}

.social-icons {
  display: flex;
  gap: 20px;
  margin: 30px 0;
}

.social-icons a {
  color: white;
  font-size: 1.5rem;
  transition: color 0.3s;
}

.social-icons a:hover {
  color: #fac824;
}

.copyright {
  margin-top: 30px;
  padding-top: 20px;
  border-top: 1px solid rgba(255, 255, 255, 0.1);
  width: 100%;
  color: rgba(255, 255, 255, 0.7);
}

@media (max-width: 768px) {
  nav ul {
    gap: 15px;
  }

  .hero h1 {
    font-size: 2.5rem;
  }

  .hero p {
    font-size: 1.2rem;
  }

  .app-badges {
    flex-direction: column;
    align-items: center;
  }
}
