/* General Styling */
body {
  font-family: 'Poppins', sans-serif;
  color: #333;
  margin: 0;
  padding: 0;
  background-color: #f9f9f9;
  overflow-x: hidden;
}

h1, h2, h3, h4, h5, h6 {
  font-weight: 600;
  color: #222;
}

p {
  color: #555;
  line-height: 1.6;
  font-size: 1rem;
}

a {
  text-decoration: none;
  color: #28a745;
  transition: all 0.3s ease;
}

a:hover {
  color: #218838;
}

.section-header {
  margin-bottom: 2.5rem;
}

.section-header h2 {
  font-size: 2.2rem;
  font-weight: 700;
  color: #28a745;
  margin-bottom: 1rem;
}

.section-divider {
  height: 4px;
  width: 60px;
  background-color: #28a745;
  margin-bottom: 1rem;
}

.section-subtext {
  color: #666;
  font-size: 1.1rem;
  max-width: 700px;
  margin: 0 auto;
}

/* Navbar */
.navbar {
  padding: 1rem 0;
  background-color: transparent;
  transition: all 0.3s ease;
  z-index: 1000;
}

.navbar-scrolled {
  background-color: #fff;
  box-shadow: 0 2px 10px rgba(0, 0, 0, 0.1);
}

.navbar-scrolled .nav-link,
.navbar-scrolled .navbar-brand span {
  color: #333;
}

.navbar-brand {
  color: #fff;
  font-weight: 600;
  font-size: 1.5rem;
}

.navbar-brand span {
  color: #fff;
  transition: all 0.3s ease;
}

.nav-logo {
  width: 40px;
  height: auto;
}

.navbar-toggler {
  border: none;
  color: #fff;
  font-size: 1.5rem;
}

.navbar-toggler:focus {
  box-shadow: none;
}

.nav-link {
  color: #fff;
  font-weight: 500;
  padding: 0.5rem 1rem;
  margin: 0 0.2rem;
  transition: all 0.3s ease;
}

.nav-link:hover {
  color: rgba(255, 255, 255, 0.8);
}

.navbar-scrolled .nav-link:hover {
  color: #28a745;
}

.btn-download {
  background-color: #28a745;
  color: #fff !important;
  border-radius: 50px;
  padding: 0.5rem 1.5rem !important;
  transition: all 0.3s ease;
}

.btn-download:hover {
  background-color: #218838;
  transform: translateY(-2px);
}

/* Hero Section */
.hero-section {
  background-image: url('../images/fond.jpg');
  background-size: cover;
  background-position: center;
  position: relative;
  padding: 160px 0 100px;
  overflow: hidden;
  border-bottom-left-radius: 10px;
  border-bottom-right-radius: 10px;
}

.hero-overlay {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background-color: rgba(40, 167, 69, 0.75);
  z-index: 1;
}

.hero-content {
  position: relative;
  z-index: 2;
  color: #fff;
}

.hero-content h1 {
  font-size: 3.5rem;
  font-weight: 700;
  margin-bottom: 1rem;
  color: #fff;
}

.hero-subtitle {
  font-size: 1.2rem;
  margin-bottom: 2rem;
  color: rgba(255, 255, 255, 0.9);
}

.hero-buttons {
  display: flex;
  flex-direction: column;
  align-items: flex-start;
}

.download-link {
  display: inline-block;
  margin-bottom: 1.5rem;
}

.download-link0 {
  display: inline-block;
}

.download-btn {
  width: 200px;
  height: auto;
  transition: all 0.3s ease;
}

.download-btn:hover {
  transform: translateY(-5px);
}

.policy-links {
  display: flex;
  gap: 1.5rem;
}

.policy-links a {
  color: rgba(255, 255, 255, 0.9);
  font-size: 0.9rem;
  font-weight: 500;
  position: relative;
}

.policy-links a:after {
  content: '';
  position: absolute;
  width: 0;
  height: 2px;
  bottom: -5px;
  left: 0;
  background-color: #fff;
  transition: width 0.3s ease;
}

