/*
Theme Name: Vujes Interlude Landing
Theme URI: https://example.com
Author: OpenAI
Description: WordPress landing theme for Vujes Interlude x678 with original fantasy images.
Version: 1.0.0
Requires at least: 6.0
Tested up to: 6.8
Requires PHP: 7.4
Text Domain: vujes
*/

:root {
  --bg: #09080d;
  --bg2: #11101a;
  --text: #f5f0e6;
  --muted: #c7c0af;
  --gold: #d3a24e;
  --gold2: #ffd37a;
  --border: rgba(211,162,78,.24);
  --card: rgba(255,255,255,.06);
  --card2: rgba(255,255,255,.10);
  --shadow: 0 20px 60px rgba(0,0,0,.35);
  --radius: 22px;
  --max: 1180px;
}

* { box-sizing: border-box; margin: 0; padding: 0; }
html { scroll-behavior: smooth; }
body {
  font-family: Arial, Helvetica, sans-serif;
  color: var(--text);
  line-height: 1.6;
  overflow-x: hidden;
  background:
    radial-gradient(circle at 15% 10%, rgba(211,162,78,.12), transparent 26%),
    radial-gradient(circle at 85% 15%, rgba(102,70,160,.12), transparent 24%),
    linear-gradient(180deg, var(--bg) 0%, var(--bg2) 55%, var(--bg) 100%);
}
a { color: inherit; text-decoration: none; }
img { display: block; max-width: 100%; }

.container {
  width: min(var(--max), calc(100% - 32px));
  margin: 0 auto;
}

/* Header */
.topbar {
  position: sticky;
  top: 0;
  z-index: 100;
  background: rgba(9,8,13,.78);
  backdrop-filter: blur(14px);
  border-bottom: 1px solid rgba(255,255,255,.07);
}
.nav {
  min-height: 74px;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 16px;
}
.brand {
  display: flex;
  align-items: center;
  gap: 12px;
  font-weight: 900;
  letter-spacing: .4px;
}
.brand-mark {
  width: 42px;
  height: 42px;
  border-radius: 14px;
  display: grid;
  place-items: center;
  background: linear-gradient(135deg, rgba(211,162,78,.28), rgba(255,255,255,.08));
  border: 1px solid var(--border);
}
.brand-mark span { color: var(--gold2); font-size: 22px; }
.brand-sub { display: block; font-size: 12px; color: var(--muted); font-weight: 700; }
.nav-links {
  display: flex;
  gap: 18px;
  color: var(--muted);
  font-size: 14px;
}
.nav-links a:hover { color: var(--gold2); }
.nav-cta {
  display: flex;
  gap: 10px;
}

