/* =============================================================
   FENIXALB — styles.css
   Root stylesheet: variables, reset, hero, navbar,
   inner-page header, marquee, buttons, footer, cart toast.
   ============================================================= */


/* ── CUSTOM PROPERTIES ─────────────────────────────────────── */

:root {
  /* Dark / hero palette */
  --gold:           #C6A15B;
  --gold-light:     #DDB97A;
  --gold-dim:       #A8884A;
  --black:          #111111;
  --dark:           #1E1E1E;
  --off-white:      #FAFAF8;

  /* Content palette */
  --bg:             #f2ede6;
  --bg2:            #ede6dc;
  --white:          #ffffff;
  --maroon:         #7a1212;
  --maroon2:        #9b1818;
  --maroon3:        #c0392b;
  --maroon-deep:    #4a0808;
  --cream:          #f7f2eb;
  --border:         #ccc0b0;
  --text:           #2a1a1a;
  --text2:          #5a3a3a;
  --text3:          #8a6060;

  /* Typography */
  --font-heading:   'Playfair Display', Georgia, serif;
  --font-body:      'Source Serif 4', Georgia, serif;
  --font-ui:        'Barlow Condensed', sans-serif;

  /* Layout */
  --nav-height:     72px;
  --max-width:      1600px;
  --content-pad:    32px;

  /* Easing */
  --ease-smooth:    cubic-bezier(0.4, 0, 0.2, 1);
  --ease-out:       cubic-bezier(0, 0, 0.2, 1);
  --ease-spring:    cubic-bezier(0.34, 1.56, 0.64, 1);
  --transition:     0.3s var(--ease-smooth);
}


/* ── RESET ──────────────────────────────────────────────────── */

*,
*::before,
*::after {
  box-sizing: border-box;
  margin: 0;
  padding: 0;
}

html {
  scroll-behavior: smooth;
  font-size: 16px;
  -webkit-text-size-adjust: 100%;
}

body {
  font-family: var(--font-body);
  font-weight: 400;
  line-height: 1.6;
  color: var(--text);
  background: var(--bg);
  -webkit-font-smoothing: antialiased;
  overflow-x: hidden;
}

img {
  display: block;
  max-width: 100%;
  height: auto;
}

a {
  text-decoration: none;
  color: inherit;
}

ul {
  list-style: none;
}

button {
  font-family: var(--font-ui);
  cursor: pointer;
}


/* ── SCROLL ANIMATIONS ──────────────────────────────────────── */

.fade-up {
  opacity: 0;
  transform: translateY(32px);
  transition: opacity 0.7s var(--ease-out), transform 0.7s var(--ease-out);
}

.fade-in {
  opacity: 0;
  transition: opacity 0.9s var(--ease-out);
}

.fade-up.visible,
.fade-in.visible {
  opacity: 1;
  transform: translateY(0);
}

.delay-1 { transition-delay: 0.12s; }
.delay-2 { transition-delay: 0.24s; }
.delay-3 { transition-delay: 0.36s; }
.delay-4 { transition-delay: 0.48s; }


/* ── SHARED BUTTONS ─────────────────────────────────────────── */

.btn {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  padding: 14px 32px;
  font-family: var(--font-ui);
  font-size: 0.8rem;
  font-weight: 700;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  border-radius: 3px;
  border: 1.5px solid transparent;
  transition: all var(--transition);
  cursor: pointer;
  white-space: nowrap;
}

.btn--primary {
  background: var(--gold);
  color: var(--black);
  border-color: var(--gold);
}

.btn--primary:hover {
  background: var(--gold-light);
  border-color: var(--gold-light);
  transform: translateY(-1px);
  box-shadow: 0 8px 32px rgba(198, 161, 91, 0.25);
}

.btn--outline {
  background: transparent;
  color: var(--black);
  border-color: var(--black);
}

.btn--outline:hover {
  background: var(--black);
  color: var(--off-white);
  transform: translateY(-1px);
}


