/* --------------------------------------------------
   COLOR SYSTEM
-------------------------------------------------- */
:root {
  --white: #ffffff;
  --black: #0b0b0b;
  --black-2: #121212;

  --gold-light: #f5e9c9;   /* champagne */
  --gold: #e8d9a8;         /* soft gold */
  --gold-dark: #d4c28f;    /* deeper gold */

  --muted: #6f6f6f;

  --shadow: 0 10px 30px rgba(0,0,0,0.12);
}

/* --------------------------------------------------
   GLOBAL RESET
-------------------------------------------------- */
* { box-sizing: border-box; }
html, body { margin: 0; padding: 0; }

body {
  font-family: "Inter", system-ui, sans-serif;
  color: var(--black);
  background: var(--white);
  line-height: 1.6;
  position: relative;
  z-index: 0;
}

/* --------------------------------------------------
   HERO WATERMARK (Lelix logo)
-------------------------------------------------- */
.hero-with-watermark::before {
  content: "";
  position: fixed;
  inset: 0;

  background-image: url("lelix-logo.png");
  background-repeat: no-repeat;
  background-position: center;
  background-size: 700px;

  opacity: 0.12;
  pointer-events: none;
  z-index: -1;
  background-attachment: fixed;

  animation: floatSoft 18s ease-in-out infinite;
}



/* --------------------------------------------------
   TYPOGRAPHY
-------------------------------------------------- */
h1, h2, h3 {
  font-family: "Playfair Display", serif;
  margin: 0 0 12px;
}

p { margin: 0 0 16px; color: var(--muted); }

/* --------------------------------------------------
   CONTAINERS
-------------------------------------------------- */
.container {
  width: 100%;
  max-width: 1100px;
  margin: 0 auto;
  padding: 0 20px;
}

/* --------------------------------------------------
   HEADER
-------------------------------------------------- */
.site-header {
  position: sticky;
  overflow: visible;
  top: 0;
  z-index: 1000;
  background: rgba(255,255,255,0.9);
  backdrop-filter: blur(8px);
  border-bottom: 1px solid #eee;
}

.header-inner {
  display: flex;
  align-items: center;
  justify-content: space-between;
  height: 68px;
}

.brand {
  display: flex;
  align-items: center;
  gap: 12px;
  font-weight: 700;
  color: var(--black);
}

.brand-logo {
  width: 36px;
  height: 36px;
  object-fit: contain;
}



/* --------------------------------------------------
   HERO (CENTERED)
-------------------------------------------------- */
.hero {
  padding: 120px 0 100px;
  text-align: center;
}

.hero-kicker {
  font-size: 14px;
  letter-spacing: 1px;
  text-transform: uppercase;
  color: var(--muted);
}

.hero h1 {
  font-size: 42px;
  line-height: 1.2;
  color: var(--black);
}

.hero-subtitle {
  max-width: 650px;
  margin: 0 auto 24px;
  color: var(--muted);
}

.hero-actions {
  display: flex;
  justify-content: center;
  gap: 14px;
  margin-top: 20px;
}

/* --------------------------------------------------
   BUTTONS (GRADIENT)
-------------------------------------------------- */
.cta {
  display: inline-block;
  padding: 12px 18px;
  border-radius: 12px;
  font-weight: 600;
  text-decoration: none;
  transition: 0.25s ease;
}

.cta-gradient {
  background: linear-gradient(135deg, var(--gold) 0%, var(--gold-light) 100%);
  color: var(--black);
  box-shadow: var(--shadow);
}

.cta-gradient:hover {
  background: linear-gradient(135deg, var(--gold-dark) 0%, var(--gold) 100%);
  transform: translateY(-2px);
}

.cta.ghost {
  background: transparent;
  border: 2px solid var(--black);
  color: var(--black);
}

.cta.ghost:hover {
  background: #f4f4f4;
}

/* --------------------------------------------------
   SECTIONS
-------------------------------------------------- */
.section {
  padding: 70px 0;
}

.section-light {
  background: var(--white);
  color: var(--black);
}

.section-dark {
  background: var(--black-2);
  color: var(--white);
}

