/******* GENERAL *******/
/* spacing on all sections */
#about,
#skills,
#portfolio,
#contact {
    margin-top: 4rem;
    padding-top: 4rem;
}
#about h2,
#skills h2,
#portfolio h2,
/* Contact Section */
.contact-section {
    padding: 4rem 2rem;
    background: #f9f9f9;
    text-align: center;
  }
  
  .contact-section h2 {
    font-size: 2.5rem;
    margin-bottom: 0.5rem;
  }
  
  .pricing-hint {
    color: #666;
    font-style: italic;
    margin-bottom: 2rem;
  }
  
  .contact-container {
    max-width: 1000px;
    margin: 0 auto;
    display: flex;
    gap: 2rem;
    flex-wrap: wrap;
    justify-content: center;
  }
  
  .contact-form, .booking-widget {
    flex: 1;
    min-width: 300px;
    background: white;
    padding: 2rem;
    border-radius: 8px;
    box-shadow: 0 2px 10px rgba(0, 0, 0, 0.1);
  }
  
  .contact-form h3, .booking-widget h3 {
    margin-top: 0;
    font-size: 1.5rem;
  }
  
  .form-group {
    margin-bottom: 1.5rem;
    text-align: left;
  }
  
  input, textarea {
    width: 100%;
    padding: 12px;
    border: 1px solid #ddd;
    border-radius: 4px;
    font-family: inherit;
  }
  
  textarea {
    min-height: 120px;
    resize: vertical;
  }
  
  .submit-btn, .calendly-btn {
    background: #007bff;
    color: white;
    border: none;
    padding: 12px 24px;
    border-radius: 4px;
    cursor: pointer;
    font-weight: bold;
    transition: background 0.3s;
    display: inline-block;
    text-decoration: none;
  }
  
  .submit-btn:hover, .calendly-btn:hover {
    background: #0056b3;
  }
  
  /* Mobile Responsive */
  @media (max-width: 768px) {
    .contact-container {
      flex-direction: column;
    }
  }

/* display background dark color on navbar scroll */
.navbarScroll.navbarDark {
    background-color: #5b5b5b;
}

/* hero background image */
.bgimage {
    height: 100vh;
    max-height: 900px;
    background: url("images/image1.jpg");
    background-size: cover;
    position: relative;
    filter: brightness(50%);

}
/* text css above hero image*/
.hero_title {
    font-size: 4.5rem;
}
.hero_desc {
    font-size: 2rem;
}
.hero-text {
    text-align: center;
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    color: white;
    text-shadow: 1px 1px 2px black;

}
.cta-button {
  display: inline-block;
  margin: 10px;
  padding: 10px 20px;
  font-size: 1.2em;
  font-weight: bold;
  text-align: center;
  text-decoration: none;
  color: white;
  background-color: #0078D7; /* Use your primary color */
  border: none;
  border-radius: 5px;
  transition: background-color 0.3s ease, transform 0.3s ease;
}

.cta-button:hover {
  background-color: #005BB5; /* Darker shade on hover */
  transform: scale(1.05); /* Slight zoom on hover */
}

.cta-button:active {
  background-color: #003F7F; /* Even darker shade on click */
}

/* about */
.imageAboutPage {
    width: 100%;
}
.imageAboutPage {
    border-radius: 50%;
    box-shadow: 0 0 20px rgba(0, 0, 0, 0.5);
}

/* skills */
.skillsText.card {
    height: 350px;
    cursor: pointer;
}
.skillsText img {
    width: 100%;
    height: 150px;
    object-fit: contain;
}
#skills p {
    text-align: center;
}
.skillsIcon {
    font-size: 36px;
    text-align: center;
    width: 100%;
}
.card-title {
    text-align: center;
}
.card:hover .skillsIcon {
    color: #008000;
}
.skillsText:hover {
    border: 1px solid #008000;
}

/* portfolio */
#portfolio p {
    text-align: center;
}

/* contact */
.contactColumn {
    display: flex;
    flex-direction: column;
    align-items: center;
}

.contactColumn {
    text-align: center;
}
.contactColumn i {
    color: #0077b5; /* Couleur de l'icône LinkedIn */
}
/* Exemple d'ajustement de contraste */
body {
    color: #333; /* Couleur de texte améliorée */
    background-color: #fff; /* Couleur de fond améliorée */
}

/* footer */