/* ═══════════════════════════════════════════════════════════════
   HERO NAVBAR  (home page — transparent → dark on scroll)
   ═══════════════════════════════════════════════════════════════ */

 .navbar__logo {
  display: flex;
  align-items: center;
  gap: 10px;        /* space between the two */
}

.navbar__logo-img {
  height: 36px;     /* adjust to taste */
  width: auto;
  display: block;
}
.navbar {
  position: fixed;
  top: 0;
  left: 0;
  right: 0;
  z-index: 1000;
  height: var(--nav-height);
  transition: background var(--transition), box-shadow var(--transition);
}

.navbar.scrolled {
  background: rgba(17, 17, 17, 0.95);
  backdrop-filter: blur(20px);
  -webkit-backdrop-filter: blur(20px);
  box-shadow: 0 1px 0 rgba(198, 161, 91, 0.15);
}

.navbar__inner {
  max-width: var(--max-width);
  margin: 0 auto;
  padding: 0 var(--content-pad);
  height: 100%;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 32px;
}

.navbar__logo {
  display: flex;
  align-items: center;
  gap: 2px;
  font-family: var(--font-heading);
  font-size: 1.5rem;
  font-weight: 700;
  color: var(--off-white);
  flex-shrink: 0;
}

.logo-mark {
  color: var(--gold);
  font-style: italic;
}

.navbar__nav {
  display: none;
}

@media (min-width: 1024px) {
  .navbar__nav {
    display: block;
  }
}

.nav__list {
  display: flex;
  align-items: center;
  gap: 40px;
}

.nav__link {
  font-family: var(--font-ui);
  font-size: 0.8rem;
  font-weight: 700;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  color: rgba(250, 250, 248, 0.75);
  position: relative;
  padding-bottom: 3px;
  transition: color var(--transition);
}

.nav__link::after {
  content: '';
  position: absolute;
  bottom: 0;
  left: 0;
  width: 0;
  height: 1.5px;
  background: var(--gold);
  transition: width 0.3s var(--ease-out);
}

.nav__link:hover,
.nav__link.active {
  color: var(--off-white);
}

.nav__link:hover::after,
.nav__link.active::after {
  width: 100%;
}

.navbar__right {
  display: flex;
  align-items: center;
  gap: 16px;
  flex-shrink: 0;
}

.lang-switcher {
  display: none;
  align-items: center;
  gap: 2px;
}

@media (min-width: 768px) {
  .lang-switcher {
    display: flex;
  }
}

.lang-btn {
  background: transparent;
  border: none;
  font-family: var(--font-ui);
  font-size: 0.7rem;
  font-weight: 700;
  letter-spacing: 0.08em;
  color: rgba(250, 250, 248, 0.45);
  padding: 4px 6px;
  border-radius: 3px;
  transition: color var(--transition);
  cursor: pointer;
}

.lang-btn.active {
  color: var(--gold);
}

.lang-btn:hover {
  color: rgba(250, 250, 248, 0.85);
}

/* Mobile menu toggle */
.menu-toggle {
  display: flex;
  flex-direction: column;
  justify-content: center;
  align-items: center;
  width: 36px;
  height: 36px;
  background: transparent;
  border: none;
  gap: 5px;
  padding: 0;
}

@media (min-width: 1024px) {
  .menu-toggle {
    display: none;
  }
}

.menu-toggle span {
  display: block;
  width: 22px;
  height: 1.5px;
  background: var(--off-white);
  border-radius: 2px;
  transition: all 0.3s;
  transform-origin: center;
}

.menu-toggle.open span:nth-child(1) {
  transform: translateY(6.5px) rotate(45deg);
}

.menu-toggle.open span:nth-child(2) {
  opacity: 0;
  transform: scaleX(0);
}

.menu-toggle.open span:nth-child(3) {
  transform: translateY(-6.5px) rotate(-45deg);
}

/* Mobile nav overlay */
.mobile-nav {
  display: none;
  position: fixed;
  inset: 0;
  top: var(--nav-height);
  background: var(--black);
  z-index: 999;
  padding: 40px 24px;
  flex-direction: column;
  gap: 8px;
}

