
:root {
  --bg: #080506;
  --bg-soft: #130c10;
  --card: #1b1116;
  --gold: #c9a45c;
  --gold-light: #f0d58d;
  --text: #f8f3ea;
  --muted: #b9aa9c;
  --line: rgba(201, 164, 92, 0.24);
  --white-line: rgba(255,255,255,0.08);
  --shadow: 0 24px 70px rgba(0, 0, 0, 0.45);
}

* { box-sizing: border-box; }

html { scroll-behavior: smooth; }

body {
  margin: 0;
  font-family: Inter, ui-sans-serif, system-ui, -apple-system, BlinkMacSystemFont, "Segoe UI", sans-serif;
  color: var(--text);
  background:
    radial-gradient(circle at top left, rgba(201, 164, 92, 0.14), transparent 34rem),
    radial-gradient(circle at 80% 12%, rgba(107, 29, 42, 0.34), transparent 30rem),
    var(--bg);
  line-height: 1.6;
}

a { color: inherit; text-decoration: none; }

.age-banner {
  background: #050303;
  color: var(--muted);
  text-align: center;
  font-size: 0.85rem;
  padding: 0.65rem 1rem;
  border-bottom: 1px solid var(--line);
}

.site-header {
  position: sticky;
  top: 0;
  z-index: 50;
  backdrop-filter: blur(18px);
  background: rgba(8, 5, 6, 0.86);
  border-bottom: 1px solid var(--white-line);
}

.nav {
  max-width: 1220px;
  margin: auto;
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 0.75rem 1.2rem;
  gap: 1rem;
}

.brand {
  display: flex;
  align-items: center;
  gap: 0.8rem;
  min-width: 190px;
}

.brand img {
  width: 120px;
  height: 58px;
  object-fit: contain;
  object-position: left center;
  border-radius: 10px;
}

.nav-menu {
  display: flex;
  list-style: none;
  margin: 0;
  padding: 0;
  gap: 1rem;
  color: var(--muted);
  font-size: 0.92rem;
  align-items: center;
}

.nav-menu a {
  padding: 0.45rem 0.1rem;
  border-bottom: 1px solid transparent;
  white-space: nowrap;
}

.nav-menu a:hover,
.nav-menu a.active {
  color: var(--gold-light);
  border-bottom-color: var(--gold);
}

.menu-toggle {
  display: none;
  background: transparent;
  color: var(--text);
  border: 1px solid var(--white-line);
  border-radius: 999px;
  padding: 0.65rem 0.9rem;
  font-weight: 700;
}

.btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 0.5rem;
  padding: 0.85rem 1.2rem;
  border-radius: 999px;
  border: 1px solid var(--gold);
  background: linear-gradient(135deg, var(--gold), #7b5620);
  color: #120b06;
  font-weight: 800;
  box-shadow: 0 10px 28px rgba(201, 164, 92, 0.22);
  transition: transform 0.2s ease, box-shadow 0.2s ease;
  cursor: pointer;
}

.btn:hover { transform: translateY(-2px); box-shadow: 0 16px 38px rgba(201, 164, 92, 0.28); }

.btn.secondary {
  background: transparent;
  color: var(--gold-light);
  box-shadow: none;
}

.hero,
.page-hero {
  display: grid;
  place-items: center;
  position: relative;
  overflow: hidden;
  text-align: center;
  padding: 6rem 1.2rem;
}

.hero { min-height: 76vh; }

.page-hero { min-height: 46vh; }

.hero::before,
.page-hero::before {
  content: "";
  position: absolute;
  inset: 0;
  background:
    linear-gradient(rgba(8,5,6,0.25), rgba(8,5,6,0.9)),
    var(--hero-image, url("../images/backgrounds/global-sexy-background.webp")) center/cover;
  filter: saturate(0.65) brightness(0.72);
  z-index: -2;
}

.hero::after,
.page-hero::after {
  content: "";
  position: absolute;
  inset: 10%;
  border: 1px solid rgba(201, 164, 92, 0.18);
  border-radius: 32px;
  z-index: -1;
  pointer-events: none;
}

.hero-content {
  max-width: 930px;
  animation: fadeUp 0.8s ease both;
}

.hero-logo {
  width: min(420px, 82vw);
  margin: 0 auto 1.6rem;
  border-radius: 22px;
  box-shadow: 0 30px 90px rgba(0,0,0,0.55);
  border: 1px solid rgba(201,164,92,0.2);
}

.eyebrow {
  color: var(--gold-light);
  text-transform: uppercase;
  letter-spacing: 0.26em;
  font-size: 0.8rem;
  font-weight: 800;
  margin-bottom: 1rem;
}

h1, h2, h3 { line-height: 1.1; margin: 0; }

h1 {
  font-family: Georgia, "Times New Roman", serif;
  font-size: clamp(3rem, 8vw, 7rem);
  letter-spacing: -0.06em;
  margin-bottom: 1.2rem;
}

.hero p,
.page-hero p {
  color: #efe5d8;
  max-width: 760px;
  margin: 0 auto 2rem;
  font-size: clamp(1.05rem, 2vw, 1.28rem);
}

.hero-actions {
  display: flex;
  gap: 1rem;
  justify-content: center;
  flex-wrap: wrap;
}

section { padding: 5.2rem 1.2rem; }

.container {
  max-width: 1180px;
  margin: auto;
}

.section-head {
  display: flex;
  align-items: end;
  justify-content: space-between;
  gap: 2rem;
  margin-bottom: 2.2rem;
}

.section-head h2,
.page-title {
  font-family: Georgia, "Times New Roman", serif;
  font-size: clamp(2.1rem, 5vw, 4.2rem);
  letter-spacing: -0.04em;
}

.section-head p {
  color: var(--muted);
  max-width: 540px;
  margin: 0;
}

.grid-3,
.events,
.services,
.gallery-grid,
.hostess-grid,
.pricing-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 1.2rem;
}

.grid-2,
.contact-grid {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 1.4rem;
}

.card,
.event-card,
.service-card,
.info-card,
.faq-item,
.price-card,
.hostess-card {
  background: linear-gradient(180deg, rgba(255,255,255,0.045), rgba(255,255,255,0.018));
  border: 1px solid var(--white-line);
  border-radius: 26px;
  box-shadow: var(--shadow);
}

.card,
.service-card,
.price-card,
.faq-item,
.info-card { padding: 1.7rem; }

.card p,
.event-card p,
.service-card p,
.price-card p,
.faq-item p,
.hostess-card p {
  color: var(--muted);
  margin-bottom: 0;
}

.event-card {
  padding: 1.5rem;
  min-height: 250px;
  display: flex;
  flex-direction: column;
  justify-content: space-between;
  position: relative;
  overflow: hidden;
}

.event-card::before {
  content: "";
  position: absolute;
  right: -60px;
  top: -60px;
  width: 180px;
  height: 180px;
  background: radial-gradient(circle, rgba(201,164,92,0.28), transparent 68%);
}

.event-card .day {
  color: var(--gold-light);
  text-transform: uppercase;
  letter-spacing: 0.18em;
  font-size: 0.8rem;
  font-weight: 800;
}

