* {
  margin: 0;
  padding: 0;
  box-sizing: border-box;
}

body {
  font-family: "Georgia", "Times New Roman", serif;
  background: #f7f5f4;
  color: #210c0c;
}

/* Header */

.site-header {
  background-color: #374151	;
  position: relative;
}

.site-header .container {
  max-width: 1200px;
  margin: 0 auto;
  padding: 0 20px;
  height: 130px;
  display: flex;
  align-items: center;
  justify-content: space-between;
}

.logo img {
  height: 100px;        /* Hauteur maximale du logo */
  width: auto;         /* Garde les proportions */
  display: block;
  object-fit: contain; /* Assure que l'image rentre sans être coupée */
}


/* Navigation */
.main-nav ul {
  list-style: none;
  display: flex;
  gap: 25px;
}

.main-nav a {
  text-decoration: none;
  color: #555555;
  font-size: 0.95rem;
  font-weight: 500;
  padding-bottom: 3px;
  border-bottom: 2px solid transparent;
  transition: color 0.2s ease, border-color 0.2s ease;
}

.main-nav a:hover,
.main-nav a:focus {
  color: #0077ff;
}


/* Bouton hamburger */
.hamburger {
  display: flex;
  flex-direction: column;
  gap: 6px;
  background: none;
  border: none;
  cursor: pointer;
  padding: 0;
  position: fixed;      /* fixe en haut à droite de l'écran */
  top: 50px;
  right: 40px;
  z-index: 10000;

}

.hamburger span {
  width: 30px;
  height: 4px;
  background-color: #333333;
  border-radius: 0px;
  transition: all 0.3s ease;
   background-color: white !important;

}

/* Menu */
.main-nav {
  position: fixed;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  background: #1a1a1a;
  z-index: 100;
  align-items: center;
  justify-content: center;
  display: flex;
  opacity: 0;
  visibility: hidden;
  transition: all 0.3s ease;
}

.main-nav.active {
  opacity: 1;
  visibility: visible;
}

.main-nav ul {
  list-style: none;
  display: flex;
  flex-direction: column;
  gap: 0;
  padding: 0;
  text-align: center;
}


.main-nav li:last-child {
  border-bottom: none;
}

.main-nav a {
  text-decoration: none;
  color: white;
  font-size: 1.8rem;
  font-weight: 600;
  display: block;
  padding: 5px 40px;
  transition: color 0.3s ease;
}

.main-nav a:hover {
  background-color: #transparent;
  color: red;
}

/* Animation du hamburger quand le menu est ouvert */
.hamburger.active span:nth-child(1) {
  transform: rotate(45deg) translate(8px, 8px);

}

.hamburger.active span:nth-child(2) {
  opacity: 0;
  
}

.hamburger.active span:nth-child(3) {
  transform: rotate(-45deg) translate(7px, -7px);
  
}

