html {
  scroll-behavior: smooth;
}

body {
    height: 100%;
    margin: 0%;
    padding: 0%;
    display: flex;
    flex-direction: column;
    font-family: Raleway;
    background: #000;
    color: #fff;
    overflow: auto;
}

.header {
    display: flex;
    justify-content: space-between;
    background-color: #000;
    color: #fff;
    padding: 15px 10px 2px 10px;
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    z-index: 1000;
}

.header ul {
    list-style: none;
    display: flex;
    margin: 3px;
    padding: 0;
}

.header ul li {
    margin: 0 18px;
}

.header ul li a {
    color: #fff;
    text-decoration: none;
    font-size: 16px;
}
.header ul li a:hover {
    text-decoration: underline;
}
.header img {
    width: 45px;
    height: 35px;
    padding-top: 0px;
    margin-right: 730px;
    margin-top: 0px;
    margin-left: 10px;
}

main {
    flex-grow: 1;
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
}
.footer {
    background-color: #000;
    padding: 2rem 0;
    border-top: 1px solid #333;
}

.footer-content {
    display: flex;
    justify-content: space-between;
    align-items: center;
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 2rem;
}

.footer-info p {
    margin: 0.5rem 0;
    color: #ccc;
    font-size: 0.9rem;
}

.footer-social {
    display: flex;
    gap: 1.5rem;
}

.social-link {
    width: 40px;
    height: 40px;
    display: flex;
    align-items: center;
    justify-content: center;
    border-radius: 50%;
    background: #222;
    transition: all 0.3s ease;
    position: relative;
}

.social-link:hover {
    transform: translateY(-3px);
    background: #ac9494;
}

.social-link img {
    width: 20px;
    height: 20px;
    filter: invert(1);
}

.footer-copyright {
    text-align: center;
    margin-top: 1.5rem;
    color: #666;
    font-size: 0.8rem;
}

/* Tooltip pour les réseaux */
.social-link::after {
    content: attr(data-tooltip);
    position: absolute;
    bottom: -30px;
    left: 50%;
    transform: translateX(-50%);
    background: #333;
    color: #fff;
    padding: 0.3rem 0.6rem;
    border-radius: 4px;
    font-size: 0.7rem;
    opacity: 0;
    transition: opacity 0.3s;
    white-space: nowrap;
}

.social-link:hover::after {
    opacity: 1;
}

@media (max-width: 768px) {
    .footer-content {
        flex-direction: column;
        gap: 1.5rem;
    }
    
    .footer-info {
        text-align: center;
    }
}

.social-link img {
    width: 24px;
    height: 24px;
    filter: invert(1);
    transition: transform 0.3s ease;
}

.social-link img:hover {
    transform: scale(1.2);
}
.contact-form-section {
  margin: 50px auto;
  padding: 2rem;
  background: #000000;
  color: #fff;
  animation: fadeIn 1s ease-in-out;
}

.contact-form-section h2 {
  font-size: 1.5rem;
  margin-bottom: 20px;
  text-align: center;
  font-weight: 500;
  color: #c2adad;
}

.form-group {
  margin-bottom: 1.5rem;
}

.form-group label {
  font-size: 1rem;
  color: #ccc;
}

.form-group input,
.form-group textarea {
  width: 98%;
  padding: 0.5rem;
  margin-top: 0.5rem;
  border: 1px solid #333;
  background: #2b2b2b;
  color: #fff;
  font-size: 1rem;
  border-radius: 5px;
}

.form-group input:focus,
.form-group textarea:focus {
  border-color: #ac9494;
  outline: none;
}

.submit-btn {
  width: 30%;
  padding: 0.7rem;
  background-color: #ac9494;
  border: none;
  color: #fff;
  font-size: 1rem;
  text-align: center;
  border-radius: 5px;
  cursor: pointer;
  transition: background-color 0.3s ease;
}

.submit-btn:hover {
  background-color: #c2adad;
}
main {
    flex-grow: 1;
    min-height: 100vh;
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
}
.form-row {
  display: flex;
  gap: 1rem;
  flex-wrap: wrap;

}

.half-width {
  flex: 1;
  max-width: 155px;
  width: 50%;
  gap: 12px;
  margin-right: 10px;
}