.mobile-nav.open {
  display: flex;
}

.mobile-nav .nav__link {
  font-size: 1.3rem;
  color: rgba(250, 250, 248, 0.8);
  padding: 12px 0;
  border-bottom: 1px solid rgba(255, 255, 255, 0.06);
  font-family: var(--font-heading);
  text-transform: none;
  letter-spacing: 0;
}

.mobile-nav .lang-switcher {
  display: flex;
  flex-wrap: wrap;
  margin-top: auto;
}


/* ═══════════════════════════════════════════════════════════════
   HERO SECTION
   ═══════════════════════════════════════════════════════════════ */

.hero {
  min-height: 100svh;
  background: var(--black);
  position: relative;
  overflow: hidden;
  display: flex;
  align-items: center;
  padding-top: var(--nav-height);
}

.hero::before {
  content: '';
  position: absolute;
  inset: 0;
  background:
    radial-gradient(ellipse 80% 60% at 70% 50%, rgba(198, 161, 91, 0.06) 0%, transparent 60%),
    radial-gradient(ellipse 60% 80% at 20% 80%, rgba(122, 139, 90, 0.05) 0%, transparent 60%);
  pointer-events: none;
}

.hero__inner {
  max-width: var(--max-width);
  margin: 0 auto;
  padding: 96px var(--content-pad);
  width: 100%;
  display: grid;
  grid-template-columns: 1fr;
  gap: 80px;
  align-items: center;
}

@media (min-width: 1024px) {
  .hero__inner {
    grid-template-columns: 1fr 1fr;
    min-height: calc(100svh - var(--nav-height));
  }
}

.hero__label {
  display: inline-block;
  font-family: var(--font-ui);
  font-size: 0.75rem;
  font-weight: 700;
  letter-spacing: 0.16em;
  text-transform: uppercase;
  color: var(--gold);
  margin-bottom: 20px;
}

.hero__headline {
  font-family: var(--font-heading);
  font-size: clamp(3rem, 7vw, 5.5rem);
  font-weight: 700;
  line-height: 1.08;
  color: var(--off-white);
  margin-bottom: 28px;
  letter-spacing: -0.01em;
}

.hero__headline em {
  font-style: italic;
  color: var(--gold);
  display: block;
}

.hero__subtitle {
  font-size: 1.1rem;
  color: rgba(250, 250, 248, 0.65);
  max-width: 440px;
  line-height: 1.75;
  margin-bottom: 40px;
}

.hero__cta {
  display: flex;
  flex-wrap: wrap;
  gap: 12px;
  margin-bottom: 56px;
}

.hero__cta .btn--outline {
  color: var(--off-white);
  border-color: rgba(250, 250, 248, 0.35);
}

.hero__cta .btn--outline:hover {
  background: var(--off-white);
  color: var(--black);
  border-color: var(--off-white);
}

.hero__stats {
  display: flex;
  gap: 48px;
  padding-top: 32px;
  border-top: 1px solid rgba(250, 250, 248, 0.1);
}

.stat__number {
  display: block;
  font-family: var(--font-heading);
  font-size: 2rem;
  font-weight: 700;
  color: var(--gold);
  line-height: 1;
  margin-bottom: 4px;
}

.stat__label {
  display: block;
  font-family: var(--font-ui);
  font-size: 0.72rem;
  font-weight: 700;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  color: rgba(250, 250, 248, 0.4);
}

/* Hero collage */

.hero__visual {
  position: relative;
  display: flex;
  justify-content: center;
}

.hero__collage {
  position: relative;
  width: 100%;
  max-width: 520px;
  height: 560px;
}

@media (min-width: 1024px) {
  .hero__collage {
    height: 640px;
  }
}

.collage__card {
  position: absolute;
  border-radius: 16px;
  overflow: hidden;
  box-shadow: 0 24px 64px rgba(17, 17, 17, 0.4);
}

.collage__card img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform 0.6s var(--ease-smooth);
}

