/* Styles spécifiques pour l'en-tête et la navigation */

header {
  background-color: white;
  box-shadow: var(--box-shadow);
  position: fixed;
  width: 100%;
  top: 0;
  left: 0;
  z-index: 1000;
}

.header-container {
  display: flex;
  justify-content: space-between;
  align-items: center;
  padding: 1rem 0;
}

.logo {
  display: flex;
  align-items: center;
}

.logo img {
  height: 50px;
  margin-right: 1rem;
}

.logo h1 {
  font-size: 1.5rem;
  margin-bottom: 0;
}

.nav-menu {
  display: flex;
  list-style: none;
}

.nav-menu li {
  margin-left: 2rem;
}

.nav-menu a {
  color: var(--dark-color);
  font-weight: 500;
  position: relative;
}

.nav-menu a:hover {
  color: var(--secondary-color);
}

.nav-menu a::after {
  content: '';
  position: absolute;
  bottom: -5px;
  left: 0;
  width: 0;
  height: 2px;
  background-color: var(--secondary-color);
  transition: var(--transition);
}

.nav-menu a:hover::after {
  width: 100%;
}

.mobile-toggle {
  display: none;
  background: none;
  border: none;
  font-size: 1.5rem;
  cursor: pointer;
  color: var(--primary-color);
}

/* Styles pour la bannière principale */
.hero {
  padding-top: 120px;
  padding-bottom: 5rem;
  background: linear-gradient(135deg, var(--primary-color) 0%, var(--secondary-color) 100%);
  position: relative;
  color: white;
}

.hero::before {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background-color: rgba(0, 0, 0, 0.4);
  z-index: 1;
}

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

.hero-content {
  display: flex;
  align-items: center;
  justify-content: space-between;
}

.hero-text {
  flex: 0 0 50%;
}

.hero-text h1 {
  font-size: 3rem;
  margin-bottom: 1.5rem;
  color: white;
  text-shadow: 0 2px 4px rgba(0, 0, 0, 0.3);
}

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

.hero-buttons {
  display: flex;
  gap: 1rem;
}

.hero-image {
  flex: 0 0 45%;
}

.hero-image img {
  width: 100%;
  border-radius: 8px;
  box-shadow: var(--box-shadow);
}

/* Styles pour les sections spécifiques */
.business-section {
  background-color: rgba(52, 73, 94, 0.05);
}

.business-section .section-title h2::after {
  background-color: var(--business-color);
}

.coaching-section {
  background-color: rgba(39, 174, 96, 0.05);
}

.coaching-section .section-title h2::after {
  background-color: var(--coaching-color);
}

/* Styles pour les cartes de services */
.service-card {
  text-align: center;
  padding: 2.5rem;
}

.service-icon {
  font-size: 3rem;
  color: var(--secondary-color);
  margin-bottom: 1.5rem;
}

.business-section .service-icon {
  color: var(--business-color);
}

.coaching-section .service-icon {
  color: var(--coaching-color);
}

/* Styles pour la section d'expérience */
.experience-item {
  margin-bottom: 2.5rem;
  position: relative;
  padding-left: 2rem;
}

.experience-item::before {
  content: '';
  position: absolute;
  left: 0;
  top: 0;
  width: 4px;
  height: 100%;
  background-color: var(--secondary-color);
  border-radius: 2px;
}

.experience-date {
  font-weight: 600;
  color: var(--secondary-color);
  margin-bottom: 0.5rem;
}

.experience-company {
  font-weight: 700;
  margin-bottom: 0.5rem;
}

.experience-position {
  font-style: italic;
  margin-bottom: 1rem;
  color: var(--grey-color);
}

/* Styles pour le formulaire de contact */
.contact-form {
  background-color: white;
  padding: 2.5rem;
  border-radius: 8px;
  box-shadow: var(--box-shadow);
}

.contact-info {
  margin-bottom: 2rem;
}

.contact-info-item {
  display: flex;
  align-items: center;
  margin-bottom: 1rem;
}

.contact-info-icon {
  font-size: 1.5rem;
  color: var(--secondary-color);
  margin-right: 1rem;
}

/* Styles pour le pied de page */
footer {
  background-color: var(--primary-color);
  color: white;
  padding: 3rem 0 1.5rem;
}

.footer-content {
  display: flex;
  justify-content: space-between;
  margin-bottom: 2rem;
}

.footer-column {
  flex: 1;
  padding: 0 1rem;
}

.footer-column h3 {
  color: white;
  margin-bottom: 1.5rem;
  position: relative;
  padding-bottom: 0.5rem;
}

.footer-column h3::after {
  content: '';
  position: absolute;
  bottom: 0;
  left: 0;
  width: 50px;
  height: 2px;
  background-color: var(--secondary-color);
}

.footer-links {
  list-style: none;
}

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

.footer-links a {
  color: rgba(255, 255, 255, 0.7);
}

.footer-links a:hover {
  color: white;
}

.footer-bottom {
  text-align: center;
  padding-top: 1.5rem;
  border-top: 1px solid rgba(255, 255, 255, 0.1);
  font-size: 0.9rem;
  color: rgba(255, 255, 255, 0.5);
}

/* Media queries pour la responsivité */
@media (max-width: 992px) {
  .hero-content {
    flex-direction: column;
  }
  
  .hero-text, .hero-image {
    flex: 0 0 100%;
  }
  
  .hero-image {
    margin-top: 2rem;
  }
  
  .footer-content {
    flex-wrap: wrap;
  }
  
  .footer-column {
    flex: 0 0 50%;
    margin-bottom: 2rem;
  }
}

@media (max-width: 768px) {
  .header-container {
    padding: 1rem;
  }
  
  .nav-menu {
    position: fixed;
    top: 70px;
    left: -100%;
    flex-direction: column;
    background-color: white;
    width: 100%;
    text-align: center;
    transition: 0.3s;
    box-shadow: 0 10px 27px rgba(0, 0, 0, 0.05);
    padding: 2rem 0;
  }
  
  .nav-menu.active {
    left: 0;
  }
  
  .nav-menu li {
    margin: 1.5rem 0;
  }
  
  .mobile-toggle {
    display: block;
  }
  
  .hero-buttons {
    flex-direction: column;
  }
  
  .footer-column {
    flex: 0 0 100%;
  }
}
