@font-face {
  font-family: 'Open Sauce One';
  src: url('./OpenSauceOne-Regular.ttf') format('truetype');
  font-weight: normal;
  font-style: normal;
}

* {
  scroll-behavior: smooth;
}

body {
  margin: 0;
  font-family: 'Open Sauce One', sans-serif;
  background-color: #c3e4b4;
  color: #000;
}

/* Navigation */
.nav-bar {
  position: fixed;
  top: 0;
  left: 0;
  right: 0;
  background: rgba(195, 228, 180, 0.95);
  backdrop-filter: blur(10px);
  padding: 15px 20px;
  z-index: 1000;
  display: flex;
  justify-content: space-between;
  align-items: center;
  box-shadow: 0 2px 10px rgba(0,0,0,0.1);
}

.nav-links {
  display: flex;
  gap: 30px;
  align-items: center;
}

.nav-links a {
  text-decoration: none;
  color: #000;
  font-weight: 500;
  transition: color 0.3s;
}

.nav-links a:hover {
  color: orange;
}

.language-switcher {
  display: flex;
  gap: 10px;
}

.language-switcher button {
  background: transparent;
  border: none;
  font-family: 'Open Sauce One', sans-serif;
  font-size: 14px;
  cursor: pointer;
  color: #000;
  padding: 5px 10px;
  border-radius: 5px;
  transition: background 0.3s;
}

.language-switcher button:hover {
  background: rgba(255, 165, 0, 0.2);
}

.language-switcher button.active {
  font-weight: bold;
  background: orange;
  color: white;
}

/* Hero Section */
.hero {
  padding: 120px 20px 60px;
  text-align: left;
  display: flex;
  flex-wrap: wrap;
  align-items: flex-start;
  justify-content: space-between;
  max-width: 1200px;
  margin: auto;
  min-height: 80vh;
}

.text-content {
  flex: 1 1 45%;
  max-width: 500px;
}

.brand {
  font-size: 50px;
  font-weight: bold;
  color: #000;
  margin-bottom: 20px;
  position: relative;
  top: 0;
}

.logo-icon {
  width: 500px;
  height: auto;
}

.headline {
  font-size: 50px;
  margin: 20px 0 10px 0;
  font-weight: bold;
  line-height: 1.2;
}

.subheadline {
  font-size: 20px;
  margin-bottom: 30px;
  color: #222;
  line-height: 1.4;
}

.appstore-badge img {
  width: 160px;
  transition: transform 0.3s;
}

.appstore-badge img:hover {
  transform: scale(1.05);
}

.phones {
  flex: 1 1 45%;
  display: flex;
  justify-content: center;
  gap: 30px;
}

.phones img {
  width: 180px;
  height: auto;
  border-radius: 20px;
  box-shadow: 0 10px 30px rgba(0,0,0,0.0);
  transition: transform 0.3s;
}

.phones img:hover {
  transform: translateY(-10px);
}

/* Products Section */
.products-section {
  background: white;
  padding: 80px 20px;
}

.section-container {
  max-width: 1200px;
  margin: auto;
}

.section-title {
  font-size: 48px;
  font-weight: bold;
  text-align: center;
  margin-bottom: 20px;
  color: #000;
}

.section-subtitle {
  font-size: 20px;
  text-align: center;
  margin-bottom: 60px;
  color: #666;
}

.features-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
  gap: 40px;
  margin-bottom: 80px;
}

.feature-card {
  background: #f8f9fa;
  padding: 40px 30px;
  border-radius: 20px;
  text-align: center;
  transition: transform 0.3s, box-shadow 0.3s;
}

.feature-card:hover {
  transform: translateY(-5px);
  box-shadow: 0 15px 40px rgba(0,0,0,0.1);
}

.feature-icon {
  font-size: 48px;
  margin-bottom: 20px;
}

.feature-title {
  font-size: 24px;
  font-weight: bold;
  margin-bottom: 15px;
  color: #000;
}

.feature-description {
  font-size: 16px;
  color: #666;
  line-height: 1.5;
}

/* About Section */
.about-section {
  background: #c3e4b4;
  padding: 80px 20px;
}

.about-content {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(400px, 1fr));
  gap: 60px;
  align-items: center;
}

.about-text {
  font-size: 18px;
  line-height: 1.6;
  color: #333;
}

.about-text p {
  margin-bottom: 20px;
}

.team-info {
  background: white;
  padding: 40px;
  border-radius: 20px;
  box-shadow: 0 10px 30px rgba(0,0,0,0.1);
}

.team-title {
  font-size: 28px;
  font-weight: bold;
  margin-bottom: 20px;
  color: #000;
}

/* Contact Section */
.contact-section {
  background: white;
  padding: 80px 20px;
  text-align: center;
}

.contact-content {
  max-width: 600px;
  margin: auto;
}

.contact-email {
  font-size: 32px;
  font-weight: bold;
  color: orange;
  text-decoration: none;
  display: inline-block;
  margin: 30px 0;
  padding: 20px 40px;
  border: 3px solid orange;
  border-radius: 50px;
  transition: all 0.3s;
}

.contact-email:hover {
  background: orange;
  color: white;
  transform: scale(1.05);
}

.social-links {
  display: flex;
  justify-content: center;
  gap: 20px;
  margin-top: 40px;
}

.social-link {
  width: 50px;
  height: 50px;
  background: #f0f0f0;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  text-decoration: none;
  color: #333;
  font-size: 20px;
  transition: all 0.3s;
}

.social-link:hover {
  background: orange;
  color: white;
  transform: translateY(-3px);
}

/* Footer */
.footer {
  background-color: #2c3e50;
  text-align: center;
  font-size: 16px;
  padding: 40px 20px;
  color: white;
}

.footer-content {
  max-width: 1200px;
  margin: auto;
}

.footer-links {
  display: flex;
  justify-content: center;
  gap: 30px;
  margin-bottom: 20px;
  flex-wrap: wrap;
}

.footer-links a {
  color: #bdc3c7;
  text-decoration: none;
  transition: color 0.3s;
}

.footer-links a:hover {
  color: orange;
}

/* Responsive */
@media (max-width: 768px) {
  .brand {
    font-size: 60px;
  }

  .headline {
    font-size: 32px;
  }

  .phones {
    flex-direction: column;
    align-items: center;
  }

  .phones img {
    width: 150px;
  }

  .nav-links {
    display: none;
  }

  .hero {
    flex-direction: column;
    text-align: center;
    gap: 40px;
  }

  .about-content {
    grid-template-columns: 1fr;
  }

  .contact-email {
    font-size: 24px;
    padding: 15px 30px;
  }
}

.hidden {
  display: none;
}