.collage__card:hover img {
  transform: scale(1.04);
}

.collage__card--1 {
  width: 72%;
  height: 72%;
  top: 0;
  right: 0;
}

.collage__card--2 {
  width: 46%;
  height: 50%;
  bottom: 0;
  left: 0;
  border: 3px solid rgba(250, 250, 248, 0.08);
}

.collage__card--3 {
  width: 36%;
  height: 36%;
  top: 48%;
  left: 36%;
}

.collage__accent {
  position: absolute;
  top: 54%;
  right: -12px;
  background: var(--gold);
  color: var(--black);
  font-family: var(--font-ui);
  font-size: 0.72rem;
  font-weight: 700;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  padding: 8px 14px;
  border-radius: 3px;
  box-shadow: 0 8px 32px rgba(198, 161, 91, 0.25);
}

@keyframes float1 {
  0%, 100% { transform: translateY(0) rotate(0deg); }
  50%       { transform: translateY(-12px) rotate(0.5deg); }
}

@keyframes float2 {
  0%, 100% { transform: translateY(0) rotate(0deg); }
  50%       { transform: translateY(-8px) rotate(-0.5deg); }
}

@keyframes float3 {
  0%, 100% { transform: translateY(0); }
  50%       { transform: translateY(10px); }
}

.float-1 { animation: float1 6s ease-in-out infinite; }
.float-2 { animation: float2 8s ease-in-out infinite 1s; }
.float-3 { animation: float3 7s ease-in-out infinite 2s; }

.hero__scroll-indicator {
  position: absolute;
  bottom: 40px;
  left: 50%;
  transform: translateX(-50%);
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 6px;
  color: rgba(250, 250, 248, 0.35);
  font-family: var(--font-ui);
  font-size: 0.68rem;
  font-weight: 700;
  letter-spacing: 0.14em;
  text-transform: uppercase;
}

.scroll-line {
  width: 1px;
  height: 48px;
  background: linear-gradient(to bottom, transparent, rgba(198, 161, 91, 0.5));
  animation: scrollPulse 2s ease-in-out infinite;
}

@keyframes scrollPulse {
  0%, 100% { opacity: 0.4; height: 48px; }
  50%       { opacity: 1;   height: 60px; }
}


/* ═══════════════════════════════════════════════════════════════
   MARQUEE STRIP
   ═══════════════════════════════════════════════════════════════ */

.marquee-strip {
  background: var(--dark);
  padding: 16px 0;
  overflow: hidden;
  border-top: 1px solid rgba(198, 161, 91, 0.12);
  border-bottom: 1px solid rgba(198, 161, 91, 0.12);
}

.marquee__track {
  display: flex;
  align-items: center;
  gap: 32px;
  white-space: nowrap;
  animation: marqueeAnim 28s linear infinite;
  width: max-content;
}

.marquee__track span {
  font-family: var(--font-ui);
  font-size: 0.72rem;
  font-weight: 700;
  letter-spacing: 0.14em;
  text-transform: uppercase;
  color: rgba(250, 250, 248, 0.4);
}

.marquee__track .dot {
  color: var(--gold);
}

@keyframes marqueeAnim {
  from { transform: translateX(0); }
  to   { transform: translateX(-50%); }
}


/* ═══════════════════════════════════════════════════════════════
   INNER-PAGE HEADER  (editorial / botime / shop)
   Dark — same language as the hero, NOT maroon
   ═══════════════════════════════════════════════════════════════ */

.inner-header {
  background: var(--black);
  border-bottom: 1px solid rgba(198, 161, 91, 0.15);
}

.inner-header__top {
  background: rgba(255, 255, 255, 0.03);
  border-bottom: 1px solid rgba(255, 255, 255, 0.06);
  padding: 6px 0;
}

.inner-header__top-inner {
  max-width: var(--max-width);
  margin: 0 auto;
  padding: 0 var(--content-pad);
  display: flex;
  justify-content: space-between;
  align-items: center;
}

