/* ========== ROOT & GLOBAL ========== */

:root {
  --st-black: #000000;
  --st-black-soft: #0c0c0c;

  --st-gold-dark: #8e6b0f;
  --st-gold-mid: #d4af37;
  --st-gold-light: #f5e28c;
  --st-gold-text: #d8b24a;

  --st-text-main: #f5f5f5;
  --st-text-muted: #cccccc;

  --st-radius-card: 24px;

  --st-shadow-gold-soft: 0 0 18px rgba(212, 175, 55, 0.45);
  --st-shadow-gold-strong: 0 0 28px rgba(245, 226, 140, 0.55);

  --st-transition-fast: 0.25s ease-out;
  --st-transition-med: 0.45s ease-out;
}

*,
*::before,
*::after {
  box-sizing: border-box;
}

html {
  scroll-behavior: smooth;
}

body.st-body {
  margin: 0;
  font-family: "Manrope", system-ui, -apple-system, BlinkMacSystemFont, "Segoe UI", sans-serif;
  background-color: var(--st-black);
  color: var(--st-text-main);
}

/* GLOBAL: fara subliniere pe link-uri nicaieri */
a,
a:link,
a:visited,
a:hover,
a:active {
  text-decoration: none !important;
}

/* ====== FILM GRAIN OVERLAY (11) ====== */

.st-site-wrapper {
  position: relative;
  min-height: 100vh;
  background: var(--st-black);
  overflow-x: hidden;
}

.st-film-grain {
  pointer-events: none;
  position: fixed;
  inset: 0;
  opacity: 0.15;
  background-image: url("../img/grain-overlay.png");
  mix-blend-mode: soft-light;
  z-index: 2;
}

/* ====== INTRO LOADER (1) ====== */

.st-page-intro {
  position: fixed;
  inset: 0;
  background: #000;
  display: flex;
  align-items: center;
  justify-content: center;
  z-index: 999;
  opacity: 1;
  transform: scale(1);
  /* fade-out mai lung, cinematic */
  transition:
    opacity 1.2s cubic-bezier(0.22, 0.61, 0.36, 1),
    transform 1.2s cubic-bezier(0.22, 0.61, 0.36, 1);
}

.st-page-intro__inner {
  text-align: center;
}

.st-page-intro__logo {
  font-family: "Playfair Display", serif;
  font-size: clamp(1.6rem, 3vw, 2.3rem);
  letter-spacing: 0.12em;
  text-transform: uppercase;
  color: var(--st-gold-text);
}

.st-body.st-loaded .st-page-intro {
  opacity: 0;
  transform: scale(1.03);
  pointer-events: none;
}

/* ====== HEADER ====== */

.st-main-header {
  position: fixed;
  top: 0;
  left: 0;
  right: 0;
  z-index: 50;
  background: linear-gradient(to bottom, rgba(0, 0, 0, 0.9), transparent);
  backdrop-filter: blur(10px);
}

.st-main-header__inner {
  max-width: 1280px;
  margin: 0 auto;
  padding: 1rem 1.5rem;
  display: flex;
  align-items: center;
  justify-content: space-between;
}

.st-logo-min {
  font-family: "Playfair Display", serif;
  font-size: 1.1rem;
  color: var(--st-gold-text);
}

.st-main-nav {
  display: flex;
  gap: 1.4rem;
  align-items: center;
}

.st-nav-link {
  font-size: 0.92rem;
  color: var(--st-text-main);
  position: relative;
  padding-bottom: 0.1rem;
  transition: color var(--st-transition-fast);
}

.st-nav-link:hover {
  color: var(--st-gold-text);
}

.st-nav-link--cta {
  padding: 0.4rem 0.9rem;
  border-radius: 999px;
  border: 1px solid rgba(212, 175, 55, 0.7);
}

/* ====== HERO ====== */

.st-hero {
  position: relative;
  min-height: 100vh;
  display: flex;
  align-items: center;
  justify-content: center;
  padding: 0 1.5rem;
  overflow: hidden;
}

