/* ---------------------- */
/* POLICES ET VARIABLES */
/* ---------------------- */

body {
  margin: 0;
  font-family: 'Inter', sans-serif;
  font-size: 16px;
  font-weight: 400;
  color: #d8cfc0;
  background-color: #000;
  box-sizing: border-box;
}

img {
  max-width: 100%;
  height: auto;
  display: block;
}

.container {
  max-width: 1200px;
  margin: 0 auto;
  padding: 0 20px;
}

/* ---------------------- */
/* TYPOGRAPHIE */
/* ---------------------- */

.logo {
  font-family: 'Playfair Display', serif;
  font-size: 48px;
  font-weight: 700;
  color: #d4af37;
}

h1, h2 {
  font-family: 'Playfair Display', serif;
  font-size: 32px;
  font-weight: 600;
  color: #f5e9d4;
  margin-bottom: 20px;
}

h3, h4 {
  font-family: 'Inter', sans-serif;
  font-size: 18px;
  font-weight: 500;
  color: #e5e1d8;
  margin-bottom: 10px;
}

p {
  font-size: 16px;
  color: #d8cfc0;
}

/* ---------------------- */
/* BOUTONS ET LIENS */
/* ---------------------- */

button, .cta {
  font-family: 'Inter', sans-serif;
  font-size: 15px;
  font-weight: 600;
  background-color: #d4af37;
  color: #1a1a1a;
  border: none;
  padding: 12px 20px;
  border-radius: 5px;
  cursor: pointer;
  transition: background 0.3s ease;
}

button:hover, .cta:hover {
  background-color: #c29d2f;
}

nav a, .menu a {
  font-family: 'Inter', sans-serif;
  font-size: 14px;
  font-weight: 500;
  color: #f2e8d4;
  text-decoration: none;
  margin: 0 15px;
}

nav a:hover {
  color: #d4af37;
}

/* ---------------------- */
/* HERO SECTION */
/* ---------------------- */

.hero {
  background: url('images/hero.jpg') center/cover no-repeat;
  color: white;
  padding: 80px 20px;
  text-align: center;
}

.hero .logo {
  font-size: 32px;
  font-weight: bold;
  border: 2px solid white;
  padding: 10px 15px;
  display: inline-block;
  margin-bottom: 10px;
}

.subtitle {
  font-size: 16px;
  margin: 10px 0;
}

.hero h1 {
  font-size: 48px;
  margin: 20px 0;
}

.buttons {
  margin-top: 30px;
}

.btn {
  padding: 12px 24px;
  border: 2px solid white;
  font-weight: bold;
  margin: 0 10px;
  border-radius: 4px;
  transition: all 0.2s ease;
  display: inline-block;
}

.btn.light {
  background: white;
  color: #2e2b28;
}

.btn.light:hover {
  background: #ddd;
}

.btn.dark {
  background: transparent;
  color: white;
}

.btn.dark:hover {
  background: rgba(255, 255, 255, 0.1);
}

/* ---------------------- */
/* SECTION : SAVOIR-FAIRE */
/* ---------------------- */

.savoir-faire {
  background: #1f1b18;
  color: white;
  padding: 00px 20px;
}

.sf-container {
  display: flex;
  flex-wrap: wrap;
}

.sf-left, .sf-right {
  flex: 1 1 50%;
  padding: 60px 40px;
  box-sizing: border-box;
}

.sf-left h2 {
  font-size: 32px;
  margin-bottom: 20px;
}

.sf-left p {
  font-size: 16px;
  line-height: 1.6;
}

.sf-right {
  background: #1a1a1a;
  display: flex;
  align-items: center;
  justify-content: center;
}

.sf-content {
  display: flex;
  gap: 30px;
  align-items: center;
}

.sf-content img {
  width: 204px;
  border-radius: 6px;
  object-fit: cover;
}

.sf-content ul {
  list-style: none;
  font-size: 16px;
  color: #f5e9d4;
  padding: 0;
}

.sf-content li {
  margin-bottom: 10px;
  display: flex;
  align-items: center;
}

.sf-content .arrow {
  color: #d4af37;
  margin-right: 10px;
  font-weight: bold;
}

/* ---------------------- */
/* SECTION : PRESTATIONS */
/* ---------------------- */

.prestations {
  background: #000;
  color: white;
  padding: 0px 20px;
  text-align: center;
}

.prestations h2 {
  font-size: 32px;
  margin-bottom: 40px;
}

.grid {
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
  gap: 30px;
}

.prestation {
  flex: 1 1 280px;
  max-width: 300px;
  text-align: left;
}

.prestation img {
  width: 100%;
  aspect-ratio: 1/1;
  object-fit: cover;
  border-radius: 6px;
  transition: transform 0.3s ease;
  box-shadow: 0 4px 12px rgba(0, 0, 0, 0.2);
}