.inner-header__credits {
  font-family: var(--font-ui);
  font-size: 11px;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  color: rgba(250, 250, 248, 0.3);
}

.inner-header__credits strong {
  color: rgba(198, 161, 91, 0.7);
}

.inner-header__credits span {
  margin-right: 24px;
}

.lang-btns-top {
  display: flex;
  gap: 3px;
}

.lang-btn-top {
  background: transparent;
  border: 1px solid rgba(255, 255, 255, 0.1);
  color: rgba(250, 250, 248, 0.35);
  font-family: var(--font-ui);
  font-size: 10px;
  font-weight: 700;
  letter-spacing: 0.1em;
  padding: 2px 7px;
  cursor: pointer;
  transition: all 0.15s;
}

.lang-btn-top.active,
.lang-btn-top:hover {
  background: var(--gold);
  color: var(--black);
  border-color: var(--gold);
}

.inner-header__main {
  max-width: var(--max-width);
  margin: 0 auto;
  padding: 20px var(--content-pad);
  display: flex;
  align-items: center;
  justify-content: space-between;
}

@media (max-width: 600px) {
  .inner-header__top-inner {
    flex-direction: column;
    align-items: flex-start;
    gap: 6px;
  }

  .inner-header__credits span {
    display: block;
    margin-right: 0;
    margin-bottom: 2px;
  }
}

.logo-text-link {
  font-family: var(--font-heading);
  font-size: 42px;
  font-weight: 900;
  color: var(--off-white);
  letter-spacing: -2px;
  line-height: 1;
}

.logo-text-link span {
  color: var(--gold);
  font-style: italic;
}

.logo-sub {
  font-family: var(--font-ui);
  font-size: 10px;
  letter-spacing: 0.22em;
  text-transform: uppercase;
  color: rgba(250, 250, 248, 0.3);
  margin-top: 4px;
}

.admin-link-btn {
  font-family: var(--font-ui);
  font-size: 11px;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  color: rgba(250, 250, 248, 0.35);
  border: 1px solid rgba(255, 255, 255, 0.12);
  padding: 6px 16px;
  transition: all 0.2s;
}

.admin-link-btn:hover {
  color: var(--gold);
  border-color: var(--gold);
}

/* Inner-page nav bar */

.inner-nav {
  background: rgba(255, 255, 255, 0.04);
  border-top: 1px solid rgba(198, 161, 91, 0.12);
}

.inner-nav__inner {
  max-width: var(--max-width);
  margin: 0 auto;
  padding: 0 var(--content-pad);
  display: flex;
  align-items: center;
  flex-wrap: wrap;
}

.inner-nav__inner a {
  font-family: var(--font-ui);
  font-size: 12px;
  font-weight: 700;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  color: rgba(250, 250, 248, 0.55);
  padding: 13px 18px;
  display: block;
  border-right: 1px solid rgba(255, 255, 255, 0.06);
  transition: background 0.15s, color 0.15s;
  position: relative;
}

.inner-nav__inner a:first-child {
  border-left: 1px solid rgba(255, 255, 255, 0.06);
}

.inner-nav__inner a:hover,
.inner-nav__inner a.active {
  background: rgba(198, 161, 91, 0.06);
  color: var(--gold);
}

.inner-nav__inner a.active::after {
  content: '';
  position: absolute;
  bottom: 0;
  left: 0;
  right: 0;
  height: 2px;
  background: var(--gold);
}

/* Ticker */

.ticker {
  background: rgba(0, 0, 0, 0.4);
  border-top: 1px solid rgba(255, 255, 255, 0.04);
  overflow: hidden;
  height: 32px;
  display: flex;
  align-items: center;
}

.ticker-label {
  background: var(--gold);
  color: var(--black);
  font-family: var(--font-ui);
  font-size: 10px;
  font-weight: 700;
  letter-spacing: 0.15em;
  text-transform: uppercase;
  padding: 0 14px;
  height: 100%;
  display: flex;
  align-items: center;
  white-space: nowrap;
  flex-shrink: 0;
}

