/*
Theme Name: Ingrid Adler — Cinematic Dark
Theme URI: https://www.ingridadler.at/
Author: Lovable
Description: Cinematic-Dark Portfolio-Theme für Schauspiel, Regie, Martial Arts & Produktionsleitung. Vollbild-Hero, sticky "Aktuell"-Feed, Showreel-Sektion und Highlights-Grid.
Version: 1.0.0
License: GNU General Public License v2 or later
License URI: http://www.gnu.org/licenses/gpl-2.0.html
Text Domain: ingrid-adler
Tags: portfolio, dark, one-column, custom-menu, custom-logo, editor-style, translation-ready
*/

/* ---------- Design tokens ---------- */
:root {
  --canvas: #17171b;
  --surface: #202024;
  --ink: #f6f6f7;
  --muted: #a1a1a8;
  --border: #34343a;
  --radius: 0;
}

* { box-sizing: border-box; }

html { scroll-behavior: smooth; -webkit-text-size-adjust: 100%; }

body {
  margin: 0;
  background: var(--canvas);
  color: var(--ink);
  font-family: "Inter", ui-sans-serif, system-ui, -apple-system, "Segoe UI", Roboto, sans-serif;
  font-feature-settings: "ss01", "cv11";
  -webkit-font-smoothing: antialiased;
  text-rendering: optimizeLegibility;
  line-height: 1.5;
}

img { max-width: 100%; height: auto; display: block; }
a { color: inherit; text-decoration: none; }
::selection { background: rgba(246,246,247,.2); }

.container { max-width: 1200px; margin: 0 auto; padding: 0 24px; }
.mono { font-family: "IBM Plex Mono", ui-monospace, SFMono-Regular, monospace; }
.eyebrow {
  font-family: "IBM Plex Mono", ui-monospace, monospace;
  font-size: 11px;
  text-transform: uppercase;
  letter-spacing: 0.3em;
  color: var(--muted);
}