.prestation img:hover {
  transform: scale(1.05);
}

.prestation h3 {
  margin-top: 15px;
  font-size: 20px;
  color: #e5e1d8;
}

.prestation p {
  font-size: 14px;
  color: #d8cfc0;
}

/* ---------------------- */
/* GALERIE CARROUSEL */
/* ---------------------- */

.carousel-container {
  position: relative;
  width: 100%;
  overflow: hidden;
  padding: 40px 0;
}

.carousel-track {
  display: flex;
  gap: 20px;
  padding: 0 20px;
  transition: transform 0.6s ease-in-out, opacity 0.4s ease;
}

.carousel-track img {
  width: calc(25% - 15px);
  height: 180px;
  object-fit: cover;
  border-radius: 8px;
  cursor: zoom-in;
  flex-shrink: 0;
}

.carousel-btn {
  position: absolute;
  top: 50%;
  transform: translateY(-50%);
  font-size: 36px;
  background: rgba(255,255,255,0.8);
  border: none;
  padding: 10px;
  cursor: pointer;
  z-index: 10;
  border-radius: 5px;
}

.carousel-btn.left { left: 10px; }
.carousel-btn.right { right: 10px; }

/* ---------------------- */
/* LIGHTBOX */
/* ---------------------- */

.lightbox {
  display: none;
  position: fixed;
  z-index: 999;
  top: 0; left: 0;
  width: 100%;
  height: 100%;
  background: rgba(0,0,0,0.9);
  justify-content: center;
  align-items: center;
  flex-direction: column;
}

.lightbox.show {
  display: flex;
}

.lightbox-img {
  max-width: 90%;
  max-height: 80%;
  border-radius: 10px;
  box-shadow: 0 10px 30px rgba(0,0,0,0.5);
  transition: transform 0.3s ease;
}

.close {
  position: absolute;
  top: 20px;
  right: 30px;
  font-size: 40px;
  color: white;
  cursor: pointer;
}

.nav-arrow {
  position: absolute;
  top: 50%;
  transform: translateY(-50%);
  font-size: 48px;
  background: none;
  border: none;
  color: white;
  cursor: pointer;
  padding: 10px;
  user-select: none;
}

.nav-arrow.prev { left: 30px; }
.nav-arrow.next { right: 30px; }

/* ---------------------- */
/* FORMULAIRE DE CONTACT */
/* ---------------------- */

.contact {
  padding: 60px 20px;
  background-color: #111;
  color: #f5e9d4;
  text-align: center;
}

.contact h2 {
  font-family: 'Playfair Display', serif;
  font-size: 32px;
  font-weight: 600;
  margin-bottom: 30px;
  color: #d4af37;
}

.contact form {
  max-width: 500px;
  margin: 0 auto;
  display: flex;
  flex-direction: column;
  gap: 20px;
}

.contact input,
.contact textarea {
  padding: 12px;
  background: #1a1a1a;
  border: none;
  border-radius: 4px;
  color: #f2e8d4;
  font-family: 'Inter', sans-serif;
  font-size: 14px;
}

.contact textarea {
  resize: vertical;
  min-height: 120px;
}

.contact input::placeholder,
.contact textarea::placeholder {
  color: #999;
}

.contact button {
  background-color: #d4af37;
  color: #1a1a1a;
  padding: 14px;
  font-size: 15px;
  font-weight: 600;
  border-radius: 4px;
  cursor: pointer;
}

/* ---------------------- */
/* RESPONSIVE */
/* ---------------------- */

@media screen and (max-width: 768px) {
  .hero h1 {
    font-size: 36px;
  }

  .sf-container {
    flex-direction: column;
  }

  .sf-left,
  .sf-right {
    flex: 1 1 100%;
    padding: 40px 20px;
    text-align: center;
  }

  .sf-content {
    flex-direction: column;
    align-items: center;
    gap: 20px;
  }

  .carousel-track img {
    width: 100%;
    max-width: 280px;
    height: auto;
  }

  .grid {
    flex-direction: column;
    align-items: center;
  }

  .btn {
    display: block;
    margin: 10px auto;
  }

  .nav-arrow {
    font-size: 36px;
    padding: 8px;
  }

  .lightbox-img {
    max-width: 100%;
    max-height: 70%;
  }
}

/*email */
.contact-info {
  font-size: 16px;
  color: #f2e8d4;
  line-height: 1.6;
  max-width: 500px;
  margin: 0 auto;
}

.obfuscated-email {
  unicode-bidi: bidi-override;
  direction: rtl;
}
#obfuscated-email a {
  color: #d4af37;
  text-decoration: none;
  font-weight: 500;
}
#obfuscated-email a:hover {
  text-decoration: underline;
}

#obfuscated-phone a {
  color: #d4af37;
  text-decoration: none;
  font-weight: 500;
}
#obfuscated-phone a:hover {
  text-decoration: underline;
}