.ticker-track {
  flex: 1;
  overflow: hidden;
}

.ticker-text {
  white-space: nowrap;
  font-family: var(--font-ui);
  font-size: 12px;
  color: rgba(250, 250, 248, 0.4);
  letter-spacing: 0.04em;
  animation: tickerAnim 35s linear infinite;
  display: inline-block;
  padding-left: 40px;
}

@keyframes tickerAnim {
  from { transform: translateX(100%); }
  to   { transform: translateX(-100%); }
}


/* ═══════════════════════════════════════════════════════════════
   FOOTER  — dark, matches hero language
   ═══════════════════════════════════════════════════════════════ */

.site-footer {
  background: var(--black);
  border-top: 1px solid rgba(198, 161, 91, 0.15);
  padding-top: 56px;
  margin-top: 0;
}

.footer-inner {
  max-width: var(--max-width);
  margin: 0 auto;
  padding: 0 var(--content-pad) 48px;
  display: grid;
  grid-template-columns: 1.5fr 1fr 1fr;
  gap: 48px;
}

@media (max-width: 900px) {
  .footer-inner {
    grid-template-columns: 1fr 1fr;
  }
}

@media (max-width: 640px) {
  .footer-inner {
    grid-template-columns: 1fr;
  }
}

.footer-logo {
  font-family: var(--font-heading);
  font-size: 2rem;
  font-weight: 700;
  color: var(--off-white);
  letter-spacing: -1px;
  display: inline-block;
  margin-bottom: 12px;
}

.footer-logo span {
  color: var(--gold);
  font-style: italic;
}

.footer-col p,
.footer-col address {
  font-family: var(--font-ui);
  font-size: 13px;
  color: rgba(250, 250, 248, 0.35);
  line-height: 1.7;
  letter-spacing: 0.03em;
  font-style: normal;
  margin-bottom: 4px;
}

.footer-col h4 {
  font-family: var(--font-ui);
  font-size: 11px;
  font-weight: 700;
  letter-spacing: 0.16em;
  text-transform: uppercase;
  color: rgba(198, 161, 91, 0.7);
  margin-bottom: 16px;
  padding-bottom: 8px;
  border-bottom: 1px solid rgba(255, 255, 255, 0.06);
}

.footer-col a {
  display: block;
  font-family: var(--font-ui);
  font-size: 13px;
  color: rgba(250, 250, 248, 0.4);
  margin-bottom: 8px;
  letter-spacing: 0.03em;
  transition: color 0.15s;
}

.footer-col a:hover {
  color: var(--gold);
}

.footer-social {
  display: flex;
  gap: 10px;
  margin-top: 20px;
}

.footer-social a {
  width: 34px;
  height: 34px;
  border-radius: 50%;
  background: rgba(255, 255, 255, 0.04);
  border: 1px solid rgba(255, 255, 255, 0.1);
  display: flex;
  align-items: center;
  justify-content: center;
  color: rgba(250, 250, 248, 0.35);
  font-size: 13px;
  font-weight: bold;
  transition: all 0.2s;
  margin-bottom: 0;
}

.footer-social a:hover {
  background: var(--gold);
  color: var(--black);
  border-color: var(--gold);
}

.footer-bottom {
  max-width: var(--max-width);
  margin: 0 auto;
  padding: 16px var(--content-pad);
  border-top: 1px solid rgba(255, 255, 255, 0.05);
  display: flex;
  align-items: center;
  justify-content: space-between;
  flex-wrap: wrap;
  gap: 12px;
}

.footer-bottom p {
  font-family: var(--font-ui);
  font-size: 11px;
  color: rgba(250, 250, 248, 0.2);
  letter-spacing: 0.06em;
}

.footer-bottom a {
  color: rgba(198, 161, 91, 0.5);
  display: inline;
  transition: color 0.15s;
}

.footer-bottom a:hover {
  color: var(--gold);
}

.footer-logo-wrap {
  display: flex;
  align-items: center;
  gap: 10px;
  margin-bottom: 12px;
}