.event-card h3,
.service-card h3,
.price-card h3 {
  font-size: 1.4rem;
  margin: 0.7rem 0 0.75rem;
}

.icon {
  width: 54px;
  height: 54px;
  border-radius: 18px;
  background: rgba(201, 164, 92, 0.12);
  border: 1px solid var(--line);
  display: grid;
  place-items: center;
  color: var(--gold-light);
  font-size: 1.35rem;
  margin-bottom: 1.1rem;
}

.hostess-card {
  overflow: hidden;
}

.hostess-photo {
  min-height: 360px;
  background:
    linear-gradient(rgba(8,5,6,0.05), rgba(8,5,6,0.58)),
    var(--photo) center/cover;
}

.hostess-content {
  padding: 1.35rem;
}

.hostess-content h3 {
  font-family: Georgia, "Times New Roman", serif;
  font-size: 2rem;
  color: var(--gold-light);
  margin-bottom: 0.35rem;
}

.badges {
  display: flex;
  gap: 0.5rem;
  flex-wrap: wrap;
  margin: 0.9rem 0 0;
}

.badge {
  color: var(--gold-light);
  border: 1px solid var(--line);
  background: rgba(201,164,92,0.08);
  border-radius: 999px;
  padding: 0.35rem 0.75rem;
  font-size: 0.85rem;
}

.band {
  background:
    radial-gradient(circle at 18% 18%, rgba(255,79,145,0.16), transparent 24rem),
    radial-gradient(circle at 80% 40%, rgba(240,213,141,0.12), transparent 20rem),
    linear-gradient(90deg, rgba(15,6,9,0.96), rgba(45,8,20,0.88)),
    url("../images/backgrounds/global-sexy-background.webp") center/cover
  border-top: 1px solid var(--line);
  border-bottom: 1px solid var(--line);
}

.band-inner {
  display: grid;
  grid-template-columns: 1.1fr 0.9fr;
  gap: 2rem;
  align-items: center;
}

.band h2 {
  font-family: Georgia, "Times New Roman", serif;
  font-size: clamp(2.2rem, 5vw, 4.5rem);
  letter-spacing: -0.05em;
  margin-bottom: 1rem;
}

.band p { color: var(--muted); max-width: 620px; }

.info-row {
  display: flex;
  justify-content: space-between;
  gap: 1rem;
  padding: 0.75rem 0;
  border-bottom: 1px solid rgba(255,255,255,0.08);
  color: var(--muted);
}

.info-row:last-child { border-bottom: 0; }
.info-row strong { color: var(--text); text-align: right; }

.gallery-grid div,
.gallery-large div {
  min-height: 270px;
  border-radius: 28px;
  background-size: cover;
  background-position: center;
  border: 1px solid var(--white-line);
  box-shadow: var(--shadow);
  filter: saturate(0.78) contrast(1.08);
}

.gallery-large {
  display: grid;
  grid-template-columns: 1.2fr 0.8fr;
  gap: 1rem;
}

.gallery-large .wide { grid-column: span 2; min-height: 360px; }

.g1 { background-image: url("../images/backgrounds/global-sexy-background.webp"); }
.g2 { background-image: url("../images/backgrounds/global-sexy-background.webp"); }
.g3 { background-image: url("../images/backgrounds/global-sexy-background.webp"); }
.g4 { background-image: url("../images/backgrounds/global-sexy-background.webp"); }
.g5 { background-image: url("../images/backgrounds/global-sexy-background.webp"); }

form {
  background: var(--card);
  border: 1px solid var(--white-line);
  border-radius: 28px;
  padding: 1.5rem;
  box-shadow: var(--shadow);
}

.field { display: grid; gap: 0.45rem; margin-bottom: 1rem; }

label { color: var(--muted); font-size: 0.92rem; }

input,
textarea,
select {
  width: 100%;
  background: rgba(255,255,255,0.045);
  border: 1px solid rgba(255,255,255,0.1);
  color: var(--text);
  border-radius: 16px;
  padding: 0.95rem 1rem;
  font: inherit;
  outline: none;
}

textarea { min-height: 140px; resize: vertical; }

input:focus,
textarea:focus,
select:focus {
  border-color: var(--gold);
  box-shadow: 0 0 0 4px rgba(201,164,92,0.1);
}

footer {
  padding: 2.5rem 1.2rem;
  border-top: 1px solid var(--white-line);
  color: var(--muted);
  background: #050303;
}

.footer-inner {
  max-width: 1180px;
  margin: auto;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 1rem;
  flex-wrap: wrap;
}

.footer-links {
  display: flex;
  gap: 1rem;
  flex-wrap: wrap;
}

@keyframes fadeUp {
  from { opacity: 0; transform: translateY(22px); }
  to { opacity: 1; transform: translateY(0); }
}

@media (max-width: 1060px) {
  .menu-toggle { display: inline-flex; }
  .nav { flex-wrap: wrap; }
  .nav-menu {
    display: none;
    width: 100%;
    flex-direction: column;
    align-items: flex-start;
    padding: 1rem 0 0;
  }
  .nav-menu.open { display: flex; }
  .grid-3, .events, .services, .gallery-grid, .hostess-grid, .pricing-grid,
  .grid-2, .contact-grid, .band-inner { grid-template-columns: 1fr; }
  .gallery-large { grid-template-columns: 1fr; }
  .gallery-large .wide { grid-column: auto; }
  .section-head { display: block; }
  .section-head p { margin-top: 1rem; }
}


.hostess-card-link {
  display: block;
  height: 100%;
}

.hostess-card {
  transition: transform 0.22s ease, border-color 0.22s ease, box-shadow 0.22s ease;
}

.hostess-card-link:hover .hostess-card {
  transform: translateY(-6px);
  border-color: var(--gold);
  box-shadow: 0 30px 90px rgba(0, 0, 0, 0.62);
}

.hostess-cta {
  margin-top: 1rem;
  color: var(--gold-light);
  font-weight: 800;
}

.profile-layout {
  display: grid;
  grid-template-columns: 0.92fr 1.08fr;
  gap: 1.4rem;
  align-items: start;
}

.profile-main-photo {
  min-height: 640px;
  border-radius: 30px;
  background:
    linear-gradient(rgba(8,5,6,0.05), rgba(8,5,6,0.48)),
    var(--photo) center/cover;
  border: 1px solid var(--white-line);
  box-shadow: var(--shadow);
}

.profile-panel {
  padding: 2rem;
}

.profile-panel h2 {
  font-family: Georgia, "Times New Roman", serif;
  font-size: clamp(2.4rem, 5vw, 4.8rem);
  letter-spacing: -0.05em;
  color: var(--gold-light);
  margin-bottom: 0.8rem;
}

.profile-panel p {
  color: var(--muted);
}

.profile-info {
  margin-top: 1.4rem;
}

.profile-gallery {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 1rem;
  margin-top: 1.5rem;
}