.st-hero__video-wrap {
  position: absolute;
  inset: 0;
  overflow: hidden;
  transform-origin: center;
  will-change: transform;
}

.st-hero__video {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.st-hero__overlay {
  position: absolute;
  inset: 0;
  background: radial-gradient(circle at top, rgba(0, 0, 0, 0.2), transparent 55%), linear-gradient(to bottom, rgba(0, 0, 0, 0.75), rgba(0, 0, 0, 0.95));
}

.st-hero__content {
  position: relative;
  z-index: 3;
  max-width: 960px;
  text-align: center;
  padding-top: 4rem;
}

.st-hero__title {
  font-family: "Playfair Display", serif;
  font-size: clamp(2.4rem, 5vw, 4.2rem);
  margin: 0 0 0.75rem;
  letter-spacing: 0.12em;
  text-transform: capitalize;
}

/* ====== LIGHT SWEEP ON H1 (12) ====== */

.st-gold-sweep {
  background: linear-gradient(120deg, #ffffff, var(--st-gold-light), var(--st-gold-mid), #ffffff);
  background-size: 250%;
  -webkit-background-clip: text;
  background-clip: text;
  color: transparent;
  animation: stGoldSweep 6s ease-in-out infinite;
}

@keyframes stGoldSweep {
  0% {
    background-position: 0% 50%;
  }
  40% {
    background-position: 100% 50%;
  }
  100% {
    background-position: 0% 50%;
  }
}

.st-hero__subtitle {
  margin: 0 0 1.5rem;
  font-size: 1.05rem;
  color: var(--st-text-muted);
}

/* ====== BUTTONS & LIQUID GOLD (9) ====== */

.st-btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  padding: 0.85rem 2.6rem;
  border-radius: 999px;
  border: none;
  font-family: "Manrope", sans-serif;
  font-weight: 600;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  font-size: 0.92rem;
  cursor: pointer;
  text-decoration: none;
  position: relative;
  overflow: hidden;
  color: #111;
}

.st-btn--primary {
  box-shadow: var(--st-shadow-gold-soft);
}

/* aur lichid animat */
.st-btn--liquid {
  background: linear-gradient(
    135deg,
    var(--st-gold-dark),
    var(--st-gold-mid),
    var(--st-gold-light),
    var(--st-gold-mid),
    var(--st-gold-dark)
  );
  background-size: 300%;
  animation: stLiquidGold 8s ease-in-out infinite;
}

@keyframes stLiquidGold {
  0% {
    background-position: 0% 50%;
  }
  50% {
    background-position: 100% 50%;
  }
  100% {
    background-position: 0% 50%;
  }
}

.st-btn--liquid:hover {
  box-shadow: var(--st-shadow-gold-strong);
}

.st-hero__links {
  margin-top: 1.5rem;
  display: flex;
  gap: 0.6rem;
  justify-content: center;
  align-items: center;
  font-size: 0.95rem;
}

.st-hero__links a {
  color: var(--st-text-main);
  position: relative;
  padding-bottom: 0.1rem;
  transition: color var(--st-transition-fast);
}

.st-hero__links a:hover {
  color: var(--st-gold-text);
}

.st-hero__links a::after {
  content: "";
  position: absolute;
  left: 0;
  bottom: -0.18rem;
  width: 0;
  height: 1px;
  background: linear-gradient(135deg, var(--st-gold-dark), var(--st-gold-light));
  transition: width var(--st-transition-med);
}

.st-hero__links a:hover::after {
  width: 100%;
}

/* ====== SECTION BASE ====== */

.st-main {
  background: linear-gradient(to bottom, var(--st-black), var(--st-black-soft));
}

.st-section {
  padding: 5rem 1.5rem;
  background-color: transparent;
}

.st-section:nth-of-type(even) {
  background-color: rgba(12, 12, 12, 0.92);
}

.st-section__inner {
  max-width: 1200px;
  margin: 0 auto;
}

.st-section__inner--narrow {
  max-width: 780px;
}

.st-section__title {
  font-family: "Playfair Display", serif;
  font-size: clamp(1.9rem, 3.1vw, 2.6rem);
  text-align: center;
  margin: 0 0 0.5rem;
}

.st-section__title--gold {
  color: var(--st-gold-text);
}

.st-section__subtitle {
  text-align: center;
  margin: 0 auto 2.5rem;
  max-width: 680px;
  color: var(--st-text-muted);
  font-size: 1rem;
}

/* ====== REVEAL ANIMATIONS ====== */

.st-reveal {
  opacity: 0;
  transform: translateY(40px);
  transition: opacity 0.7s ease-out, transform 0.7s ease-out;
}

.st-reveal.st-reveal--visible {
  opacity: 1;
  transform: translateY(0);
}

/* ====== CARDS BASE ====== */

.st-cards-grid {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 2rem;
}

.st-cards-grid--club {
  margin-top: 2rem;
}

.st-card {
  position: relative;
  border-radius: var(--st-radius-card);
  overflow: hidden;
  background: #111;
  color: #fff;
  border: 1px solid rgba(255, 255, 255, 0.04);
  transition: transform var(--st-transition-med), box-shadow var(--st-transition-med), border-color var(--st-transition-med);
}

.st-card__image img {
  width: 100%;
  height: 260px;
  object-fit: cover;
  display: block;
}

.st-card__overlay {
  position: absolute;
  inset: 0;
  background: linear-gradient(to top, rgba(0, 0, 0, 0.85), transparent 55%);
}

.st-card__content {
  position: absolute;
  inset: auto 1.6rem 1.6rem 1.6rem;
}

.st-card__title {
  margin: 0 0 0.4rem;
  font-family: "Playfair Display", serif;
  font-size: 1.4rem;
}

.st-card__title--gold {
  color: var(--st-gold-text);
}

.st-card__text {
  margin: 0;
  font-size: 0.96rem;
  color: var(--st-text-main);
}

/* club cards */
.st-card--club {
  background: radial-gradient(circle at top, rgba(212, 175, 55, 0.18), #050505);
  border-radius: 32px;
  padding: 2.2rem 2.1rem;
  overflow: visible;
}

.st-card__halo {
  position: absolute;
  inset: -30%;
  background: radial-gradient(circle, rgba(245, 226, 140, 0.18), transparent 68%);
  opacity: 0;
  transition: opacity var(--st-transition-med);
  pointer-events: none;
}

.st-card__content--club {
  position: relative;
  inset: 0;
}

.st-card--club .st-card__title {
  color: #fff;
  margin-bottom: 0.6rem;
}

.st-card--club .st-card__text {
  color: var(--st-text-muted);
}

.st-card--social .st-card__content {
  inset: auto 1.6rem 1.6rem 1.6rem;
}

.st-card:hover {
  box-shadow: var(--st-shadow-gold-soft);
  border-color: rgba(212, 175, 55, 0.7);
}

.st-card--club:hover .st-card__halo {
  opacity: 1;
}

/* ====== ABOUT & TIMELINE ====== */

.st-about-text p {
  margin: 0 0 1rem;
  font-size: 1rem;
  color: var(--st-text-main);
}

.st-about-signature {
  margin-top: 1.5rem;
  font-family: "Playfair Display", serif;
  font-size: 1.2rem;
  color: var(--st-gold-text);
  text-align: center;
}

.st-timeline {
  margin-top: 2.5rem;
  border-left: 1px solid rgba(255, 255, 255, 0.1);
  padding-left: 1.5rem;
}

.st-timeline__item {
  position: relative;
  margin-bottom: 1.8rem;
  padding-left: 0.5rem;
}

.st-timeline__dot {
  position: absolute;
  left: -1.7rem;
  top: 0.35rem;
  width: 10px;
  height: 10px;
  border-radius: 50%;
  background: radial-gradient(circle, var(--st-gold-light), var(--st-gold-mid));
  box-shadow: 0 0 12px rgba(245, 226, 140, 0.8);
}

.st-timeline__content h4 {
  margin: 0 0 0.3rem;
  font-size: 1rem;
}

.st-timeline__content p {
  margin: 0;
  font-size: 0.95rem;
  color: var(--st-text-muted);
}

/* ====== PALETTE SECTION ====== */

.st-section--palette {
  text-align: center;
}

.st-palette-block {
  margin-bottom: 3.5rem;
}

.st-section__title--palette-second {
  margin-top: 0;
}

.st-swatches-group {
  margin-top: 1.3rem;
}

.st-swatches-row {
  display: flex;
  justify-content: center;
  gap: 1.4rem;
  flex-wrap: wrap;
  margin-bottom: 0.9rem;
}

.st-swatch {
  --swatch-color: #ffffff;
  --swatch-gloss: 0;

  width: 46px;
  height: 46px;
  border-radius: 999px;
  border: 2px solid rgba(255, 255, 255, 0.06);
  background: radial-gradient(circle at 30% 20%, rgba(255, 255, 255, 0.35) var(--swatch-gloss), transparent 55%), var(--swatch-color);
  box-shadow: 0 0 0 rgba(245, 226, 140, 0);
  cursor: default;
  outline: none;
  padding: 0;
  appearance: none;
  transition: box-shadow 0.4s ease-out, transform 0.4s ease-out, border-color 0.4s ease-out;
}

.st-swatch.is-active {
  box-shadow: 0 0 22px rgba(245, 226, 140, 0.8);
  border-color: rgba(245, 226, 140, 0.9);
  transform: scale(1.06);
}

.st-swatches-label {
  font-size: 0.95rem;
  color: var(--st-text-muted);
  letter-spacing: 0.09em;
  text-transform: uppercase;
}

/* ====== BOOKING & ACCOUNT ====== */

.st-booking-placeholder {
  border-radius: 20px;
  border: 1px dashed rgba(212, 175, 55, 0.6);
  padding: 2rem;
  text-align: center;
  color: var(--st-text-muted);
}

/* ====== FOOTER ====== */

.st-footer {
  padding: 1.8rem 1.5rem 4.5rem;
  background: #050505;
}

.st-footer__inner {
  max-width: 1200px;
  margin: 0 auto;
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 0.6rem;
  font-size: 0.9rem;
  color: var(--st-text-muted);
}

.st-footer__brand {
  font-family: "Playfair Display", serif;
  color: var(--st-gold-text);
}

/* ====== QUICKBAR MOBILE ====== */

.st-quickbar {
  position: fixed;
  left: 0;
  right: 0;
  bottom: 0;
  z-index: 60;
  display: none;
  background: linear-gradient(to top, rgba(0, 0, 0, 0.96), rgba(0, 0, 0, 0.85));
  backdrop-filter: blur(16px);
  padding: 0.4rem 0.6rem 0.6rem;
  box-shadow: 0 -12px 20px rgba(0, 0, 0, 0.9);
}

.st-quickbar__item {
  flex: 1;
  margin: 0 0.3rem;
  padding: 0.65rem 0.4rem;
  border-radius: 999px;
  font-size: 0.85rem;
  text-align: center;
  color: #f7f7f7;
  border: 1px solid rgba(212, 175, 55, 0.45);
}

.st-quickbar__item--primary {
  background: linear-gradient(
    135deg,
    var(--st-gold-dark),
    var(--st-gold-mid),
    var(--st-gold-light),
    var(--st-gold-mid),
    var(--st-gold-dark)
  );
  background-size: 300%;
  animation: stLiquidGold 8s ease-in-out infinite;
  color: #111;
}

/* ====== RESPONSIVE ====== */

@media (max-width: 960px) {
  .st-cards-grid {
    grid-template-columns: repeat(2, minmax(0, 1fr));
  }

  .st-main-header__inner {
    padding-inline: 1rem;
  }

  .st-main-nav {
    gap: 0.9rem;
    font-size: 0.85rem;
  }
}

@media (max-width: 768px) {
  .st-main-header__inner {
    padding-inline: 1rem;
  }

  .st-main-nav {
    display: none;
  }

  .st-section {
    padding: 3.5rem 1.2rem;
  }

  .st-cards-grid {
    grid-template-columns: 1fr;
  }

  .st-card__image img {
    height: 230px;
  }

  .st-timeline {
    border-left: none;
    padding-left: 0;
  }

  .st-timeline__item {
    padding-left: 0;
    padding-top: 1.1rem;
    margin-left: 0;
  }

  .st-timeline__dot {
    position: static;
    margin: 0 auto 0.5rem;
    display: block;
  }

  .st-timeline__content {
    text-align: center;
  }

  .st-footer {
    padding-bottom: 3.5rem;
  }

  .st-quickbar {
    display: flex;
    align-items: center;
    justify-content: center;
  }
}

@media (min-width: 1600px) {
  .st-hero__title {
    font-size: 4.6rem;
  }
}

/* --- Programeaza-te: centrare si aliniere --- */
.st-section--booking .st-section__inner {
  text-align: center;
}

.st-section--booking .st-booking-placeholder {
  display: inline-block;
  margin-top: 3rem;
  padding: 3rem 2rem;
  border-radius: 40px;
}

.st-section--booking .st-booking-placeholder .st-btn {
  display: inline-block;
  margin: 0 auto 1.5rem;
}

/* text sub buton */
.st-programare-note {
  font-size: 1.1rem;
  line-height: 1.6;
}

/* --- Contul meu: centrare text + buton --- */
.st-section--account .st-section__inner {
  text-align: center;
}

.st-section--account .st-section__title {
  margin-bottom: 1rem;
}

.st-section--account .st-section__subtitle {
  max-width: 720px;
  margin: 0 auto 2rem;
}

.st-section--account .st-btn {
  margin-top: 1rem;
}

/* === CONTUL MEU — centrare buton === */

.st-section--account .st-section__inner {
  display: flex;
  flex-direction: column;
  align-items: center;   /* centrează titlu, text și buton pe axa orizontală */
  text-align: center;
}

.st-section--account .st-section__subtitle {
  max-width: 900px;
  margin: 0 auto 2rem;
}

.st-account-cta {
  display: flex;
  justify-content: center;  /* împinge butonul fix în centru */
  width: 100%;
  margin-top: 1.5rem;
}

.st-account-cta .st-btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  margin: 0 auto;
  min-width: clamp(260px, 40vw, 520px);
}
/* ====== PALETTE SECTION ====== */

.st-section--palette {
  text-align: center;
}

.st-palette-block {
  margin-bottom: 3.5rem;
}

.st-section__title--palette-second {
  margin-top: 0;
}

.st-swatches-group {
  margin-top: 1.3rem;
}

.st-swatches-row {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(44px, 1fr));
  justify-items: center;
  column-gap: 1.1rem;
  row-gap: 0.9rem;
  margin-bottom: 0.9rem;
}

.st-swatch {
  --swatch-color: #ffffff;
  --swatch-gloss: 0;

  width: 100%;
  max-width: 52px;
  min-width: 34px;
  aspect-ratio: 1 / 1;
  border-radius: 999px;
  border: 2px solid rgba(255, 255, 255, 0.06);
  background:
    radial-gradient(
      circle at 30% 20%,
      rgba(255, 255, 255, 0.35) var(--swatch-gloss),
      transparent 55%
    ),
    var(--swatch-color);
  box-shadow: 0 0 0 rgba(245, 226, 140, 0);
  cursor: default;
  outline: none;
  padding: 0;
  appearance: none;
  transition:
    box-shadow 0.4s ease-out,
    transform 0.4s ease-out,
    border-color 0.4s ease-out;
}

.st-swatch.is-active {
  box-shadow: 0 0 22px rgba(245, 226, 140, 0.8);
  border-color: rgba(245, 226, 140, 0.9);
  transform: scale(1.06);
}

.st-swatches-label {
  font-size: 0.95rem;
  color: var(--st-text-muted);
  letter-spacing: 0.09em;
  text-transform: uppercase;
}