/* Buttons */
.btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  padding: 12px 18px;
  border-radius: 999px;
  border: 1px solid rgba(255,255,255,.12);
  font-weight: 800;
  transition: .2s ease;
}
.btn:hover { transform: translateY(-2px); }
.btn-primary {
  background: linear-gradient(135deg, var(--gold), var(--gold2));
  color: #1d1305;
  border-color: rgba(255,211,122,.6);
}
.btn-secondary {
  background: rgba(255,255,255,.06);
  color: var(--text);
}
.btn-danger {
  background: linear-gradient(135deg, #7f1f1f, #c55036);
  color: white;
}

/* Hero */
.hero {
  position: relative;
  min-height: calc(100vh - 74px);
  display: grid;
  align-items: center;
  overflow: hidden;
}
.hero-bg {
  position: absolute;
  inset: 0;
  background:
    linear-gradient(rgba(8,8,12,.55), rgba(8,8,12,.80)),
    linear-gradient(90deg, rgba(8,8,12,.85) 0%, rgba(8,8,12,.55) 42%, rgba(8,8,12,.70) 100%),
    url('assets/images/hero-castle.png') center/cover no-repeat;
}
.hero-grid {
  position: relative;
  z-index: 2;
  display: grid;
  grid-template-columns: 1.08fr .92fr;
  gap: 36px;
  align-items: center;
  padding: 88px 0 72px;
}
.eyebrow {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  padding: 8px 14px;
  border-radius: 999px;
  background: rgba(255,255,255,.06);
  border: 1px solid var(--border);
  color: var(--gold2);
  font-size: 13px;
  font-weight: 800;
  margin-bottom: 18px;
}
.pulse {
  width: 8px;
  height: 8px;
  border-radius: 50%;
  background: #42ff8e;
  box-shadow: 0 0 18px #42ff8e;
}
h1 {
  font-size: clamp(42px, 6.4vw, 84px);
  line-height: .95;
  letter-spacing: -2px;
  margin-bottom: 18px;
}
.gradient-text {
  background: linear-gradient(135deg, #fff7db, var(--gold2), #ff9a64);
  -webkit-background-clip: text;
  background-clip: text;
  color: transparent;
}
.hero-text {
  font-size: clamp(17px, 2vw, 20px);
  color: var(--muted);
  max-width: 700px;
  margin-bottom: 28px;
}
.hero-actions {
  display: flex;
  flex-wrap: wrap;
  gap: 12px;
}
.mini-stats {
  display: flex;
  flex-wrap: wrap;
  gap: 12px;
  margin-top: 28px;
}
.mini-stat {
  min-width: 112px;
  padding: 12px 14px;
  border-radius: 16px;
  background: rgba(255,255,255,.06);
  border: 1px solid rgba(255,255,255,.09);
}
.mini-stat strong {
  display: block;
  color: var(--gold2);
  font-size: 22px;
  line-height: 1;
  margin-bottom: 4px;
}
.mini-stat span {
  color: var(--muted);
  font-size: 13px;
}
.hero-panel {
  border: 1px solid var(--border);
  border-radius: 30px;
  background: linear-gradient(180deg, rgba(255,255,255,.11), rgba(255,255,255,.04));
  box-shadow: var(--shadow);
  overflow: hidden;
}
.hero-panel img {
  width: 100%;
  height: 340px;
  object-fit: cover;
}
.panel-content { padding: 20px; }
.panel-content h3 { font-size: 24px; margin-bottom: 10px; }
.panel-content p { color: var(--muted); font-size: 15px; }
.status-list {
  margin-top: 18px;
  display: grid;
  gap: 10px;
}
.status-item {
  display: flex;
  justify-content: space-between;
  gap: 14px;
  padding: 12px 0;
  border-bottom: 1px solid rgba(255,255,255,.08);
}
.status-item:last-child { border-bottom: none; }
.status-item span { color: var(--muted); }

/* Sections */
section { padding: 84px 0; }
.section-head {
  text-align: center;
  max-width: 780px;
  margin: 0 auto 34px;
}
.section-head h2 {
  font-size: clamp(30px, 4vw, 52px);
  line-height: 1.05;
  letter-spacing: -1.4px;
  margin-bottom: 12px;
}
.section-head p {
  color: var(--muted);
  font-size: 18px;
}
.grid {
  display: grid;
  gap: 18px;
}
.grid-3 { grid-template-columns: repeat(3, 1fr); }
.grid-4 { grid-template-columns: repeat(4, 1fr); }

.card {
  background: var(--card);
  border: 1px solid rgba(255,255,255,.09);
  border-radius: var(--radius);
  padding: 22px;
  box-shadow: 0 12px 40px rgba(0,0,0,.18);
  transition: .2s ease;
}
.card:hover {
  transform: translateY(-4px);
  background: var(--card2);
  border-color: var(--border);
}
.icon {
  width: 48px;
  height: 48px;
  border-radius: 16px;
  display: grid;
  place-items: center;
  margin-bottom: 14px;
  background: linear-gradient(135deg, rgba(211,162,78,.20), rgba(255,255,255,.05));
  border: 1px solid var(--border);
  font-size: 22px;
}
.card h3 { font-size: 20px; margin-bottom: 8px; }
.card p { color: var(--muted); font-size: 15px; }

.rates-wrap {
  padding: 24px;
  border-radius: 28px;
  border: 1px solid var(--border);
  background: linear-gradient(135deg, rgba(211,162,78,.10), rgba(255,255,255,.04));
}
.rate-card {
  text-align: center;
  padding: 20px 12px;
  border-radius: 18px;
  border: 1px solid rgba(255,255,255,.08);
  background: rgba(0,0,0,.18);
}
.rate-card strong {
  display: block;
  color: var(--gold2);
  font-size: 30px;
  line-height: 1;
  margin-bottom: 8px;
}
.rate-card span {
  color: var(--muted);
  font-weight: 700;
  font-size: 14px;
}

.split {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 24px;
  align-items: center;
}
.image-card {
  overflow: hidden;
  border-radius: 26px;
  border: 1px solid var(--border);
  background: rgba(255,255,255,.05);
  box-shadow: var(--shadow);
}
.image-card img {
  width: 100%;
  height: 420px;
  object-fit: cover;
}
.caption { padding: 18px; }
.caption h3 { font-size: 22px; margin-bottom: 6px; }
.caption p { color: var(--muted); }

.feature-list { display: grid; gap: 12px; }
.feature-line {
  display: flex;
  gap: 12px;
  padding: 14px;
  border-radius: 18px;
  background: rgba(255,255,255,.05);
  border: 1px solid rgba(255,255,255,.08);
}
.check {
  width: 24px;
  height: 24px;
  border-radius: 50%;
  flex: 0 0 24px;
  display: grid;
  place-items: center;
  background: rgba(66,255,142,.14);
  color: #42ff8e;
  font-weight: 900;
}
.feature-line strong { display: block; margin-bottom: 3px; }
.feature-line span { color: var(--muted); font-size: 14px; }

.gallery-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 18px;
  margin-top: 26px;
}
.gallery-item {
  overflow: hidden;
  border-radius: 24px;
  border: 1px solid rgba(255,255,255,.08);
}
.gallery-item img {
  width: 100%;
  height: 300px;
  object-fit: cover;
}
.gallery-caption {
  padding: 16px;
  background: rgba(255,255,255,.04);
}
.gallery-caption h3 { font-size: 20px; margin-bottom: 6px; }
.gallery-caption p { color: var(--muted); font-size: 15px; }

.cta {
  margin-top: 42px;
  padding: 34px;
  border-radius: 28px;
  background: linear-gradient(135deg, rgba(211,162,78,.18), rgba(108,72,160,.14));
  border: 1px solid var(--border);
  display: flex;
  justify-content: space-between;
  align-items: center;
  gap: 24px;
}
.cta h2 {
  font-size: clamp(28px, 4vw, 42px);
  line-height: 1.05;
  margin-bottom: 10px;
}
.cta p {
  color: var(--muted);
  max-width: 700px;
}

/* Footer */
.site-footer {
  padding: 34px 0;
  border-top: 1px solid rgba(255,255,255,.08);
  color: var(--muted);
  font-size: 14px;
}
.footer-grid {
  display: flex;
  justify-content: space-between;
  gap: 18px;
  flex-wrap: wrap;
}
.note {
  margin-top: 12px;
  font-size: 12px;
  color: rgba(195,188,171,.72);
}


/* Language Switcher */
.lang-switcher {
  display: inline-flex;
  align-items: center;
  gap: 6px;
  padding: 5px;
  border-radius: 999px;
  background: rgba(255,255,255,.06);
  border: 1px solid rgba(255,255,255,.10);
}
.lang-btn {
  appearance: none;
  border: 0;
  cursor: pointer;
  font-weight: 900;
  font-size: 12px;
  padding: 7px 9px;
  border-radius: 999px;
  color: var(--muted);
  background: transparent;
  transition: .18s ease;
}
.lang-btn:hover {
  color: var(--gold2);
}
.lang-btn.active {
  color: #1d1305;
  background: linear-gradient(135deg, var(--gold), var(--gold2));
}
@media (max-width: 720px) {
  .lang-switcher {
    order: 3;
  }
  .nav-cta {
    gap: 7px;
  }
  .lang-btn {
    padding: 6px 8px;
    font-size: 11px;
  }
}

/* Responsive */
@media (max-width: 960px) {
  .nav-links { display: none; }
  .hero-grid, .split, .gallery-grid { grid-template-columns: 1fr; }
  .grid-3, .grid-4 { grid-template-columns: repeat(2, 1fr); }
  .cta { flex-direction: column; align-items: flex-start; }
}

@media (max-width: 560px) {
  .container { width: min(100% - 22px, var(--max)); }
  .nav { min-height: 66px; }
  .brand-sub { display: none; }
  .nav-cta .btn-secondary { display: none; }
  h1 { letter-spacing: -1.5px; }
  .hero-grid { padding: 56px 0 52px; }
  .hero-panel img,
  .image-card img,
  .gallery-item img { height: 240px; }
  section { padding: 62px 0; }
  .grid-3, .grid-4 { grid-template-columns: 1fr; }
}
