/* RESET MARGE DU BODY */
body {
  margin: 0;
  padding: 0;
}

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


/* HEADER / NAVIGATION VERTICALE */
header {
  background-color: #1A1229;
  padding: 40px 0;
  border-bottom: 1px solid rgba(255, 255, 255, 0.05);
  text-align: center;
}

.navbar-vertical {
  display: flex;
  flex-direction: column;
  align-items: center;
}

/* LOGO IMAGE + TEXTE */
.logo-container {
  display: flex;
  flex-direction: column;
  align-items: center;
  margin-bottom: 20px;
}

.logo-container img {
  height: 150px;
  width: auto;
  margin-bottom: 15px;
  display: block;
}


.logo-text {
  font-family: 'Marcellus', serif;
  font-size: 32px;
  font-weight: normal;
  color: #ffffff;
  letter-spacing: 1.5px;
  margin: 0;
  line-height: 1;
  text-transform: uppercase;
}

/* LIENS CENTRÉS SOUS LE LOGO */
.nav-links-vertical {
  display: flex;
  gap: 25px;
  flex-wrap: wrap;
  justify-content: center;
}

.nav-links-vertical a {
  position: relative;
  color: #f0f0f0;
  text-decoration: none;
  font-size: 15px;
  letter-spacing: 0.5px;
  transition: color 0.3s ease;
}

.nav-links-vertical a:hover {
  color: #D4AF37;
}

.nav-links-vertical a::after {
  content: "";
  position: absolute;
  width: 0;
  height: 2px;
  bottom: -4px;
  left: 0;
  background-color: #D4AF37;
  transition: width 0.3s ease;
}

.nav-links-vertical a:hover::after {
  width: 100%;
}

/* RESPONSIVE */
@media (max-width: 768px) {
  .nav-links-vertical {
    flex-direction: column;
    gap: 15px;
  }
}


/* FOOTER GLOBAL */
footer {
  background-color: #1A1229;
  color: #f0f0f0;
  padding: 50px 20px 30px;
  text-align: center;
  font-family: 'Lora', serif;
  font-size: 15px;
  letter-spacing: 0.5px;
  border-top: 1px solid rgba(255, 255, 255, 0.05);
  position: relative;
}

/* LOGO CENTRÉ */
.footer-logo {
  margin-bottom: 20px;
}
.footer-logo img {
  height: 150px;
  width: auto;
  display: block;
  margin: 0 auto;
  opacity: 0.9;
}

/* LIGNE DE SÉPARATION ÉLÉGANTE */
.footer-separator {
  width: 550px;
  height: 2px;
  background-color: #444;
  margin: 0 auto 30px;
  opacity: 0.6;
}

/* TEXTE ET LIENS */
footer p {
  margin: 5px 0;
  opacity: 0.9;
}

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

footer a:hover {
  color: #ffffff;
  text-decoration: underline;
}

/* RESPONSIVE FOOTER */
@media (max-width: 600px) {
  footer {
    font-size: 14px;
    padding: 40px 15px 25px;
  }
  .footer-logo img {
    height: 45px;
  }
  .footer-separator {
    width: 100px;
  }
}


/* POLICES GLOBALES */
body {
  font-family: 'Playfair Display', serif;
}

.services-title,
h2, h3 {
  font-family: 'Cinzel', serif;
  letter-spacing: 1.5px;
  text-transform: uppercase;
  color: #D4AF37;
}



.cookie-banner {
  position: fixed;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
  background-color: #1A1229;
  color: #ffffff;
  border: 2px solid #D4AF37;
  border-radius: 20px;
  padding: 40px 30px 60px;
  max-width: 550px;
  width: 90%;
  z-index: 9999;
  box-shadow: 0 15px 40px rgba(0, 0, 0, 0.6);
  text-align: center;
  font-family: 'Playfair Display', serif;
  animation: fadeInCookies 0.8s ease;
}

.cookie-box {
  position: relative;
}

.cookie-text {
  font-size: 16px;
  line-height: 1.7;
  margin-bottom: 30px;
  color: #f0f0f0;
}

.cookie-actions {
  display: flex;
  justify-content: center;
  gap: 20px;
}

.btn-cookie {
  padding: 12px 25px;
  border-radius: 10px;
  font-family: 'Cinzel', serif;
  font-size: 14px;
  text-transform: uppercase;
  cursor: pointer;
  transition: background-color 0.3s ease;
  border: none;
}

.btn-accept {
  background-color: #D4AF37;
  color: #ffffff;
}

.btn-accept:hover {
  background-color: #b8952d;
}

.btn-refuse {
  background-color: transparent;
  color: #ffffff;
  border: 1px solid #ffffff;
}

.btn-refuse:hover {
  background-color: #ffffff;
  color: #1A1229;
}

.cookie-continue {
  position: absolute;
  bottom: -35px;
  left: 0;
  font-size: 12px;
  color: #cccccc;
  text-decoration: underline;
  transition: color 0.3s ease;
}

.cookie-continue:hover {
  color: #ffffff;
}

@keyframes fadeInCookies {
  from {
    opacity: 0;
    transform: translate(-50%, -60%);
  }
  to {
    opacity: 1;
    transform: translate(-50%, -50%);
  }
}


body, html {
  background-color: #1A1229;
  margin: 0;
  padding: 0;
  scroll-behavior: smooth;
}