.policy-links a:hover {
  color: #fff;
}

.policy-links a:hover:after {
  width: 100%;
}

.phone-mockup {
  position: relative;
  z-index: 2;
  text-align: center;

}

.phone-mockup img {
  max-height: 500px;
  border-radius: 20px;
  box-shadow: 0 20px 40px rgba(0, 0, 0, 0.2);
  transition: all 0.5s ease;
}

.phone-mockup img:hover {
  transform: translateY(-10px);
}

/* About Section */
#about {
  background-color: #fff;
  padding: 80px 0;
}

.about-image {
  text-align: center;
  padding: 2rem;
}

.about-image i {
  color: #28a745;
  font-size: 150px;
  display: inline-block;
  background-color: rgba(40, 167, 69, 0.1);
  padding: 3rem;
  border-radius: 50%;
}

.about-text {
  margin-bottom: 2rem;
  font-size: 1.05rem;
  line-height: 1.7;
}

.stats-container {
  display: flex;
  justify-content: space-between;
  margin-top: 2rem;
  flex-wrap: wrap;
}

.stat-item {
  text-align: center;
  padding: 1rem;
  min-width: 120px;
}

.stat-number {
  display: block;
  font-size: 2rem;
  font-weight: 700;
  color: #28a745;
  margin-bottom: 0.5rem;
}

.stat-label {
  font-size: 0.9rem;
  color: #666;
}

/* Features Section */
#features {
  background-color: #f9f9f9;
  padding: 80px 0;
}

.feature-card {
  background-color: #fff;
  padding: 2rem;
  border-radius: 10px;
  box-shadow: 0 5px 15px rgba(0, 0, 0, 0.05);
  height: 100%;
  transition: all 0.3s ease;
}

.feature-card:hover {
  transform: translateY(-10px);
  box-shadow: 0 15px 30px rgba(0, 0, 0, 0.1);
}

.feature-icon {
  font-size: 2.5rem;
  color: #28a745;
  margin-bottom: 1.5rem;
  display: inline-block;
  background-color: rgba(40, 167, 69, 0.1);
  width: 80px;
  height: 80px;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  margin-bottom: 1.5rem;
}

.feature-card h4 {
  font-size: 1.3rem;
  margin-bottom: 1rem;
  color: #333;
}

.feature-card p {
  font-size: 0.95rem;
  color: #666;
  margin-bottom: 0;
}

/* Screenshots Section */
#screenshots {
  background-color: #fff;
  padding: 80px 0;
}

.screenshot-card {
  background-color: #fff;
  border-radius: 10px;
  overflow: hidden;
  box-shadow: 0 5px 15px rgba(0, 0, 0, 0.05);
  height: 100%;
  transition: all 0.3s ease;
}

.screenshot-card:hover {
  transform: translateY(-10px);
  box-shadow: 0 15px 30px rgba(0, 0, 0, 0.1);
}

.screenshot-img {
  overflow: hidden;
  border-radius: 10px 10px 0 0;
}

.screenshot-img img {
  transition: transform 0.5s ease;
  width: 100%;
  height: auto;
}

.screenshot-card:hover .screenshot-img img {
  transform: scale(1.05);
}

.screenshot-info {
  padding: 1.5rem;
}

.screenshot-info h5 {
  font-size: 1.2rem;
  margin-bottom: 0.75rem;
  color: #333;
}

.screenshot-info p {
  font-size: 0.9rem;
  color: #666;
  margin-bottom: 0;
}

/* Call to Action Section */
#cta {
  background-color: #28a745;
  color: #fff;
  padding: 80px 0;
}

#cta h2 {
  color: #fff;
  font-size: 2.5rem;
  margin-bottom: 1rem;
}

#cta p {
  color: rgba(255, 255, 255, 0.9);
  font-size: 1.1rem;
  margin-bottom: 2rem;
  max-width: 700px;
  margin-left: auto;
  margin-right: auto;
}

