/* Reset */
* {
  margin: 0; padding: 0; box-sizing: border-box;
}

body {
  font-family: 'Poppins', sans-serif;
  background-color: #0a0a0a;
  color: #f5f5f5;
  line-height: 1.6;
  font-weight: 400;
}

a {
  color: #bfa16f;
  text-decoration: none;
  transition: color 0.3s ease;
}
a:hover {
  color: #d4c484;
}

/* Header */
header.container {
  position: sticky;
  top: 0;
  background: rgba(10,10,10,0.95);
  padding: 1.2rem 3rem;
  display: flex;
  justify-content: space-between;
  align-items: center;
  box-shadow: 0 2px 10px rgba(0,0,0,0.6);
  z-index: 1000;
}

.logo {
  font-family: 'Playfair Display', serif;
  font-size: 1.8rem;
  font-weight: 700;
  color: #bfa16f;
  letter-spacing: 2px;
  cursor: default;
}

nav ul {
  list-style: none;
  display: flex;
  gap: 3rem;
  font-weight: 600;
  font-size: 1rem;
  text-transform: uppercase;
}

nav ul li a {
  padding: 0.3rem 0;
  border-bottom: 2px solid transparent;
  transition: border-color 0.3s ease;
}

nav ul li a:hover,
nav ul li a.active {
  border-bottom: 2px solid #bfa16f;
  color: #bfa16f;
}

/* Main container */
.container {
  max-width: 1200px;
  margin: 0 auto;
  padding: 0 1.5rem;
}

/* Contact page styles */
.contact-container {
  margin: 4rem auto 6rem;
  display: flex;
  gap: 4rem;
  flex-wrap: wrap;
  color: #f5f5f5;
}

.contact-info {
  flex: 1 1 300px;
  font-family: 'Playfair Display', serif;
}

.contact-info h2 {
  font-size: 2.8rem;
  color: #bfa16f;
  margin-bottom: 1rem;
  text-shadow: 0 0 12px rgba(191,161,111,0.7);
}

.contact-info p {
  font-weight: 300;
  font-size: 1.2rem;
  margin-bottom: 2rem;
  opacity: 0.85;
}

/* Social links */
.social-links {
  display: flex;
  gap: 2rem;
}

.social-links a {
  font-size: 2.5rem;
  color: #bfa16f;
  transition: color 0.3s ease, transform 0.3s ease;
}

.social-links a:hover,
.social-links a:focus {
  color: #d4c484;
  transform: scale(1.2);
  outline: none;
}

/* Formulaire */
.contact-form-section {
  flex: 1 1 400px;
  background-color: #111;
  padding: 2rem;
  border-radius: 15px;
  box-shadow: 0 8px 25px rgba(191,161,111,0.5);
}

.contact-form {
  display: flex;
  flex-direction: column;
  gap: 1.5rem;
}

.contact-form input,
.contact-form textarea {
  font-family: 'Poppins', sans-serif;
  font-size: 1rem;
  padding: 0.8rem 1rem;
  border: none;
  border-radius: 8px;
  background-color: #222;
  color: #f5f5f5;
  transition: background-color 0.3s ease;
  resize: vertical;
  min-height: 40px;
}

.contact-form input:focus,
.contact-form textarea:focus {
  background-color: #333;
  outline: 2px solid #bfa16f;
}

.contact-form textarea {
  min-height: 120px;
}

.btn-submit {
  background-color: #bfa16f;
  border: none;
  padding: 12px 0;
  border-radius: 30px;
  font-weight: 600;
  font-size: 1.1rem;
  color: #0a0a0a;
  cursor: pointer;
  transition: background-color 0.3s ease;
}

.btn-submit:hover {
  background-color: #d4c484;
}

/* Footer */
footer.container {
  background-color: #121212;
  text-align: center;
  padding: 2rem 1rem;
  color: #bfa16f;
  font-weight: 400;
  letter-spacing: 2px;
  font-size: 0.9rem;
  user-select: none;
}

footer a {
  color: #d4c484;
  font-weight: 600;
}

footer a:hover {
  text-decoration: underline;
}

/* Responsive */
@media (max-width: 768px) {
  .contact-container {
    flex-direction: column;
  }

  .contact-info,
  .contact-form-section {
    flex: 1 1 100%;
  }

  .social-links {
    justify-content: center;
  }

  nav ul {
    gap: 1.5rem;
  }
}

body {
  font-family: 'Poppins', sans-serif;
  background-color: #0a0a0a;
  background-image: url("data:image/svg+xml,%3Csvg width='80' height='80' viewBox='0 0 20 20' xmlns='http://www.w3.org/2000/svg'%3E%3Cg fill='%23bfa16f' fill-opacity='0.08'%3E%3Cpath d='M10 0a10 10 0 100 20A10 10 0 0010 0zm0 2a8 8 0 110 16A8 8 0 0110 2z'/%3E%3C/g%3E%3C/svg%3E");
  background-repeat: repeat;
  background-size: 100px;
  color: #f5f5f5;
  line-height: 1.6;
  font-weight: 400;
}