.section-dark p {
  color: #dcdcdc;
}

/* --------------------------------------------------
   CARDS
-------------------------------------------------- */
.cards {
  display: grid;
grid-template-columns: repeat(auto-fit, minmax(260px, 1fr));
gap: 22px;
  margin-top: 30px;
}

.card {
  background: var(--white);
  color: var(--black);
  padding: 22px;
  border-radius: 18px;
  border: 1px solid #eee;
  box-shadow: var(--shadow);
  transition: 0.25s ease;
}

.card:hover {
  transform: translateY(-4px);
}

.section-dark .card {
  background: #1a1a1a;
  color: var(--white);
  border-color: #2a2a2a;
}

.card-badge {
  display: inline-block;
  background: var(--black);
  color: var(--gold);
  padding: 4px 10px;
  border-radius: 999px;
  font-size: 12px;
  margin-bottom: 8px;
}

/* --------------------------------------------------
   CONTACT FORM
-------------------------------------------------- */
.contact-grid {
  display: grid;
  grid-template-columns: 1.1fr 0.9fr;
  gap: 20px;
}

.contact-form {
  background: var(--white);
  padding: 22px;
  border-radius: 16px;
  border: 1px solid #eee;
  box-shadow: var(--shadow);
}

.form-row {
  display: grid;
  gap: 6px;
  margin-bottom: 14px;
}

input, select, textarea {
  width: 100%;
  padding: 12px;
  border-radius: 10px;
  border: 1px solid #ddd;
  background: #fcfcfc;
  color: var(--black);
}

input::placeholder, textarea::placeholder {
  color: #999;
}

/* --------------------------------------------------
   FOOTER
-------------------------------------------------- */
.site-footer {
  background: var(--white);
  border-top: 1px solid #eee;
  padding: 28px 0;
}

.footer-inner {
  display: grid;
  grid-template-columns: 1fr 1fr;
  align-items: center;
}

.footer-links {
  display: flex;
  gap: 14px;
  list-style: none;
  padding: 0;
  margin: 0;
}

.footer-links a {
  color: var(--black);
}

/* --------------------------------------------------
   ANIMATIONS — FADE, SLIDE, SCALE
-------------------------------------------------- */
.fade-in {
  opacity: 0;
  transform: translateY(30px) scale(0.98);
  transition: opacity 0.9s ease, transform 0.9s ease;
}

.fade-in.visible {
  opacity: 1;
  transform: translateY(0) scale(1);
}

/* --------------------------------------------------
   STAGGERED ANIMATION
-------------------------------------------------- */
.stagger > * {
  opacity: 0;
  transform: translateY(25px);
  transition: opacity 0.8s ease, transform 0.8s ease;
}

.stagger.visible > * {
  opacity: 1;
  transform: translateY(0);
}

.stagger.visible > *:nth-child(1) { transition-delay: 0.1s; }
.stagger.visible > *:nth-child(2) { transition-delay: 0.2s; }
.stagger.visible > *:nth-child(3) { transition-delay: 0.3s; }
.stagger.visible > *:nth-child(4) { transition-delay: 0.4s; }
.stagger.visible > *:nth-child(5) { transition-delay: 0.5s; }
.stagger.visible > *:nth-child(6) { transition-delay: 0.6s; }

/* --------------------------------------------------
   FLOATING ANIMATION
-------------------------------------------------- */
.float-soft {
  animation: floatSoft 7s ease-in-out infinite;
}

@keyframes floatSoft {
  0% { transform: translateY(0); }
  50% { transform: translateY(-12px); }
  100% { transform: translateY(0); }
}

/* --------------------------------------------------
   PARALLAX MICRO MOVEMENT
-------------------------------------------------- */
.parallax-slow {
  will-change: transform;
  transition: transform 0.1s linear;
}

/* --------------------------------------------------
   SECTION DIVIDER
-------------------------------------------------- */
.section-divider {
  width: 60px;
  height: 3px;
  background: linear-gradient(90deg, var(--gold), var(--gold-light));
  margin: 20px auto 40px;
  opacity: 0;
  transform: scaleX(0.5);
  transition: 0.8s ease;
}

