/*
Theme Name: Lumen Studio
Theme URI: https://lumenstudio.art
Description: Custom dark luxury theme for LUMEN Self Photo Studio Belgrade
Version: 1.0
Author: Lumen Studio
Text Domain: lumen-studio
*/

:root {
  --bg: #0a0a0a;
  --bg-2: #111111;
  --bg-3: #161616;
  --gold: #c9a961;
  --gold-soft: #d4b876;
  --burgundy: #5a1f2a;
  --text: #f5f1ea;
  --muted: #8a857d;
  --line: rgba(245, 241, 234, 0.08);
  --gold-line: rgba(201, 169, 97, 0.25);
}

* { box-sizing: border-box; margin: 0; padding: 0; }

body {
  background: var(--bg);
  color: var(--text);
  font-family: 'Inter', -apple-system, sans-serif;
  font-weight: 300;
  line-height: 1.6;
  -webkit-font-smoothing: antialiased;
  overflow-x: hidden;
}

h1, h2, h3, h4, .serif {
  font-family: 'Cormorant Garamond', Georgia, serif;
  font-weight: 400;
  letter-spacing: -0.005em;
}

em, .italic-accent {
  font-family: 'Cormorant Garamond', Georgia, serif;
  font-style: italic;
  font-weight: 300;
  color: var(--gold);
}

.container { max-width: 1240px; margin: 0 auto; padding: 0 32px; }
a { color: inherit; text-decoration: none; transition: color 0.2s; }

/* HEADER */
header {
  position: sticky; top: 0; z-index: 100;
  background: rgba(10, 10, 10, 0.85);
  backdrop-filter: blur(16px);
  border-bottom: 1px solid var(--line);
}
.nav {
  display: flex; align-items: center; justify-content: space-between;
  padding: 22px 32px; max-width: 1240px; margin: 0 auto;
}
.logo {
  font-family: 'Cormorant Garamond', serif;
  font-size: 26px; letter-spacing: 0.4em;
  font-weight: 400;
}
.logo .dot { color: var(--gold); }
.logo img { height: 48px; width: auto; display: block; }
.custom-logo-link { display: flex; align-items: center; }
.custom-logo-link img { height: 48px; width: auto; }
.nav-links { display: flex; gap: 36px; align-items: center; }
.nav-links a {
  font-size: 12px; letter-spacing: 0.2em;
  text-transform: uppercase; color: var(--muted);
}
.nav-links a:hover { color: var(--gold); }

.btn {
  display: inline-block;
  padding: 14px 32px;
  background: transparent;
  color: var(--gold);
  border: 1px solid var(--gold);
  font-family: 'Inter', sans-serif;
  font-size: 11px;
  letter-spacing: 0.25em;
  text-transform: uppercase;
  font-weight: 500;
  cursor: pointer;
  transition: all 0.3s;
}
.btn:hover { background: var(--gold); color: var(--bg); }
.btn-solid { background: var(--gold); color: var(--bg); }
.btn-solid:hover { background: var(--gold-soft); }