#cta .download-btn {
  margin: 0 auto;
}

/* Footer */
footer {
  background-color: #222;
  color: #fff;
  padding: 60px 0 20px;
}

.footer-brand {
  margin-bottom: 2rem;
}

.footer-logo {
  width: 60px;
  height: auto;
  margin-bottom: 1rem;
}

.footer-brand h3 {
  font-size: 1.5rem;
  color: #fff;
  margin-bottom: 0.5rem;
}

.footer-brand p {
  color: rgba(255, 255, 255, 0.7);
  font-size: 0.9rem;
}

footer h5 {
  color: #fff;
  font-size: 1.2rem;
  margin-bottom: 1.5rem;
  position: relative;
  padding-bottom: 10px;
}

footer h5:after {
  content: '';
  position: absolute;
  width: 50px;
  height: 2px;
  background-color: #28a745;
  bottom: 0;
  left: 0;
}

.footer-links {
  list-style: none;
  padding: 0;
  margin: 0;
}

.footer-links li {
  margin-bottom: 0.75rem;
}

.footer-links a {
  color: rgba(255, 255, 255, 0.7);
  font-size: 0.95rem;
  transition: all 0.3s ease;
}

.footer-links a:hover {
  color: #28a745;
  padding-left: 5px;
}

.social-links {
  display: flex;
  gap: 1rem;
  margin-bottom: 1.5rem;
}

.social-links a {
  color: rgba(255, 255, 255, 0.7);
  font-size: 1.3rem;
  transition: all 0.3s ease;
}

.social-links a:hover {
  color: #28a745;
  transform: translateY(-3px);
}

.footer-download-btn {
  width: 150px;
  height: auto;
}

.footer-bottom {
  border-top: 1px solid rgba(255, 255, 255, 0.1);
  padding-top: 1.5rem;
  margin-top: 3rem;
  text-align: center;
}

.footer-bottom p {
  color: rgba(255, 255, 255, 0.7);
  font-size: 0.9rem;
  margin: 0;
}

/* Responsive Styles */
@media (max-width: 991px) {
  .navbar {
    background-color: #fff;
    padding: 0.75rem 0;
  }
  
  .navbar-brand span,
  .nav-link {
    color: #333;
  }
  
  .nav-link:hover {
    color: #28a745;
  }
  
  .navbar-toggler {
    color: #333;
  }
  
  .hero-section {
    padding: 120px 0 80px;
  }
  
  .hero-content {
    text-align: center;
    margin-bottom: 3rem;
  }
  
  .hero-buttons {
    align-items: center;
  }
  
  .about-image {
    margin-bottom: 2rem;
  }
  
  .stats-container {
    justify-content: center;
  }
  
  .stat-item {
    width: 50%;
    margin-bottom: 1.5rem;
  }
}

@media (max-width: 768px) {
  .section-header h2 {
    font-size: 1.8rem;
  }
  
  .hero-content h1 {
    font-size: 2.5rem;
  }
  
  .feature-card,
  .screenshot-card {
    margin-bottom: 2rem;
  }
  
  .policy-links {
    flex-direction: column;
    gap: 1rem;
    align-items: center;
  }
}

@media (max-width: 576px) {
  .hero-content h1 {
    font-size: 2rem;
  }
  
  .hero-subtitle {
    font-size: 1rem;
  }
  
  .download-btn {
    width: 180px;
  }
  
  .stats-container {
    flex-direction: column;
  }
  
  .stat-item {
    width: 100%;
  }
  
  #cta h2 {
    font-size: 1.8rem;
  }
  
  #cta p {
    font-size: 1rem;
  }
  
  .footer-brand,
  .footer-links,
  .social-links {
    text-align: center;
    margin-bottom: 2rem;
  }
  
  footer h5:after {
    left: 50%;
    transform: translateX(-50%);
  }
  
  .social-links {
    justify-content: center;
  }
}
  