.contact-page {
  min-height: 100vh;
  background: linear-gradient(135deg, #f5f5f5 0%, #fafafa 100%);
}

.contact-hero {
  background: fafafa;
  color: black;
  padding: 60px 0 40px;
  text-align: center;
}

.contact-hero h1 {
  font-size: clamp(2.5rem, 5vw, 3.5rem);
  margin: 0 0 1rem;
  font-weight: 700;
}

.lead {
  font-size: 1.2rem;
  max-width: 600px;
  margin: 0 auto;
  opacity: 0.95;
}

.container {
  max-width: 1200px;
  margin: 0 auto;
  padding: 0 20px;
}

.contact-content {
  padding: 60px 0;
}

.contact-grid {
  display: grid;
  grid-template-columns: 1fr 380px;
  gap: 40px;
}

.contact-form-card {
  background: white;
  padding: 40px;
  border-radius: 16px;
  box-shadow: 0 20px 60px rgba(0, 0, 0, 0.08);
  border: 1px solid #e5e5e5;
}

.contact-form-card h2 {
  margin: 0 0 30px;
  font-size: 1.5rem;
  color: #1A1A1A;
  border-bottom: 3px solid #1A1A1A;
  padding-bottom: 10px;
}

.form-row {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 20px;
  margin-bottom: 20px;
}

.form-group {
  display: flex;
  flex-direction: column;
}

.form-group label {
  font-weight: 600;
  color: #1A1A1A;
  margin-bottom: 6px;
  font-size: 0.9rem;
}

.form-group input,
.form-group select,
.form-group textarea {
  padding: 12px 16px;
  border: 2px solid #e0e0e0;
  border-radius: 8px;
  font-size: 1rem;
  transition: all 0.2s ease;
  background: #fafafa;
}

.form-group input:focus,
.form-group select:focus,
.form-group textarea:focus {
  outline: none;
  border-color: #1A1A1A;
  box-shadow: 0 0 0 3px rgba(26, 26, 26, 0.1);
  background: white;
}

.btn-primary {
  background: linear-gradient(135deg, #1A1A1A 0%, #333333 100%);
  color: white;
  border: none;
  padding: 14px 32px;
  border-radius: 8px;
  font-size: 1rem;
  font-weight: 600;
  cursor: pointer;
  transition: all 0.2s ease;
  width: 100%;
}

.btn-primary:hover {
  transform: translateY(-1px);
  box-shadow: 0 10px 25px rgba(26, 26, 26, 0.3);
  background: linear-gradient(135deg, #333333 0%, #1A1A1A 100%);
}

.contact-infos {
  display: flex;
  flex-direction: column;
  gap: 30px;
}

.contact-infos h2 {
  font-size: 1.5rem;
  color: #1A1A1A;
  margin: 0 0 20px;
  padding-bottom: 10px;
  border-bottom: 2px solid #e0e0e0;
}

.info-block {
  background: #fefbf3;
  padding: 24px;
  border-radius: 12px;
  box-shadow: 0 10px 30px rgba(0, 0, 0, 0.05);
  border: 1px solid #f0e8d9;
}

.info-block h3 {
  color: #1A1A1A;
  margin: 0 0 15px;
  font-size: 1.1rem;
}

.info-block p {
  margin: 8px 0;
  color: #333333;
  line-height: 1.5;
}

.info-block ul {
  margin: 8px 0 0;
  padding-left: 20px;
}

.info-block li {
  color: #555555;
  margin-bottom: 4px;
}

.info-block.last {
  margin-top: auto;
  background: white;
  border-color: #e5e5e5;
}

@media (max-width: 900px) {
  .contact-grid {
    grid-template-columns: 1fr;
    gap: 30px;
  }
  
  .contact-form-card {
    padding: 30px 24px;
  }
  
  .form-row {
    grid-template-columns: 1fr;
  }
}

@media (max-width: 600px) {
  .contact-hero {
    padding: 60px 0 40px;
  }
}





/* footer de la page */


.site-footer {
  background: #374151;
  color: #ffffff;
  padding: 50px 20px;
  margin-top: 80px;
  border-top: 1px solid #333;
  margin-top: auto;
}

.footer-container {
  max-width: 1200px;
  margin: 0 auto;
  display: grid;
  grid-template-columns: 1fr 1fr 1fr;
  gap: 40px;
}

.footer-col h3 {
  font-size: 1.3rem;
  margin-bottom: 20px;
  font-weight: 600;
}

.footer-col p {
  font-size: 0.95rem;
  margin-bottom: 10px;
  line-height: 1.6;
}

.footer-col ul {
  list-style: none;
  padding: 0;
}

.footer-col ul li {
  margin-bottom: 12px;
}

.footer-col a {
  color: #ffffff;
  text-decoration: none;
  transition: color 0.3s ease;
}

.footer-col a:hover {
  color: #0077ff;
}

.social-icons {
  display: flex;
  gap: 15px;
  background : #374151;
}

.icon-link {
  font-size: 1.5rem;
  width: 40px;
  height: 40px;
  display: flex;
  background: transparent !important;
  image-rendering: optimizeQuality;
  align-items: center;
  justify-content: center;
  transition: all 0.3s ease;
}

.icon-link:hover {
  border-color: #0077ff;
  color: #0077ff;
}