/* ---------- Nav ---------- */
.site-nav {
  position: fixed; top: 0; left: 0; right: 0; z-index: 50;
  mix-blend-mode: difference;
}
.site-nav .inner {
  max-width: 1200px; margin: 0 auto; padding: 0 24px;
  height: 80px; display: flex; align-items: center; justify-content: space-between;
}
.site-nav .brand { font-weight: 500; font-size: 20px; letter-spacing: -0.03em; color: #fff; }
.site-nav ul {
  list-style: none; margin: 0; padding: 0;
  display: none; gap: 32px;
  font-family: "IBM Plex Mono", monospace;
  font-size: 11px; text-transform: uppercase; letter-spacing: 0.2em;
}
.site-nav ul a { color: #fff; transition: opacity .2s; }
.site-nav ul a:hover { opacity: .6; }
@media (min-width: 768px) { .site-nav ul { display: flex; } }

/* ---------- Hero ---------- */
.hero {
  position: relative;
  min-height: 100vh;
  display: flex; flex-direction: column; justify-content: flex-end;
  overflow: hidden;
}
.hero-bg { position: absolute; inset: 0; z-index: 0; }
.hero-bg img { width: 100%; height: 100%; object-fit: cover; object-position: center 20%; }
.hero-bg::after {
  content: ""; position: absolute; inset: 0;
  background:
    linear-gradient(to top, var(--canvas), rgba(23,23,27,.4) 40%, rgba(23,23,27,.6)),
    linear-gradient(to right, rgba(23,23,27,.7), transparent 60%);
}
.hero .content {
  position: relative; z-index: 1;
  max-width: 1200px; margin: 0 auto; width: 100%;
  padding: 0 24px 96px;
}
.hero h1 {
  font-size: clamp(60px, 12vw, 156px);
  font-weight: 500; letter-spacing: -0.04em; line-height: 0.9;
  margin: 16px 0 24px;
}
.hero .roles {
  display: flex; flex-wrap: wrap; gap: 8px 16px;
  font-family: "IBM Plex Mono", monospace; text-transform: uppercase;
  letter-spacing: .1em; font-size: 14px; color: var(--muted);
}
.hero .roles .sep { opacity: .2; }

/* ---------- Sections ---------- */
.section { padding: 128px 0; border-top: 1px solid rgba(52,52,58,.4); }
.section.surface { background: var(--surface); }
.grid-12 { display: grid; grid-template-columns: repeat(12, 1fr); gap: 48px; }
@media (max-width: 900px) { .grid-12 { grid-template-columns: 1fr; gap: 32px; } }

.col-4 { grid-column: span 4; }
.col-8 { grid-column: span 8; }
@media (max-width: 900px) { .col-4, .col-8 { grid-column: 1 / -1; } }

.section h2 {
  font-size: clamp(36px, 5vw, 56px);
  font-weight: 500; letter-spacing: -0.02em; margin: 12px 0 0;
}
.sticky { position: sticky; top: 128px; }

.lede {
  font-size: clamp(22px, 2.4vw, 30px);
  font-weight: 500; letter-spacing: -0.01em; line-height: 1.35;
  margin: 0 0 48px;
}

/* Disciplines */
.disciplines {
  display: grid; grid-template-columns: 1fr 1fr; gap: 24px;
  padding-top: 24px; border-top: 1px solid var(--border);
}
@media (max-width: 640px) { .disciplines { grid-template-columns: 1fr; } }
.disc { display: flex; justify-content: space-between; align-items: baseline; gap: 16px; }
.disc .name { font-size: 18px; font-weight: 500; }
.disc .note {
  font-family: "IBM Plex Mono", monospace; font-size: 11px;
  text-transform: uppercase; letter-spacing: .15em; color: var(--muted);
  text-align: right;
}

/* Feed */
.feed { list-style: none; margin: 0; padding: 0; }
.feed li {
  padding: 40px 0; border-top: 1px solid var(--border);
}
.feed li:first-child { padding-top: 0; border-top: 0; }
.feed .row { display: flex; flex-direction: column; gap: 12px; }
@media (min-width: 768px) {
  .feed .row { flex-direction: row; justify-content: space-between; align-items: baseline; }
}
.feed .meta { display: flex; gap: 12px; align-items: center; margin-bottom: 8px; }
.feed .num, .feed .date {
  font-family: "IBM Plex Mono", monospace; font-size: 11px;
  color: var(--muted); text-transform: uppercase; letter-spacing: .2em;
}
.feed h3 { font-size: clamp(22px, 2.4vw, 30px); font-weight: 500; letter-spacing: -0.01em; margin: 0 0 12px; }
.feed p { color: var(--muted); max-width: 640px; margin: 0; }
.feed a.link {
  font-family: "IBM Plex Mono", monospace; font-size: 12px;
  text-transform: uppercase; letter-spacing: .2em; color: var(--muted);
  transition: color .2s, transform .2s; white-space: nowrap;
}
.feed a.link:hover { color: var(--ink); transform: translateX(4px); }

/* Showreel */
.reel-head {
  display: flex; flex-direction: column; gap: 16px;
  margin-bottom: 40px;
}
@media (min-width: 768px) { .reel-head { flex-direction: row; align-items: flex-end; justify-content: space-between; } }
.reel-links { display: flex; gap: 24px; font-family: "IBM Plex Mono", monospace; font-size: 11px; text-transform: uppercase; letter-spacing: .2em; color: var(--muted); }
.reel-links a:hover { color: var(--ink); }

.reel {
  position: relative; display: block;
  aspect-ratio: 16/9; overflow: hidden;
  border: 1px solid var(--border);
}
.reel img { width: 100%; height: 100%; object-fit: cover; transition: transform .7s; }
.reel:hover img { transform: scale(1.05); }
.reel::after {
  content: ""; position: absolute; inset: 0; background: rgba(23,23,27,.4); transition: background .3s;
}
.reel:hover::after { background: rgba(23,23,27,.2); }
.reel .play {
  position: absolute; inset: 0; display: flex; align-items: center; justify-content: center;
  z-index: 2;
}
.reel .play-btn {
  width: 80px; height: 80px; border-radius: 50%;
  border: 1px solid rgba(246,246,247,.3);
  background: rgba(246,246,247,.1); backdrop-filter: blur(8px);
  display: flex; align-items: center; justify-content: center;
  transition: transform .3s;
}
.reel:hover .play-btn { transform: scale(1.1); }
.reel .play-btn::before {
  content: ""; width: 0; height: 0;
  border-top: 10px solid transparent;
  border-bottom: 10px solid transparent;
  border-left: 16px solid var(--ink);
  margin-left: 4px;
}

.reel-grid {
  margin-top: 24px;
  display: grid; grid-template-columns: repeat(4, 1fr); gap: 16px;
  font-family: "IBM Plex Mono", monospace; font-size: 12px;
  text-transform: uppercase; letter-spacing: .2em;
}
@media (max-width: 700px) { .reel-grid { grid-template-columns: repeat(2, 1fr); } }
.reel-grid a {
  padding: 16px; border: 1px solid var(--border);
  display: flex; flex-direction: column; gap: 8px;
  color: var(--muted); transition: color .2s, border-color .2s;
}
.reel-grid a:hover { color: var(--ink); border-color: rgba(246,246,247,.4); }
.reel-grid .yr { font-size: 10px; opacity: .6; }

/* Highlights */
.hl-grid { display: grid; grid-template-columns: 1fr 1fr; gap: 24px; }
@media (max-width: 640px) { .hl-grid { grid-template-columns: 1fr; } }
.hl {
  padding: 24px; border: 1px solid var(--border); background: rgba(32,32,36,.4);
  display: flex; flex-direction: column; gap: 12px;
  transition: border-color .2s;
}
.hl:hover { border-color: rgba(246,246,247,.4); }
.hl h3 { font-size: 20px; font-weight: 500; letter-spacing: -0.01em; margin: 0; }
.hl p { font-size: 14px; color: var(--muted); margin: 0; }

/* Contact / Footer */
.site-footer { padding: 128px 0 64px; border-top: 1px solid rgba(52,52,58,.4); }
.contact-grid { display: grid; grid-template-columns: 1fr; gap: 64px; margin-bottom: 96px; }
@media (min-width: 768px) { .contact-grid { grid-template-columns: 1fr 1fr; } }
.contact h2 {
  font-size: clamp(40px, 6vw, 72px);
  font-weight: 500; letter-spacing: -0.04em; margin: 24px 0;
}
.mail-btn {
  display: inline-flex; align-items: center; gap: 12px;
  background: var(--ink); color: var(--canvas);
  padding: 12px 24px; font-size: 14px; font-weight: 500;
  transition: background .2s;
}
.mail-btn:hover { background: var(--muted); }
.mail-btn .dot { width: 8px; height: 8px; border-radius: 50%; background: var(--canvas); }

.meta-cols { display: grid; grid-template-columns: 1fr 1fr; gap: 32px; font-size: 14px; }
.meta-cols .lbl { font-family: "IBM Plex Mono", monospace; font-size: 10px; text-transform: uppercase; letter-spacing: .2em; color: var(--muted); margin-bottom: 12px; }
.meta-cols a { display: block; padding: 4px 0; }
.meta-cols a:hover { color: var(--muted); }

.legal {
  padding-top: 32px; border-top: 1px solid var(--border);
  display: flex; flex-direction: column; gap: 16px; justify-content: space-between;
  font-family: "IBM Plex Mono", monospace; font-size: 10px;
  text-transform: uppercase; letter-spacing: .3em; color: var(--muted);
}
@media (min-width: 768px) { .legal { flex-direction: row; align-items: center; } }
.legal .links { display: flex; gap: 24px; }
.legal a:hover { color: var(--ink); }

/* WP core alignments / gallery basics */
.alignleft { float: left; margin: 0 24px 24px 0; }
.alignright { float: right; margin: 0 0 24px 24px; }
.aligncenter { display: block; margin: 0 auto 24px; }
.wp-caption { max-width: 100%; }
.screen-reader-text {
  position: absolute; width: 1px; height: 1px; padding: 0; margin: -1px;
  overflow: hidden; clip: rect(0,0,0,0); border: 0;
}
