/* ── photobooth and admin Theme  ── */
/* default = dark */
:root {
  --bg:      #121212;
  --bg2:     #1e1e1e;
  --text:    #f5f5f5;
  --accent:  #ffffff;
  --gold:    #b0b0b0;
  --border:  #333333;
  --muted:   #888888;
  --paper:   #1a1a1a;
  --shadow:  rgba(0, 0, 0, 0.35);
}

body.theme-white {
  --bg:      #ffffff;
  --bg2:     #f3f3f3;
  --text:    #000000;
  --accent:  #1a1a1a;
  --gold:    #4a4a4a;
  --border:  #d9d9d9;
  --muted:   #808080;
  --paper:   #ffffff;
  --shadow:  rgba(0, 0, 0, 0.12);
}

body.theme-luxury {
  --bg:      #111111;
  --bg2:     #1f1f1f;
  --text:    #f5f5f5;
  --accent:  #d4af37;
  --gold:    #d4af37;
  --border:  #6e5a1f;
  --muted:   #b8a369;
  --paper:   #262626;
  --shadow:  rgba(0, 0, 0, 0.35);
}

body.theme-black-rose {
  --bg:      #121212;
  --bg2:     #1f1a1a;
  --text:    #faf6f4;
  --accent:  #b76e79;
  --gold:    #d08a95;
  --border:  #7f4b54;
  --muted:   #c7a6ac;
  --paper:   #2b2525;
  --shadow:  rgba(0, 0, 0, 0.35);
}

/* ── end photobooth and admin Theme  ── */

*, *::before, *::after { box-sizing: border-box; }

body {
  background-color: var(--bg);
  background-image:
    radial-gradient(ellipse at 20% 30%, rgba(184,134,11,0.06) 0%, transparent 60%),
    radial-gradient(ellipse at 80% 70%, rgba(122,59,16,0.05) 0%, transparent 60%);
  color: var(--text);
  font-family: 'Playfair Display', Georgia, serif;
  display: flex;
  flex-direction: column;
}

/* ── Header ── */
.site-header {
  text-align: center;
  padding: 0.6rem 1rem 0.4rem;
  position: relative;
  flex-shrink: 0;
}

.film-line {
  height: 2px;
  background: repeating-linear-gradient(
    to right,
    var(--border) 0px, var(--border) 14px,
    transparent 14px, transparent 20px
  );
  margin-bottom: 0.5rem;
}
.film-line.bottom { margin-top: 0.5rem; margin-bottom: 0; }

.site-title {
  font-family: 'Bebas Neue', sans-serif;
  font-size: clamp(1.6rem, 5vw, 2.8rem);
  line-height: 1;
  letter-spacing: 0.1em;
  color: var(--accent);
  text-shadow: 1px 2px 0 var(--bg2), 2px 4px 6px var(--shadow);
}

.site-subtitle {
  font-family: 'Bebas Neue', sans-serif;
  font-size: 0.8rem;
  letter-spacing: 0.4em;
  color: var(--gold);
  margin-top: 0.1rem;
}

/* ── Header nav links ── */
.header-actions {
  position: absolute;
  top: 50%;
  right: 1rem;
  transform: translateY(-50%);
  display: flex;
  gap: 0.4rem;
  align-items: center;
}
.header-actions a {
  font-family: 'Bebas Neue', sans-serif;
  font-size: 0.75rem;
  letter-spacing: 0.08em;
  color: var(--muted);
  text-decoration: none;
  border: 1px solid var(--border);
  border-radius: 2px;
  padding: 3px 8px;
  transition: color 0.15s, border-color 0.15s;
  white-space: nowrap;
}
.header-actions a:hover { color: var(--accent); border-color: var(--accent); }

/* ── Mobile: hide header nav, show it below section-heading instead ── */
.mobile-nav {
  display: none;
}

@media (max-width: 575.98px) {
  .header-actions {
    display: none;
  }

  .mobile-nav {
    display: flex;
    gap: 0.4rem;
    flex-wrap: wrap;
    margin-bottom: 0.75rem;
  }

  .mobile-nav a {
    font-family: 'Bebas Neue', sans-serif;
    font-size: 0.75rem;
    letter-spacing: 0.08em;
    color: var(--muted);
    text-decoration: none;
    border: 1px solid var(--border);
    border-radius: 2px;
    padding: 3px 10px;
    white-space: nowrap;
    transition: color 0.15s, border-color 0.15s;
  }
  .mobile-nav a:hover { color: var(--accent); border-color: var(--accent); }
}