.profile-gallery div {
  min-height: 300px;
  border-radius: 24px;
  background:
    linear-gradient(rgba(8,5,6,0.02), rgba(8,5,6,0.28)),
    var(--photo) center/cover;
  border: 1px solid var(--white-line);
  box-shadow: var(--shadow);
}

.service-note {
  margin-top: 1rem;
  padding: 1rem;
  border-radius: 20px;
  border: 1px solid var(--line);
  background: rgba(201, 164, 92, 0.08);
  color: var(--muted);
}

@media (max-width: 1060px) {
  .profile-layout,
  .profile-gallery {
    grid-template-columns: 1fr;
  }

  .profile-main-photo {
    min-height: 480px;
  }
}


/* V4 - Ambiance plus bling bling / VIP */
body {
  background:
    radial-gradient(circle at 10% 0%, rgba(255, 217, 112, 0.22), transparent 30rem),
    radial-gradient(circle at 88% 8%, rgba(180, 35, 95, 0.36), transparent 28rem),
    radial-gradient(circle at 50% 100%, rgba(201, 164, 92, 0.16), transparent 34rem),
    linear-gradient(135deg, #050303 0%, #13070d 48%, #060304 100%);
}

.site-header {
  background: rgba(6, 3, 4, 0.9);
  box-shadow: 0 14px 50px rgba(0,0,0,0.42), 0 0 38px rgba(201,164,92,0.12);
}

.age-banner {
  background: linear-gradient(90deg, #050303, #1d1114, #050303);
  color: var(--gold-light);
  letter-spacing: 0.08em;
}

.brand img {
  filter: drop-shadow(0 0 16px rgba(240,213,141,0.35));
}

.nav-menu a.active,
.nav-menu a:hover {
  text-shadow: 0 0 16px rgba(240,213,141,0.45);
}

.btn {
  position: relative;
  overflow: hidden;
  background:
    linear-gradient(135deg, #fff1a8 0%, #c9a45c 34%, #8a5b1e 68%, #f0d58d 100%);
  border-color: rgba(255, 238, 165, 0.95);
  box-shadow:
    0 12px 30px rgba(201, 164, 92, 0.32),
    inset 0 1px 0 rgba(255,255,255,0.5),
    0 0 24px rgba(240,213,141,0.22);
}

.btn::before {
  content: "";
  position: absolute;
  top: 0;
  left: -80%;
  width: 45%;
  height: 100%;
  background: linear-gradient(120deg, transparent, rgba(255,255,255,0.62), transparent);
  transform: skewX(-18deg);
  transition: left 0.6s ease;
}

.btn:hover::before {
  left: 130%;
}

.btn.secondary {
  background:
    linear-gradient(135deg, rgba(255,255,255,0.08), rgba(201,164,92,0.12));
  color: var(--gold-light);
  border-color: rgba(240,213,141,0.65);
  box-shadow: 0 0 26px rgba(201,164,92,0.12);
}

.hero::before,
.page-hero::before {
  filter: saturate(0.85) brightness(0.62) contrast(1.12);
}

.hero::after,
.page-hero::after {
  border: 1px solid rgba(240,213,141,0.34);
  box-shadow:
    inset 0 0 70px rgba(201,164,92,0.08),
    0 0 80px rgba(201,164,92,0.12);
}

h1 {
  background: linear-gradient(180deg, #fff7c6 0%, #f0d58d 28%, #c9a45c 60%, #7b5620 100%);
  -webkit-background-clip: text;
  background-clip: text;
  color: transparent;
  text-shadow: 0 12px 50px rgba(201,164,92,0.2);
}

.section-head h2,
.page-title,
.band h2,
.profile-panel h2,
.hostess-content h3 {
  background: linear-gradient(180deg, #fff2ad, #c9a45c 65%, #8a5b1e);
  -webkit-background-clip: text;
  background-clip: text;
  color: transparent;
}

.card,
.event-card,
.service-card,
.info-card,
.faq-item,
.price-card,
.hostess-card,
form {
  background:
    linear-gradient(145deg, rgba(255,255,255,0.07), rgba(255,255,255,0.018) 42%, rgba(201,164,92,0.055)),
    radial-gradient(circle at top right, rgba(240,213,141,0.13), transparent 12rem);
  border: 1px solid rgba(240,213,141,0.22);
  box-shadow:
    0 26px 80px rgba(0,0,0,0.52),
    0 0 32px rgba(201,164,92,0.08),
    inset 0 1px 0 rgba(255,255,255,0.06);
}

.card:hover,
.service-card:hover,
.event-card:hover,
.faq-item:hover,
.price-card:hover {
  border-color: rgba(240,213,141,0.52);
  box-shadow:
    0 30px 90px rgba(0,0,0,0.62),
    0 0 40px rgba(201,164,92,0.18);
  transform: translateY(-3px);
  transition: all 0.22s ease;
}

.icon {
  background:
    radial-gradient(circle, rgba(255,241,168,0.2), rgba(201,164,92,0.08));
  border-color: rgba(240,213,141,0.45);
  box-shadow: 0 0 26px rgba(201,164,92,0.2);
}

.badge {
  background: linear-gradient(135deg, rgba(240,213,141,0.17), rgba(201,164,92,0.06));
  border-color: rgba(240,213,141,0.42);
  box-shadow: inset 0 1px 0 rgba(255,255,255,0.08);
}

.info-row strong {
  color: var(--gold-light);
  text-shadow: 0 0 14px rgba(240,213,141,0.18);
}

.band {
  background:
    radial-gradient(circle at 18% 18%, rgba(255,79,145,0.16), transparent 24rem),
    radial-gradient(circle at 80% 40%, rgba(240,213,141,0.12), transparent 20rem),
    linear-gradient(90deg, rgba(15,6,9,0.96), rgba(45,8,20,0.88)),
    url("../images/backgrounds/global-sexy-background.webp") center/cover
  box-shadow: inset 0 0 90px rgba(201,164,92,0.08);
}

.gallery-grid div,
.gallery-large div,
.profile-gallery div,
.profile-main-photo,
.hostess-photo {
  border-color: rgba(240,213,141,0.25);
  box-shadow:
    0 28px 90px rgba(0,0,0,0.52),
    0 0 30px rgba(201,164,92,0.09);
}

input,
textarea,
select {
  background: rgba(255,255,255,0.06);
  border-color: rgba(240,213,141,0.22);
}

input:focus,
textarea:focus,
select:focus {
  border-color: rgba(240,213,141,0.8);
  box-shadow: 0 0 0 4px rgba(201,164,92,0.14), 0 0 22px rgba(201,164,92,0.14);
}

footer {
  background:
    linear-gradient(90deg, #050303, #160c10, #050303);
  box-shadow: inset 0 1px 0 rgba(240,213,141,0.14);
}


/* V6 - Lumière d'ambiance contrôlée par la position horizontale du curseur */
.cursor-light {
  position: fixed;
  left: 50%;
  top: 42%;
  width: 760px;
  height: 760px;
  border-radius: 50%;
  pointer-events: none;
  z-index: 3;
  opacity: 0;
  transform: translate3d(-50%, -50%, 0);
  background:
    radial-gradient(circle,
      rgba(255, 241, 168, 0.24) 0%,
      rgba(201, 164, 92, 0.16) 22%,
      rgba(190, 35, 105, 0.10) 44%,
      rgba(255, 255, 255, 0.025) 60%,
      transparent 74%);
  mix-blend-mode: screen;
  filter: blur(10px);
  transition: opacity 0.35s ease;
}

.cursor-spark {
  position: fixed;
  left: 50%;
  top: 36%;
  width: 260px;
  height: 260px;
  border-radius: 50%;
  pointer-events: none;
  z-index: 4;
  opacity: 0;
  transform: translate3d(-50%, -50%, 0);
  background:
    radial-gradient(circle,
      rgba(255, 255, 255, 0.30) 0%,
      rgba(255, 241, 168, 0.18) 24%,
      rgba(201, 164, 92, 0.08) 50%,
      transparent 72%);
  mix-blend-mode: screen;
  filter: blur(6px);
  transition: opacity 0.35s ease;
}

body.cursor-active .cursor-light,
body.cursor-active .cursor-spark {
  opacity: 1;
}

.site-header,
main,
footer {
  position: relative;
  z-index: 5;
}

@media (hover: none), (pointer: coarse) {
  .cursor-light,
  .cursor-spark {
    display: none;
  }
}


/* V7 - Ambiance plus sexy / bar érotique */
:root {
  --red-glow: rgba(180, 20, 58, 0.34);
  --pink-glow: rgba(255, 70, 145, 0.22);
}

.hero::before,
.page-hero::before {
  filter: saturate(1.05) brightness(0.50) contrast(1.18);
}

.hero::before {
  background:
    radial-gradient(circle at 50% 24%, rgba(255, 200, 110, 0.16), transparent 18rem),
    linear-gradient(rgba(8,5,6,0.22), rgba(8,5,6,0.92)),
    var(--hero-image, url("../images/backgrounds/global-sexy-background.webp")) center/cover;
}

.page-hero::before {
  background:
    radial-gradient(circle at 50% 24%, rgba(255, 60, 128, 0.14), transparent 20rem),
    linear-gradient(rgba(8,5,6,0.24), rgba(8,5,6,0.9)),
    var(--hero-image, url("../images/backgrounds/global-sexy-background.webp")) center/cover;
}

.hero-content::before {
  content: "";
  display: block;
  width: 120px;
  height: 2px;
  margin: 0 auto 1.2rem;
  background: linear-gradient(90deg, transparent, #f0d58d, #ff4f91, #f0d58d, transparent);
  box-shadow: 0 0 22px rgba(255, 79, 145, 0.45);
}

.card,
.event-card,
.service-card,
.info-card,
.faq-item,
.price-card,
.hostess-card,
form {
  background:
    linear-gradient(145deg, rgba(255,255,255,0.07), rgba(255,255,255,0.018) 40%, rgba(180,20,58,0.08)),
    radial-gradient(circle at top right, rgba(255,70,145,0.15), transparent 12rem),
    radial-gradient(circle at bottom left, rgba(240,213,141,0.10), transparent 10rem);
}

.hostess-photo,
.profile-main-photo,
.profile-gallery div,
.gallery-grid div,
.gallery-large div {
  filter: saturate(1.08) contrast(1.12) brightness(0.92);
  position: relative;
}

.hostess-card {
  border-color: rgba(255, 79, 145, 0.20);
}

.hostess-card-link:hover .hostess-card {
  border-color: rgba(255, 79, 145, 0.62);
  box-shadow:
    0 30px 90px rgba(0, 0, 0, 0.62),
    0 0 46px rgba(255, 79, 145, 0.18);
}

.badge {
  border-color: rgba(255, 79, 145, 0.32);
  background: linear-gradient(135deg, rgba(255,79,145,0.12), rgba(201,164,92,0.08));
}

.band {
  background:
    radial-gradient(circle at 18% 18%, rgba(255,79,145,0.16), transparent 24rem),
    radial-gradient(circle at 80% 40%, rgba(240,213,141,0.12), transparent 20rem),
    linear-gradient(90deg, rgba(15,6,9,0.96), rgba(45,8,20,0.88)),
    url("../images/backgrounds/global-sexy-background.webp") center/cover
}

.cursor-light {
  background:
    radial-gradient(circle,
      rgba(255, 241, 168, 0.20) 0%,
      rgba(255, 79, 145, 0.16) 26%,
      rgba(180, 20, 58, 0.11) 46%,
      rgba(255, 255, 255, 0.02) 60%,
      transparent 74%);
}

.cursor-spark {
  background:
    radial-gradient(circle,
      rgba(255, 255, 255, 0.28) 0%,
      rgba(255, 79, 145, 0.20) 26%,
      rgba(240, 213, 141, 0.10) 50%,
      transparent 72%);
}


/* V8 - Protection anti-copie images */
body {
  -webkit-user-select: none;
  user-select: none;
  -webkit-touch-callout: none;
}

input,
textarea,
select,
button {
  -webkit-user-select: auto;
  user-select: auto;
}

/* Protection visuelle des blocs images */
.hero,
.page-hero,
.hostess-photo,
.profile-main-photo,
.profile-gallery div,
.gallery-grid div,
.gallery-large div {
  position: relative;
  overflow: hidden;
}

/* Overlay invisible pour éviter le clic direct / drag sur les visuels */
.hero::selection,
.page-hero::selection {
  background: transparent;
}

.image-shield,
.hero .image-shield,
.page-hero .image-shield {
  position: absolute;
  inset: 0;
  z-index: 8;
  background: transparent;
  pointer-events: auto;
}

/* Watermark discret mais visible */
.hostess-photo::after,
.profile-main-photo::after,
.profile-gallery div::after,
.gallery-grid div::after,
.gallery-large div::after,
.hero::selection,
.page-hero::selection {
  content: "";
}

.hostess-photo::before,
.profile-main-photo::before,
.profile-gallery div::before,
.gallery-grid div::before,
.gallery-large div::before {
  content: "WHISPER CLUB";
  position: absolute;
  right: 1rem;
  bottom: 1rem;
  z-index: 7;
  color: rgba(255, 241, 168, 0.72);
  border: 1px solid rgba(255, 241, 168, 0.24);
  background: rgba(8, 5, 6, 0.42);
  backdrop-filter: blur(8px);
  border-radius: 999px;
  padding: 0.35rem 0.7rem;
  font-size: 0.68rem;
  letter-spacing: 0.16em;
  font-weight: 800;
  text-shadow: 0 0 12px rgba(0,0,0,0.6);
  pointer-events: none;
}

/* Motif anti-réutilisation subtil sur les galeries */
.hostess-photo::after,
.profile-main-photo::after,
.profile-gallery div::after,
.gallery-grid div::after,
.gallery-large div::after {
  content: "";
  position: absolute;
  inset: 0;
  z-index: 6;
  pointer-events: none;
  background:
    repeating-linear-gradient(
      -22deg,
      rgba(255, 241, 168, 0.022) 0,
      rgba(255, 241, 168, 0.022) 1px,
      transparent 1px,
      transparent 18px
    );
  mix-blend-mode: screen;
}

.copy-warning {
  position: fixed;
  left: 50%;
  bottom: 1.4rem;
  z-index: 9999;
  transform: translate(-50%, 18px);
  opacity: 0;
  pointer-events: none;
  max-width: min(92vw, 520px);
  padding: 0.9rem 1.1rem;
  border-radius: 999px;
  border: 1px solid rgba(255, 241, 168, 0.45);
  background:
    linear-gradient(135deg, rgba(8,5,6,0.92), rgba(42,8,20,0.92));
  color: var(--gold-light);
  box-shadow:
    0 18px 50px rgba(0,0,0,0.48),
    0 0 26px rgba(255,79,145,0.14);
  font-size: 0.92rem;
  text-align: center;
  transition: opacity 0.25s ease, transform 0.25s ease;
}

.copy-warning.show {
  opacity: 1;
  transform: translate(-50%, 0);
}

.protected-note {
  margin-top: 1rem;
  color: var(--muted);
  font-size: 0.9rem;
}

@media print {
  body {
    display: none !important;
  }
}


/* V9 - Polices et ambiance plus glamour */
body {
  font-family: "Montserrat", "Helvetica Neue", Arial, sans-serif;
  letter-spacing: 0.01em;
}

h1,
h2,
h3,
.page-title,
.section-head h2,
.band h2,
.profile-panel h2,
.hostess-content h3 {
  font-family: "Cormorant Garamond", Georgia, "Times New Roman", serif !important;
  letter-spacing: -0.02em;
}

.eyebrow,
.nav-menu a,
.btn,
.badge,
.age-banner {
  font-family: "Montserrat", "Helvetica Neue", Arial, sans-serif;
  letter-spacing: 0.14em;
}

.hero::before {
  background:
    radial-gradient(circle at 50% 25%, rgba(255, 213, 141, 0.18), transparent 18rem),
    radial-gradient(circle at 20% 40%, rgba(255, 70, 145, 0.15), transparent 22rem),
    linear-gradient(rgba(8,5,6,0.28), rgba(8,5,6,0.92)),
    var(--hero-image, url("../images/backgrounds/global-sexy-background.webp")) center/cover;
  filter: saturate(1.06) brightness(0.46) contrast(1.16);
}

.page-hero::before {
  background:
    radial-gradient(circle at 50% 20%, rgba(255, 213, 141, 0.14), transparent 16rem),
    radial-gradient(circle at 75% 28%, rgba(255, 70, 145, 0.13), transparent 22rem),
    linear-gradient(rgba(8,5,6,0.30), rgba(8,5,6,0.90)),
    var(--hero-image, url("../images/backgrounds/global-sexy-background.webp")) center/cover;
  filter: saturate(1.02) brightness(0.50) contrast(1.14);
}

.hero p,
.page-hero p,
.card p,
.service-card p,
.event-card p,
.price-card p,
.faq-item p,
.profile-panel p {
  color: #eadfd4;
}

.hostess-photo,
.profile-main-photo,
.profile-gallery div,
.gallery-grid div,
.gallery-large div {
  filter: saturate(1.02) contrast(1.08) brightness(0.90);
}

.hero-content,
.page-hero .hero-content {
  max-width: 980px;
}

.brand img {
  width: 135px;
  height: 62px;
}

.btn {
  font-size: 0.92rem;
  letter-spacing: 0.10em;
  text-transform: uppercase;
}

.nav-menu a {
  font-size: 0.88rem;
  text-transform: uppercase;
}

.hostess-content h3 {
  font-size: 2.4rem;
}

.section-head p,
.protected-note,
.info-row,
label {
  font-family: "Montserrat", "Helvetica Neue", Arial, sans-serif;
}

.card,
.event-card,
.service-card,
.info-card,
.faq-item,
.price-card,
.hostess-card,
form {
  backdrop-filter: blur(10px);
}

.hero::after,
.page-hero::after {
  inset: 8%;
}


/* V10 - Fonds glamour sexy plus cohérents */
.hero::before,
.page-hero::before {
  background-position: center center;
  background-size: cover;
  background-repeat: no-repeat;
}

.hero::before {
  background:
    linear-gradient(90deg, rgba(6,3,4,0.72) 0%, rgba(6,3,4,0.54) 32%, rgba(6,3,4,0.66) 100%),
    radial-gradient(circle at 18% 24%, rgba(255, 79, 145, 0.14), transparent 18rem),
    radial-gradient(circle at 78% 18%, rgba(240, 213, 141, 0.12), transparent 16rem),
    var(--hero-image) center/cover no-repeat;
  filter: saturate(1.02) brightness(0.62) contrast(1.06);
}

.page-hero::before {
  background:
    linear-gradient(90deg, rgba(6,3,4,0.74) 0%, rgba(6,3,4,0.54) 34%, rgba(6,3,4,0.66) 100%),
    radial-gradient(circle at 15% 24%, rgba(255, 79, 145, 0.12), transparent 18rem),
    radial-gradient(circle at 82% 18%, rgba(240, 213, 141, 0.10), transparent 16rem),
    var(--hero-image) center/cover no-repeat;
  filter: saturate(1.03) brightness(0.64) contrast(1.06);
}

.hero-content,
.page-hero .hero-content {
  position: relative;
  z-index: 2;
  max-width: 840px;
}

.hero-content p,
.page-hero p {
  color: #f1e5dc;
  text-shadow: 0 4px 18px rgba(0,0,0,0.38);
}


/* V12 - fond utilisateur appliqué sur les pages */
.hero::before,
.page-hero::before {
  background-position: center center;
  background-size: cover;
  background-repeat: no-repeat;
  filter: saturate(1.02) brightness(0.72) contrast(1.05);
}

.hero::before {
  background:
    linear-gradient(90deg, rgba(6,3,4,0.60) 0%, rgba(6,3,4,0.38) 34%, rgba(6,3,4,0.54) 100%),
    radial-gradient(circle at 18% 22%, rgba(255,79,145,0.12), transparent 18rem),
    radial-gradient(circle at 82% 18%, rgba(240,213,141,0.10), transparent 16rem),
    var(--hero-image, url("../images/backgrounds/global-sexy-background.webp")) center/cover no-repeat;
}

.page-hero::before {
  background:
    linear-gradient(90deg, rgba(6,3,4,0.62) 0%, rgba(6,3,4,0.40) 34%, rgba(6,3,4,0.56) 100%),
    radial-gradient(circle at 18% 22%, rgba(255,79,145,0.10), transparent 18rem),
    radial-gradient(circle at 82% 18%, rgba(240,213,141,0.08), transparent 16rem),
    var(--hero-image, url("../images/backgrounds/global-sexy-background.webp")) center/cover no-repeat;
}

.band {
  background:
    radial-gradient(circle at 18% 18%, rgba(255,79,145,0.16), transparent 24rem),
    radial-gradient(circle at 80% 40%, rgba(240,213,141,0.12), transparent 20rem),
    linear-gradient(90deg, rgba(15,6,9,0.92), rgba(45,8,20,0.80)),
    url("../images/backgrounds/global-sexy-background.webp") center/cover;
}


/* V13 - Logo agrandi et ambiance érotic chic plus assumée */
.brand {
  min-width: 300px;
}

.brand img {
  width: 270px !important;
  height: 124px !important;
  max-width: 34vw;
  object-fit: contain;
  filter:
    drop-shadow(0 0 16px rgba(255, 241, 168, 0.40))
    drop-shadow(0 0 34px rgba(255, 79, 145, 0.18));
}

.nav {
  max-width: 1360px;
  padding: 0.35rem 1.2rem;
}

.nav-menu {
  gap: 0.82rem;
}

.nav-menu a {
  font-size: 0.82rem;
}

.site-header {
  background:
    linear-gradient(90deg, rgba(5,2,3,0.96), rgba(38,6,14,0.88), rgba(5,2,3,0.96));
  border-bottom: 1px solid rgba(240,213,141,0.22);
  box-shadow:
    0 20px 70px rgba(0,0,0,0.58),
    0 0 50px rgba(120,0,35,0.24);
}

body {
  background:
    radial-gradient(circle at 22% 0%, rgba(255,79,145,0.18), transparent 32rem),
    radial-gradient(circle at 86% 10%, rgba(240,213,141,0.16), transparent 26rem),
    linear-gradient(135deg, #050203 0%, #19050b 42%, #070203 100%);
}

.hero,
.page-hero {
  min-height: 64vh;
}

.hero::before,
.page-hero::before {
  filter: saturate(1.10) brightness(0.78) contrast(1.08);
}

.hero::before {
  background:
    linear-gradient(90deg, rgba(5,2,3,0.70) 0%, rgba(5,2,3,0.34) 42%, rgba(5,2,3,0.54) 100%),
    radial-gradient(circle at 18% 20%, rgba(255,79,145,0.16), transparent 18rem),
    radial-gradient(circle at 82% 18%, rgba(240,213,141,0.14), transparent 16rem),
    var(--hero-image, url("../images/backgrounds/global-sexy-background.webp")) center/cover no-repeat;
}

.page-hero::before {
  background:
    linear-gradient(90deg, rgba(5,2,3,0.72) 0%, rgba(5,2,3,0.38) 40%, rgba(5,2,3,0.58) 100%),
    radial-gradient(circle at 20% 22%, rgba(255,79,145,0.14), transparent 18rem),
    radial-gradient(circle at 82% 18%, rgba(240,213,141,0.10), transparent 16rem),
    var(--hero-image, url("../images/backgrounds/global-sexy-background.webp")) center/cover no-repeat;
}

.hero-content::before {
  height: 3px;
  width: 170px;
  background: linear-gradient(90deg, transparent, #ff4f91, #f0d58d, #ff4f91, transparent);
  box-shadow:
    0 0 22px rgba(255,79,145,0.55),
    0 0 34px rgba(240,213,141,0.28);
}

h1 {
  text-shadow:
    0 12px 50px rgba(0,0,0,0.5),
    0 0 34px rgba(255,79,145,0.16);
}

.card,
.event-card,
.service-card,
.info-card,
.faq-item,
.price-card,
.hostess-card,
form {
  border-color: rgba(240,213,141,0.30);
  background:
    linear-gradient(145deg, rgba(255,255,255,0.075), rgba(255,255,255,0.018) 38%, rgba(255,79,145,0.075)),
    radial-gradient(circle at top right, rgba(255,79,145,0.16), transparent 13rem),
    radial-gradient(circle at bottom left, rgba(240,213,141,0.12), transparent 10rem);
  box-shadow:
    0 30px 90px rgba(0,0,0,0.64),
    0 0 38px rgba(255,79,145,0.08),
    inset 0 1px 0 rgba(255,255,255,0.08);
}

.card:hover,
.service-card:hover,
.event-card:hover,
.faq-item:hover,
.price-card:hover {
  transform: translateY(-5px);
  border-color: rgba(255,79,145,0.55);
  box-shadow:
    0 34px 100px rgba(0,0,0,0.70),
    0 0 54px rgba(255,79,145,0.18),
    0 0 28px rgba(240,213,141,0.10);
}

.section-head h2,
.page-title,
.band h2,
.profile-panel h2,
.hostess-content h3 {
  text-shadow: 0 0 28px rgba(255,79,145,0.16);
}

.band {
  background:
    radial-gradient(circle at 18% 18%, rgba(255,79,145,0.20), transparent 24rem),
    radial-gradient(circle at 80% 40%, rgba(240,213,141,0.16), transparent 20rem),
    linear-gradient(90deg, rgba(15,6,9,0.92), rgba(45,8,20,0.82)),
    url("../images/backgrounds/global-sexy-background.webp") center/cover !important;
}

.btn {
  box-shadow:
    0 16px 38px rgba(201,164,92,0.32),
    0 0 24px rgba(255,79,145,0.18),
    inset 0 1px 0 rgba(255,255,255,0.54);
}

.admin-layout {
  display: grid;
  grid-template-columns: 1fr 0.95fr;
  gap: 1.4rem;
  align-items: start;
}

.admin-panel {
  padding: 1.7rem;
}

.admin-actions {
  display: flex;
  flex-wrap: wrap;
  gap: 0.8rem;
  margin-top: 1rem;
}

.admin-list {
  display: grid;
  gap: 1rem;
}

.admin-item {
  display: grid;
  grid-template-columns: 92px 1fr auto;
  gap: 1rem;
  align-items: center;
  padding: 1rem;
  border: 1px solid rgba(240,213,141,0.20);
  border-radius: 22px;
  background: rgba(255,255,255,0.035);
}

.admin-thumb {
  width: 92px;
  height: 92px;
  border-radius: 18px;
  background: var(--photo) center/cover;
  border: 1px solid rgba(240,213,141,0.24);
}

.admin-small {
  color: var(--muted);
  font-size: 0.88rem;
}

textarea.code-box {
  min-height: 180px;
  font-family: ui-monospace, SFMono-Regular, Menlo, Consolas, monospace;
  font-size: 0.82rem;
}

.dynamic-hostess-note {
  margin-top: 2rem;
  padding: 1rem;
  border: 1px solid rgba(240,213,141,0.22);
  border-radius: 20px;
  background: rgba(255,79,145,0.08);
  color: var(--muted);
}

@media (max-width: 1060px) {
  .brand {
    min-width: auto;
  }

  .brand img {
    width: 210px !important;
    height: 96px !important;
    max-width: 70vw;
  }

  .admin-layout {
    grid-template-columns: 1fr;
  }

  .admin-item {
    grid-template-columns: 74px 1fr;
  }

  .admin-item .admin-actions {
    grid-column: 1 / -1;
  }
}


/* V14 - Filles actuelles / présentation plus proche du modèle fourni */
.current-hostess-grid {
  display: grid;
  grid-template-columns: repeat(3, minmax(240px, 1fr));
  gap: 3.2rem 4rem;
  align-items: start;
}

.current-hostess-grid .hostess-card-link {
  text-align: center;
}

.current-hostess-grid .hostess-card {
  background: transparent;
  border: 0;
  box-shadow: none;
  border-radius: 0;
  overflow: visible;
}

.current-hostess-grid .hostess-photo {
  min-height: 420px;
  border-radius: 5px;
  background-size: cover;
  background-position: center top;
  box-shadow:
    0 24px 70px rgba(0,0,0,0.55),
    0 0 38px rgba(255,79,145,0.10);
  border: 1px solid rgba(240,213,141,0.14);
}

.current-hostess-grid .hostess-content {
  padding: 1.2rem 0 0;
}

.current-hostess-grid .hostess-content h3 {
  font-family: "Montserrat", "Helvetica Neue", Arial, sans-serif !important;
  font-size: 1.2rem;
  text-transform: uppercase;
  letter-spacing: 0.04em;
  color: #d0a515;
  background: none;
  -webkit-background-clip: initial;
  background-clip: initial;
  text-shadow: 0 0 16px rgba(208,165,21,0.18);
}

.current-hostess-grid .hostess-content p {
  margin-top: 1.2rem;
  color: #ffffff;
  font-size: 1.04rem;
  line-height: 1.45;
}

.current-hostess-grid .hostess-cta {
  color: var(--gold-light);
  opacity: 0.82;
}

.current-hostess-grid .hostess-photo::before,
.current-hostess-grid .hostess-photo::after {
  display: none;
}

.current-hostess-grid .image-shield {
  display: none;
}

.availability-title {
  text-align: center;
  font-family: "Montserrat", "Helvetica Neue", Arial, sans-serif !important;
  text-transform: uppercase;
  font-size: clamp(1.65rem, 4vw, 2.55rem);
  letter-spacing: 0.04em;
  margin-bottom: 3rem;
  color: #ffffff;
}

.availability-title span {
  color: #d0a515;
}

@media (max-width: 1060px) {
  .current-hostess-grid {
    grid-template-columns: 1fr;
    gap: 2.5rem;
  }

  .current-hostess-grid .hostess-photo {
    min-height: 480px;
    max-width: 420px;
    margin: 0 auto;
  }
}


/* V15 - correction zones trop grandes + vraies photos hôtesses */
.hero {
  min-height: 54vh !important;
}

.page-hero {
  min-height: 34vh !important;
  padding-top: 6.5rem !important;
  padding-bottom: 2.8rem !important;
}

.hero .hero-content,
.page-hero .hero-content {
  padding-top: 1.2rem;
  padding-bottom: 0.8rem;
}

.page-hero .hero-content h1 {
  margin-bottom: 0.6rem;
}

.page-hero .hero-content p {
  margin-bottom: 1.1rem;
}

.profile-layout {
  margin-top: 0.5rem;
}

.current-hostess-grid {
  display: grid;
  grid-template-columns: repeat(4, minmax(200px, 1fr));
  gap: 2.4rem;
  align-items: start;
}

.current-hostess-grid .hostess-card-link {
  text-align: center;
}

.current-hostess-grid .hostess-card {
  background: transparent;
  border: 0;
  box-shadow: none;
  border-radius: 0;
  overflow: visible;
}

.current-hostess-grid .hostess-photo {
  min-height: 420px;
  border-radius: 4px;
  background-size: cover;
  background-position: center top;
  box-shadow:
    0 24px 70px rgba(0,0,0,0.55),
    0 0 38px rgba(255,79,145,0.10);
  border: 1px solid rgba(240,213,141,0.14);
}

.current-hostess-grid .hostess-content {
  padding: 1.15rem 0 0;
}

.current-hostess-grid .hostess-content h3 {
  font-family: "Montserrat", "Helvetica Neue", Arial, sans-serif !important;
  font-size: 1.15rem;
  text-transform: uppercase;
  letter-spacing: 0.04em;
  color: #d0a515;
  background: none;
  -webkit-background-clip: initial;
  background-clip: initial;
  text-shadow: 0 0 16px rgba(208,165,21,0.18);
  margin-bottom: 0.6rem;
}

.current-hostess-grid .hostess-content p {
  color: #ffffff;
  font-size: 1rem;
  line-height: 1.45;
}

.current-hostess-grid .hostess-cta {
  color: var(--gold-light);
  opacity: 0.85;
  margin-top: 0.8rem;
}

.current-hostess-grid .hostess-photo::before,
.current-hostess-grid .hostess-photo::after,
.current-hostess-grid .image-shield {
  display: none;
}

.profile-main-photo,
.profile-gallery div {
  background-size: cover;
  background-position: center top;
}

.availability-title {
  text-align: center;
  font-family: "Montserrat", "Helvetica Neue", Arial, sans-serif !important;
  text-transform: uppercase;
  font-size: clamp(1.65rem, 4vw, 2.55rem);
  letter-spacing: 0.04em;
  margin-bottom: 3rem;
  color: #ffffff;
}

.availability-title span {
  color: #d0a515;
}

@media (max-width: 1200px) {
  .current-hostess-grid {
    grid-template-columns: repeat(2, minmax(220px, 1fr));
  }
}

@media (max-width: 720px) {
  .hero {
    min-height: 44vh !important;
  }

  .page-hero {
    min-height: 26vh !important;
    padding-top: 5.4rem !important;
    padding-bottom: 2rem !important;
  }

  .current-hostess-grid {
    grid-template-columns: 1fr;
    gap: 2.3rem;
  }

  .current-hostess-grid .hostess-photo {
    min-height: 470px;
    max-width: 360px;
    margin: 0 auto;
  }
}


/* V16 - utilisation de vraies balises img pour les photos */
.hostess-photo img,
.profile-main-photo img,
.profile-gallery div img {
  width: 100%;
  height: 100%;
  display: block;
  object-fit: cover;
  object-position: center top;
}

.current-hostess-grid .hostess-photo {
  min-height: auto !important;
  overflow: hidden;
}

.current-hostess-grid .hostess-photo img {
  aspect-ratio: 2 / 3;
}

.profile-main-photo {
  min-height: auto !important;
  overflow: hidden;
}

.profile-main-photo img {
  aspect-ratio: 3 / 4;
}

.profile-gallery div {
  min-height: auto !important;
  overflow: hidden;
}

.profile-gallery div img {
  aspect-ratio: 3 / 4;
}


/* V17 - Galerie avec vraies photos fournies */
.gallery-real-grid {
  display: grid;
  grid-template-columns: repeat(2, minmax(280px, 1fr));
  gap: 1.2rem;
}

.gallery-item {
  position: relative;
  overflow: hidden;
  border-radius: 28px;
  border: 1px solid var(--white-line);
  box-shadow: var(--shadow);
  background: rgba(255,255,255,0.03);
}

.gallery-item.wide {
  grid-column: 1 / -1;
}

.gallery-item img {
  width: 100%;
  height: 100%;
  min-height: 340px;
  max-height: 560px;
  display: block;
  object-fit: cover;
  object-position: center;
  filter: saturate(1.02) contrast(1.04);
}

.gallery-item.wide img {
  min-height: 420px;
}

.gallery-item::after {
  content: "";
  position: absolute;
  inset: 0;
  background: linear-gradient(to top, rgba(8,5,6,0.82) 0%, rgba(8,5,6,0.18) 42%, rgba(8,5,6,0.02) 100%);
  pointer-events: none;
}

.gallery-item figcaption {
  position: absolute;
  left: 0;
  right: 0;
  bottom: 0;
  z-index: 2;
  display: grid;
  gap: 0.25rem;
  padding: 1.1rem 1.15rem 1.15rem;
}

.gallery-item figcaption strong {
  color: var(--gold-light);
  font-size: 1.08rem;
  letter-spacing: 0.03em;
}

.gallery-item figcaption span {
  color: #f3e7df;
  font-size: 0.94rem;
}

@media (max-width: 820px) {
  .gallery-real-grid {
    grid-template-columns: 1fr;
  }

  .gallery-item.wide {
    grid-column: auto;
  }

  .gallery-item img,
  .gallery-item.wide img {
    min-height: 300px;
  }
}


/* V20 - Plan de la journée + boutons bas de profil */
.bottom-profile-actions {
  padding-top: 0;
  text-align: center;
}

.bottom-profile-actions .hero-actions {
  justify-content: center;
}

.daily-plan-grid {
  display: grid;
  grid-template-columns: repeat(4, minmax(190px, 1fr));
  gap: 1.4rem;
}

.daily-card {
  position: relative;
  overflow: hidden;
  border-radius: 28px;
  border: 1px solid rgba(240,213,141,0.24);
  background:
    linear-gradient(145deg, rgba(255,255,255,0.075), rgba(255,255,255,0.018) 38%, rgba(255,79,145,0.075)),
    radial-gradient(circle at top right, rgba(255,79,145,0.16), transparent 13rem);
  box-shadow: var(--shadow);
}

.daily-card img {
  width: 100%;
  aspect-ratio: 2 / 3;
  display: block;
  object-fit: cover;
  object-position: center top;
}

.daily-card-content {
  padding: 1.1rem;
  text-align: center;
}

.daily-card-content h3 {
  font-family: "Montserrat", "Helvetica Neue", Arial, sans-serif !important;
  text-transform: uppercase;
  font-size: 1.05rem;
  color: #d0a515;
  letter-spacing: 0.06em;
  margin-bottom: 0.55rem;
  background: none;
  -webkit-background-clip: initial;
  background-clip: initial;
}

.daily-card-content p {
  color: #ffffff;
  margin: 0.25rem 0;
}

.daily-status {
  display: inline-flex;
  align-items: center;
  gap: 0.4rem;
  margin-top: 0.7rem;
  padding: 0.35rem 0.75rem;
  border-radius: 999px;
  color: var(--gold-light);
  border: 1px solid rgba(240,213,141,0.32);
  background: rgba(255,79,145,0.10);
  font-size: 0.82rem;
  font-weight: 700;
}

.daily-info-box {
  margin-bottom: 2rem;
  text-align: center;
}

.daily-info-box p {
  color: var(--muted);
  max-width: 760px;
  margin: 0.6rem auto 0;
}

.schedule-table {
  margin-top: 3rem;
  overflow: hidden;
  border-radius: 28px;
  border: 1px solid rgba(240,213,141,0.22);
  box-shadow: var(--shadow);
}

.schedule-row {
  display: grid;
  grid-template-columns: 170px 1fr 1fr;
  gap: 1rem;
  padding: 1rem 1.2rem;
  border-bottom: 1px solid rgba(255,255,255,0.08);
  background: rgba(255,255,255,0.035);
}

.schedule-row:last-child {
  border-bottom: 0;
}

.schedule-row strong {
  color: var(--gold-light);
}

.schedule-row span {
  color: #f3e7df;
}

@media (max-width: 1100px) {
  .daily-plan-grid {
    grid-template-columns: repeat(2, minmax(220px, 1fr));
  }
}

@media (max-width: 720px) {
  .daily-plan-grid {
    grid-template-columns: 1fr;
  }

  .daily-card {
    max-width: 360px;
    margin: 0 auto;
  }

  .schedule-row {
    grid-template-columns: 1fr;
  }
}

/* V21 - Correction formulaire contact : menu déroulant lisible */
.contact-grid form input,
.contact-grid form textarea,
.contact-grid form select {
  background-color: #ffffff !important;
  color: #1a1a1a !important;
  border-color: rgba(240, 213, 141, 0.55) !important;
}

.contact-grid form input::placeholder,
.contact-grid form textarea::placeholder {
  color: #777777 !important;
}

.contact-grid form select {
  appearance: auto;
  -webkit-appearance: menulist;
  -moz-appearance: menulist;
  cursor: pointer;
}

.contact-grid form select option,
.contact-grid form select optgroup {
  background-color: #ffffff !important;
  color: #1a1a1a !important;
}

.contact-grid form input:focus,
.contact-grid form textarea:focus,
.contact-grid form select:focus {
  background-color: #ffffff !important;
  color: #1a1a1a !important;
  border-color: var(--gold) !important;
  box-shadow: 0 0 0 4px rgba(201, 164, 92, 0.22) !important;
}

/* Protection page administration */
.admin-login-screen {
  min-height: calc(100vh - 160px);
  display: flex;
  align-items: center;
  justify-content: center;
  padding: 4rem 1.25rem;
  background: radial-gradient(circle at top, rgba(201, 164, 92, 0.18), rgba(15, 15, 15, 0.96) 45%, #080808 100%);
}

.admin-login-card {
  width: min(100%, 460px);
  padding: 2.2rem;
  border: 1px solid rgba(201, 164, 92, 0.35);
  border-radius: 24px;
  background: rgba(15, 15, 15, 0.92);
  box-shadow: 0 25px 80px rgba(0, 0, 0, 0.55);
}

.admin-login-card h1 {
  margin: 0.35rem 0 0.75rem;
  color: #f3d27a;
}

.admin-login-card p {
  color: rgba(255, 255, 255, 0.82);
}

.admin-login-form {
  margin-top: 1.35rem;
}

.admin-login-form label {
  display: block;
  margin-bottom: 0.45rem;
  font-weight: 700;
  color: #ffffff;
}

.admin-login-form input {
  width: 100%;
  padding: 0.95rem 1rem;
  border-radius: 14px;
  border: 1px solid rgba(201, 164, 92, 0.55);
  background: #ffffff !important;
  color: #111111 !important;
  font-size: 1rem;
  box-sizing: border-box;
}

.admin-login-form input:focus {
  outline: none;
  border-color: #f3d27a;
  box-shadow: 0 0 0 3px rgba(201, 164, 92, 0.25);
}

.admin-login-error {
  min-height: 1.4rem;
  margin: 0.65rem 0 1rem;
  color: #ffb3b3 !important;
  font-weight: 700;
}

#adminLogout {
  margin-top: 1.25rem;
}

[hidden] {
  display: none !important;
}