.section-divider.visible {
  opacity: 1;
  transform: scaleX(1);
}

/* --------------------------------------------------
   RESPONSIVE
-------------------------------------------------- */
/* NAV WRAPPER */
.nav {
  position: relative;
  display: flex;
  align-items: center;
  justify-content: flex-end;
}

/* MOBILE: toggle visible, menu hidden by default */
.nav-toggle {
  display: inline-block;
  padding: 8px 12px;
  border-radius: 6px;
  border: 1px solid #ccc;
  background: #ffffff;
  cursor: pointer;
  font-size: 14px;
  z-index: 10;
}

.nav-list {
  display: none;              /* hidden by default */
  position: absolute;         /* positioned relative to .nav */
  top: 68px;                  /* same as header height */
  right: 20px;
  flex-direction: column;
  gap: 12px;
  list-style: none;
  margin: 0;
  padding: 16px;
  background: #ffffff;
  border-radius: 8px;
  box-shadow: 0 4px 12px rgba(0,0,0,0.12);
  z-index: 20;                /* above toggle */
  transition: opacity 0.3s ease, transform 0.3s ease; opacity: 0; 
  transform: translateY(-10px);
}

.nav-list a {
  padding: 8px 10px;
  border-radius: 6px;
  color: var(--black);
  white-space: nowrap;
  text-decoration: none;
}

.nav-list a:hover {
  background: #f4f4f4;
}

/* WHEN ACTIVE, SHOW MENU */
.nav-list.active {
  display: flex !important;
  opacity: 1; transform: translateY(0);
}

/* DESKTOP: show horizontal nav, hide toggle */
@media (min-width: 768px) {
  .nav-toggle {
    display: none;
  }

  .nav-list {
    position: static;
    display: flex !important;
    flex-direction: row;
    gap: 16px;
    padding: 0;
    box-shadow: none;
    background: transparent;
    opacity: 1; /* ← Add this line */ 
    transform: translateY(0); /* ← Optional: reset transform */
  }
}


/*              -----------L-level Progression-----------         */


/* Horizontal L-Level Strip */
.l-level-strip {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 18px;
  margin-top: 5px;
  flex-wrap: wrap;
  opacity: 0;
  transform: translateY(20px);
  transition: opacity 0.9s ease, transform 0.9s ease;
}

.l-level-strip.visible {
  opacity: 1;
  transform: translateY(0);
}

.l-level-arrow {
  font-size: 20px;
  color: var(--muted);
  opacity: 0.7;
}



.l-level-black .l-level-arrow {
  color: #ffffff;
  font-size: 20px;
  opacity: 0.8;
}

.format-dropdown {
  margin-top: 20px;
  background: var(--white);
  border-radius: 12px;
  padding: 16px;
  box-shadow: var(--shadow);
}

.format-summary {
  font-size: 18px;
  font-weight: 600;
  cursor: pointer;
}

.format-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(170px, 1fr));
  gap: 20px;
  margin-top: 20px;
}

.format-card {
  background: #1a1a1a;
  border-radius: 14px;
  padding: 20px;
  box-shadow: var(--shadow);
  text-align: center;
  transition: 0.3s ease;
}

.format-card:hover {
  transform: translateY(-4px);
}

.format-card-light {
  background: #ffffff;
  border-radius: 14px;
  padding: 20px;
  box-shadow: var(--shadow);
  text-align: center;
  transition: 0.3s ease;
}

.format-card-light:hover {
  transform: translateY(-4px);
}

.format-icon i {
  font-size: 32px;
  color: var(--gold);
}

.format-title {
  font-size: 18px;
  font-weight: 700;
  margin-top: 10px;
}

.format-badge {
  background: var(--black);
  color: var(--white);
  padding: 4px 10px;
  border-radius: 20px;
  font-size: 12px;
  margin-top: 6px;
  display: inline-block;
}

.format-list {
  list-style: none;
  padding: 0;
  margin-top: 12px;
  color: var(--muted);
  font-size: 14px;
}

.format-note {
  margin-top: 20px;
  font-size: 14px;
  color: var(--muted);
  text-align: center;
}


