/* ==========================================================================
   Suprême Luxury Hotel — Styles personnalisés
   ========================================================================== */

/* --- Variables CSS --- */
:root {
  --supreme-gold: #ceaa60;
  --supreme-gold-dark: #b5944d;
  --supreme-black: #0a0a0a;
  --supreme-white: #fafafa;
  --supreme-beige: #f5f2ec;
  --supreme-dark-gray: #1a1a1a;
}

/* --- Base --- */
body {
  background-color: var(--supreme-white);
  color: var(--supreme-dark-gray);
  font-family: "Inter", sans-serif;
}

::selection {
  background-color: var(--supreme-gold);
  color: #fff;
}

/* --- Swiper Overrides --- */
.swiper-button-next,
.swiper-button-prev {
  color: #fafafa !important;
  transition: all 0.3s ease;
  width: 50px !important;
  height: 50px !important;
  border: 1px solid rgba(255, 255, 255, 0.3);
  border-radius: 50%;
  background: rgba(0, 0, 0, 0.2);
  backdrop-filter: blur(4px);
}

.swiper-button-next:hover,
.swiper-button-prev:hover {
  background: var(--supreme-gold);
  border-color: var(--supreme-gold);
  transform: scale(1.1);
}

.swiper-button-next::after,
.swiper-button-prev::after {
  font-size: 18px !important;
}

.swiper-pagination-bullet {
  background: white !important;
  opacity: 0.5;
  transition: all 0.3s ease;
}

.swiper-pagination-bullet-active {
  background: var(--supreme-gold) !important;
  opacity: 1;
  transform: scale(1.3);
}

/* --- Animations --- */
.fade-in-up {
  animation: fadeInUp 1s ease-out forwards;
  opacity: 0;
  transform: translateY(30px);
}

.delay-1 {
  animation-delay: 0.2s;
}
.delay-2 {
  animation-delay: 0.4s;
}
.delay-3 {
  animation-delay: 0.6s;
}

@keyframes fadeInUp {
  to {
    opacity: 1;
    transform: translateY(0);
  }
}

/* --- Hover zoom images --- */
.img-hover-zoom {
  overflow: hidden;
}

.img-hover-zoom img {
  transition: transform 0.6s ease;
}

.img-hover-zoom:hover img {
  transform: scale(1.05);
}

/* --- Navigation links underline dorée --- */
.nav-link {
  position: relative;
}

.nav-link::after {
  content: "";
  position: absolute;
  width: 0;
  height: 1px;
  bottom: -4px;
  left: 50%;
  background-color: var(--supreme-gold);
  transition: all 0.3s ease;
  transform: translateX(-50%);
}

.nav-link:hover::after {
  width: 100%;
}

/* --- Bouton Primary --- */
.btn-primary {
  background-color: var(--supreme-gold);
  color: #fff;
  transition: all 0.3s ease;
  position: relative;
  overflow: hidden;
  z-index: 1;
  display: inline-block;
  text-decoration: none;
}

.btn-primary::before {
  content: "";
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  background: var(--supreme-gold-dark);
  z-index: -1;
  transform: scaleX(0);
  transform-origin: right;
  transition: transform 0.4s ease-in-out;
}

.btn-primary:hover::before {
  transform: scaleX(1);
  transform-origin: left;
}

/* --- Bouton Outline --- */
.btn-outline {
  border: 1px solid var(--supreme-gold);
  color: var(--supreme-gold);
  transition: all 0.3s ease;
  display: inline-block;
  text-decoration: none;
}

.btn-outline:hover {
  background-color: var(--supreme-gold);
  color: #fff;
}

/* --- Parallax --- */
.bg-fixed-parallax {
  background-attachment: fixed;
  background-position: center;
  background-repeat: no-repeat;
  background-size: cover;
}

/* --- Aurora text effect --- */
.aurora-text {
  background: linear-gradient(
    90deg,
    #ffffff 0%,
    #ceaa60 30%,
    #f0d080 60%,
    #ceaa60 80%,
    #ffffff 100%
  );
  background-size: 200% auto;
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
  animation: aurora 4s ease-in-out infinite;
}

@keyframes aurora {
  0%,
  100% {
    background-position: 0% 50%;
  }
  50% {
    background-position: 100% 50%;
  }
}

/* --- Mode maintenance --- */
.maintenance-page {
  min-height: 100vh;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  background-color: var(--supreme-black);
  color: var(--supreme-white);
  text-align: center;
  padding: 2rem;
}

.maintenance-page h1 {
  font-family: "Great Vibes", cursive;
  font-size: 4rem;
  color: var(--supreme-gold);
  margin-bottom: 1rem;
}

.maintenance-page p {
  font-family: "Cormorant Garamond", serif;
  font-size: 1.25rem;
  color: rgba(255, 255, 255, 0.7);
}

/* --- Contact Form --- */
.supreme-contact-form input,
.supreme-contact-form textarea,
.supreme-contact-form select {
  width: 100%;
  padding: 0.75rem 1rem;
  border: 1px solid #e5e5e5;
  background: #fff;
  font-family: "Inter", sans-serif;
  font-size: 0.875rem;
  transition: border-color 0.3s ease;
}

.supreme-contact-form input:focus,
.supreme-contact-form textarea:focus,
.supreme-contact-form select:focus {
  outline: none;
  border-color: var(--supreme-gold);
  box-shadow: 0 0 0 2px rgba(206, 170, 96, 0.1);
}

.supreme-contact-form label {
  font-family: "Cormorant Garamond", serif;
  font-size: 0.875rem;
  text-transform: uppercase;
  letter-spacing: 0.1em;
  color: #666;
  margin-bottom: 0.5rem;
  display: block;
}

/* --- Page header banner --- */
.page-hero {
  background-color: var(--supreme-black);
  padding: 8rem 1rem 4rem;
  text-align: center;
}

.page-hero h1 {
  font-family: "Great Vibes", cursive;
  font-size: 3rem;
  color: #fff;
}

.page-hero .subtitle {
  font-family: "Cormorant Garamond", serif;
  color: var(--supreme-gold);
  text-transform: uppercase;
  letter-spacing: 0.3em;
  font-size: 0.875rem;
  margin-bottom: 1rem;
}

.page-hero .divider {
  width: 4rem;
  height: 1px;
  background: var(--supreme-gold);
  margin: 1.5rem auto 0;
}

/* ── Logo — force override WooCommerce img rules ── */
.site-logo {
  height: 5rem !important;
  max-width: none !important;
  width: auto !important;
  object-fit: contain;
}