/* HERO */
.hero {
  min-height: 92vh;
  position: relative;
  display: flex; align-items: center;
  overflow: hidden;
}
.hero-bg {
  position: absolute; inset: 0;
  background:
    radial-gradient(circle at 80% 50%, rgba(201, 169, 97, 0.06) 0%, transparent 60%),
    linear-gradient(180deg, #0a0a0a 0%, #0d0d0d 100%);
}
.hero-image {
  position: absolute; right: 0; top: 0; bottom: 0;
  width: 55%;
  display: flex; align-items: center; justify-content: center;
  overflow: hidden;
}
.hero-image img {
  width: 100%; height: 100%; object-fit: cover;
}
.hero-image::before {
  content: '';
  position: absolute; left: 0; top: 0; bottom: 0;
  width: 35%;
  background: linear-gradient(90deg, rgba(10,10,10,1) 0%, transparent 100%);
  z-index: 1;
}
.hero-image-placeholder {
  position: absolute; inset: 0;
  background: repeating-linear-gradient(45deg, #0f0f0f, #0f0f0f 30px, #131313 30px, #131313 60px);
  display: flex; align-items: center; justify-content: center;
  color: var(--muted);
  font-size: 11px;
  letter-spacing: 0.3em;
}

.hero-inner {
  position: relative; z-index: 2;
  max-width: 600px;
  padding: 80px 0;
}
.hero-eyebrow {
  display: flex; align-items: center; gap: 14px;
  margin-bottom: 32px;
  color: var(--gold);
  font-size: 11px; letter-spacing: 0.3em;
  text-transform: uppercase;
}
.hero-eyebrow::before {
  content: ''; width: 32px; height: 1px; background: var(--gold);
}
.hero h1 {
  font-size: clamp(48px, 6vw, 84px);
  line-height: 1.0;
  margin-bottom: 32px;
  font-weight: 300;
}
.hero h1 em { display: block; }
.hero p {
  font-size: 17px;
  color: var(--muted);
  margin-bottom: 44px;
  max-width: 480px;
  line-height: 1.7;
}
.hero-actions { display: flex; gap: 16px; flex-wrap: wrap; }

/* SECTION BASE */
section { padding: 140px 0; position: relative; }
.section-eyebrow {
  color: var(--gold);
  font-size: 11px;
  letter-spacing: 0.3em;
  text-transform: uppercase;
  margin-bottom: 24px;
  display: flex; align-items: center; gap: 14px;
}
.section-eyebrow::before {
  content: ''; width: 32px; height: 1px; background: var(--gold);
}
.section-eyebrow.centered { justify-content: center; }
.section-title {
  font-size: clamp(40px, 5vw, 64px);
  line-height: 1.05;
  margin-bottom: 28px;
  font-weight: 300;
}
.section-intro {
  color: var(--muted);
  font-size: 17px;
  max-width: 620px;
  line-height: 1.7;
  margin-bottom: 80px;
}
.centered-head { text-align: center; max-width: 720px; margin: 0 auto 80px; }
.centered-head .section-intro { margin-left: auto; margin-right: auto; }

/* MANIFESTO */
.manifesto {
  background: var(--bg-2);
  text-align: center;
  padding: 120px 0;
  border-top: 1px solid var(--line);
  border-bottom: 1px solid var(--line);
}
.manifesto-text {
  max-width: 800px; margin: 0 auto;
  font-family: 'Cormorant Garamond', serif;
  font-size: clamp(24px, 2.5vw, 32px);
  font-weight: 300;
  line-height: 1.5;
  color: var(--text);
}
.manifesto-text em { font-size: 1em; }

/* BACKDROPS */
.backdrops { background: var(--bg); }
.backdrop-grid {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 0;
  border-top: 1px solid var(--line);
  border-left: 1px solid var(--line);
}
.backdrop {
  aspect-ratio: 4/5;
  border-right: 1px solid var(--line);
  border-bottom: 1px solid var(--line);
  padding: 48px;
  display: flex; flex-direction: column; justify-content: space-between;
  position: relative; overflow: hidden;
  transition: all 0.4s;
  cursor: pointer;
}
.backdrop-white { background: #f5f1ea; color: #1a1a1a; }
.backdrop-black { background: #050505; color: #f5f1ea; }
.backdrop-gray { background: #4a4845; color: #f5f1ea; }
.backdrop-burgundy { background: #5a1f2a; color: #f5f1ea; }
.backdrop-num {
  font-family: 'Cormorant Garamond', serif;
  font-size: 14px; letter-spacing: 0.3em;
  opacity: 0.6;
}
.backdrop-content h3 {
  font-size: clamp(36px, 4vw, 56px);
  line-height: 1.0;
  margin-bottom: 16px;
  font-weight: 300;
}
.backdrop-content h3 em { display: block; }
.backdrop-white em { color: #5a1f2a; }
.backdrop-black em, .backdrop-gray em, .backdrop-burgundy em { color: var(--gold); }
.backdrop-content p {
  font-size: 14px;
  opacity: 0.75;
  max-width: 320px;
  line-height: 1.6;
}
.backdrop:hover { transform: scale(0.98); }

/* HOW IT WORKS */
.how {
  background: var(--bg-2);
  border-top: 1px solid var(--line);
  border-bottom: 1px solid var(--line);
}
.steps {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 0;
  border-top: 1px solid var(--line);
}
.step {
  padding: 60px 40px;
  border-right: 1px solid var(--line);
  position: relative;
}
.step:last-child { border-right: none; }
.step-num {
  font-family: 'Cormorant Garamond', serif;
  font-size: 16px; letter-spacing: 0.3em;
  color: var(--gold);
  margin-bottom: 32px;
}
.step h3 {
  font-size: 32px;
  margin-bottom: 16px;
  font-weight: 400;
}
.step h3 em { font-size: 1em; display: inline; }
.step p { color: var(--muted); font-size: 15px; line-height: 1.7; }

/* GALLERY */
.gallery-grid {
  display: grid;
  grid-template-columns: repeat(6, 1fr);
  grid-auto-rows: 140px;
  gap: 4px;
}
.gal-item {
  background: linear-gradient(135deg, #141414, #1a1a1a);
  border: 1px solid var(--line);
  overflow: hidden;
  position: relative;
}
.gal-item img {
  width: 100%; height: 100%; object-fit: cover;
  transition: transform 0.5s ease;
}
.gal-item:hover img { transform: scale(1.03); }
.gal-item-placeholder {
  position: absolute; inset: 0;
  display: flex; align-items: center; justify-content: center;
  color: var(--muted);
  font-size: 10px;
  letter-spacing: 0.2em;
  text-align: center;
  padding: 16px;
}
.gal-1 { grid-column: span 2; grid-row: span 2; }
.gal-2 { grid-column: span 2; grid-row: span 1; }
.gal-3 { grid-column: span 2; grid-row: span 2; }
.gal-4 { grid-column: span 2; grid-row: span 1; }
.gal-5 { grid-column: span 3; grid-row: span 2; }
.gal-6 { grid-column: span 3; grid-row: span 2; }

/* PACKAGES */
.packages-bg {
  background: var(--bg-2);
  border-top: 1px solid var(--line);
  border-bottom: 1px solid var(--line);
}
.pkg-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 1px;
  background: var(--line);
  border: 1px solid var(--line);
}
.pkg {
  background: var(--bg-2);
  padding: 56px 40px;
  transition: background 0.3s;
  position: relative;
}
.pkg:hover { background: var(--bg-3); }
.pkg-name {
  font-size: 13px; letter-spacing: 0.3em;
  text-transform: uppercase;
  color: var(--gold);
  margin-bottom: 24px;
}
.pkg h3 { font-size: 44px; font-weight: 300; margin-bottom: 8px; }
.pkg-meta {
  color: var(--muted);
  font-size: 13px;
  letter-spacing: 0.05em;
  margin-bottom: 36px;
  padding-bottom: 36px;
  border-bottom: 1px solid var(--line);
}
.pkg ul { list-style: none; margin-bottom: 40px; }
.pkg li {
  padding: 10px 0;
  color: var(--muted);
  font-size: 14px;
  display: flex; gap: 12px;
}
.pkg li::before { content: '—'; color: var(--gold); flex-shrink: 0; }
.pkg-price {
  font-family: 'Cormorant Garamond', serif;
  font-size: 36px;
  font-weight: 300;
  margin-bottom: 8px;
}
.pkg-price small { font-size: 14px; color: var(--muted); margin-left: 8px; }
.pkg-price-note { font-size: 12px; color: var(--muted); margin-bottom: 32px; letter-spacing: 0.05em; }

/* DATE NIGHT */
.date-night {
  margin-top: 80px;
  background: linear-gradient(135deg, #1a0d11 0%, #0a0a0a 100%);
  border: 1px solid var(--gold-line);
  padding: 80px;
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 80px;
  align-items: center;
  position: relative;
}
.date-night::before {
  content: 'NOVO';
  position: absolute;
  top: 32px; right: 32px;
  background: var(--gold);
  color: var(--bg);
  padding: 6px 14px;
  font-size: 10px;
  letter-spacing: 0.25em;
  font-weight: 600;
}
.date-content h3 { font-size: 56px; line-height: 1.0; margin-bottom: 24px; font-weight: 300; }
.date-content h3 em { display: block; }
.date-content p { color: var(--muted); font-size: 16px; line-height: 1.7; margin-bottom: 32px; }
.date-features {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 16px;
  margin-bottom: 40px;
}
.date-feature {
  color: var(--text);
  font-size: 13px;
  padding: 14px 0;
  border-top: 1px solid var(--line);
  letter-spacing: 0.03em;
}
.date-feature span {
  display: block;
  color: var(--gold);
  font-size: 10px;
  letter-spacing: 0.25em;
  text-transform: uppercase;
  margin-bottom: 4px;
}
.date-image {
  aspect-ratio: 4/5;
  border: 1px solid var(--gold-line);
  overflow: hidden;
  position: relative;
}
.date-image img { width: 100%; height: 100%; object-fit: cover; }
.date-image-placeholder {
  position: absolute; inset: 0;
  background: linear-gradient(135deg, #2a0e15 0%, #1a0d11 100%);
  display: flex; align-items: center; justify-content: center;
  color: var(--gold);
  font-size: 11px;
  letter-spacing: 0.25em;
  text-align: center;
  padding: 24px;
}
.date-price-row { display: flex; align-items: baseline; gap: 24px; margin-bottom: 32px; }
.date-price {
  font-family: 'Cormorant Garamond', serif;
  font-size: 56px;
  font-weight: 300;
  color: var(--gold);
}
.date-price small { font-size: 16px; color: var(--muted); margin-left: 8px; }

/* USE CASES */
.use-cases-grid {
  display: grid;
  grid-template-columns: repeat(5, 1fr);
  gap: 1px;
  background: var(--line);
  border: 1px solid var(--line);
}
.use-case {
  background: var(--bg);
  padding: 60px 24px 48px;
  text-align: center;
  transition: background 0.3s;
  cursor: pointer;
}
.use-case:hover { background: var(--bg-2); }
.use-icon { width: 32px; height: 32px; margin: 0 auto 24px; color: var(--gold); }
.use-case h4 { font-size: 24px; margin-bottom: 8px; font-weight: 400; }
.use-case p { font-size: 12px; color: var(--muted); letter-spacing: 0.05em; line-height: 1.5; }

/* PRIVACY */
.privacy {
  background: var(--bg-2);
  border-top: 1px solid var(--line);
  border-bottom: 1px solid var(--line);
}
.privacy-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 80px;
  align-items: center;
}
.privacy-list { display: grid; gap: 32px; }
.privacy-item {
  display: grid;
  grid-template-columns: 32px 1fr;
  gap: 20px;
  align-items: start;
}
.privacy-icon { width: 24px; height: 24px; color: var(--gold); margin-top: 4px; }
.privacy-item h4 { font-size: 22px; margin-bottom: 8px; font-weight: 400; }
.privacy-item p { color: var(--muted); font-size: 14px; line-height: 1.7; }

/* FAQ */
.faq-list { max-width: 880px; margin: 0 auto; }
.faq-item { border-bottom: 1px solid var(--line); padding: 28px 0; }
.faq-q {
  font-family: 'Cormorant Garamond', serif;
  font-size: 24px;
  font-weight: 400;
  margin-bottom: 12px;
  display: flex; align-items: start; justify-content: space-between;
  gap: 24px;
  cursor: pointer;
}
.faq-q::after { content: '+'; color: var(--gold); font-family: 'Inter', sans-serif; font-weight: 300; font-size: 24px; }
.faq-a { color: var(--muted); font-size: 15px; line-height: 1.7; max-width: 720px; }

/* CTA */
.cta {
  text-align: center;
  padding: 160px 0;
  background:
    radial-gradient(circle at 50% 50%, rgba(201, 169, 97, 0.05) 0%, transparent 60%),
    var(--bg);
  border-top: 1px solid var(--line);
}
.cta h2 { font-size: clamp(44px, 5vw, 72px); margin-bottom: 24px; font-weight: 300; line-height: 1.1; }
.cta p { color: var(--muted); margin-bottom: 48px; font-size: 18px; }

/* FOOTER */
footer {
  background: #050505;
  padding: 80px 0 40px;
  border-top: 1px solid var(--line);
}
.footer-grid {
  display: grid;
  grid-template-columns: 2fr 1fr 1fr 1fr;
  gap: 60px;
  margin-bottom: 60px;
}
.footer-col h5 {
  color: var(--gold);
  font-size: 11px;
  letter-spacing: 0.3em;
  text-transform: uppercase;
  margin-bottom: 24px;
  font-weight: 500;
}
.footer-col a, .footer-col p {
  display: block;
  color: var(--muted);
  font-size: 14px;
  text-decoration: none;
  padding: 6px 0;
  line-height: 1.6;
}
.footer-col a:hover { color: var(--gold); }
.footer-bottom {
  border-top: 1px solid var(--line);
  padding-top: 32px;
  text-align: center;
  color: var(--muted);
  font-size: 12px;
  letter-spacing: 0.1em;
}
.footer-logo { font-family: 'Cormorant Garamond', serif; font-size: 26px; letter-spacing: 0.4em; margin-bottom: 24px; }
.footer-logo .dot { color: var(--gold); }
.footer-tagline { color: var(--muted); font-size: 14px; line-height: 1.7; max-width: 320px; }
.footer-logo img { height: 48px; width: auto; margin-bottom: 24px; }

/* BOOKING PAGE */
.booking-page-wrap {
  min-height: 80vh;
  padding: 120px 0;
  background: var(--bg);
}
.booking-page-head {
  text-align: center;
  margin-bottom: 60px;
}
.amelia-wrap {
  max-width: 900px;
  margin: 0 auto;
}

/* MOBILE */
@media (max-width: 768px) {
  .nav-links { display: none; }
  .hero-image { display: none; }
  .hero-inner { max-width: 100%; }
  .backdrop-grid, .steps, .pkg-grid, .use-cases-grid,
  .privacy-grid, .footer-grid, .date-night {
    grid-template-columns: 1fr;
  }
  .gallery-grid { grid-template-columns: repeat(2, 1fr); }
  .gal-1, .gal-2, .gal-3, .gal-4, .gal-5, .gal-6 {
    grid-column: span 2; grid-row: span 1;
  }
  .step, .pkg, .use-case { border-right: none !important; border-bottom: 1px solid var(--line); }
  .date-night { padding: 40px; gap: 40px; }
  section { padding: 80px 0; }
  .container { padding: 0 20px; }
  .date-night { grid-template-columns: 1fr; }
  .date-content h3 { font-size: 40px; }
}
