/*
Theme Name: Prem Radhakishun
Theme URI: https://example.com/
Author: OpenAI
Description: WordPress conversie van een single-page portfolio website voor Prem Radhakishun.
Version: 1.0.0
Requires at least: 6.0
Tested up to: 6.5
Requires PHP: 7.4
Text Domain: prem-radhakishun
*/

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

  :root {
    --ink:    #0f1117;
    --muted:  #5a6072;
    --accent: #c0392b;
    --accent2:#e74c3c;
    --bg:     #fafafa;
    --card:   #ffffff;
    --border: #e8eaf0;
    --radius: 12px;
  }

  html { scroll-behavior: smooth; }
  body { font-family: 'Inter', sans-serif; background: var(--bg); color: var(--ink); line-height: 1.6; }

  /* ── NAV ── */
  nav {
    position: sticky; top: 0; z-index: 100;
    background: rgba(255,255,255,0.95);
    backdrop-filter: blur(12px);
    border-bottom: 1px solid var(--border);
    padding: 0 2rem;
  }
  .nav-inner {
    max-width: 1200px; margin: 0 auto;
    display: flex; align-items: center; justify-content: space-between;
    height: 64px;
  }
  .nav-logo { font-weight: 700; font-size: 1.1rem; color: var(--ink); text-decoration: none; }
  .nav-logo span { color: var(--accent); }
  .nav-links { display: flex; gap: 1.5rem; list-style: none; }
  .nav-links a { text-decoration: none; color: var(--muted); font-size: 0.9rem; font-weight: 500; transition: color .2s; }
  .nav-links a:hover { color: var(--accent); }
  .nav-cta {
    background: var(--accent); color: #fff; padding: .5rem 1.25rem;
    border-radius: 6px; font-size: 0.85rem; font-weight: 600;
    text-decoration: none; transition: background .2s;
  }
  .nav-cta:hover { background: var(--accent2); }

  /* ── HERO ── */
  .hero {
    background: linear-gradient(135deg, #0f1117 0%, #1a1f2e 50%, #2c1810 100%);
    color: #fff; padding: 6rem 2rem 5rem;
    position: relative; overflow: hidden;
  }
  .hero::before {
    content: ''; position: absolute; inset: 0;
    background: radial-gradient(ellipse at 70% 50%, rgba(192,57,43,0.25) 0%, transparent 60%);
    pointer-events: none;
  }
  .hero-inner {
    max-width: 1200px; margin: 0 auto;
    display: grid; grid-template-columns: 1fr auto; gap: 4rem; align-items: center;
  }
  .hero-tag {
    display: inline-block;
    background: rgba(192,57,43,0.25);
    border: 1px solid rgba(192,57,43,0.5);
    color: #e8a49a;
    padding: .3rem .8rem; border-radius: 50px;
    font-size: .8rem; font-weight: 600; letter-spacing: .08em; text-transform: uppercase;
    margin-bottom: 1.25rem;
  }
  .hero h1 {
    font-size: clamp(2.8rem, 5vw, 4.2rem);
    font-weight: 900; line-height: 1.05;
    letter-spacing: -.03em; margin-bottom: .75rem;
  }
  .hero h1 em { color: var(--accent2); font-style: normal; }
  .hero-sub {
    font-size: 1.2rem; color: rgba(255,255,255,0.7);
    max-width: 520px; margin-bottom: 2rem; line-height: 1.7;
  }
  .hero-actions { display: flex; gap: 1rem; flex-wrap: wrap; }
  .btn-primary {
    background: var(--accent); color: #fff;
    padding: .85rem 2rem; border-radius: 8px;
    font-weight: 600; text-decoration: none; transition: background .2s, transform .15s;
  }
  .btn-primary:hover { background: var(--accent2); transform: translateY(-1px); }
  .btn-outline {
    border: 1px solid rgba(255,255,255,0.35); color: #fff;
    padding: .85rem 2rem; border-radius: 8px;
    font-weight: 600; text-decoration: none; transition: background .2s;
  }
  .btn-outline:hover { background: rgba(255,255,255,0.1); }
  .hero-photo {
    width: 280px; height: 360px; border-radius: 16px;
    object-fit: cover; object-position: top;
    border: 4px solid rgba(192,57,43,0.5);
    box-shadow: 0 30px 80px rgba(0,0,0,0.5);
  }

  /* ── SECTION COMMON ── */
  section { padding: 5rem 2rem; }
  .section-inner { max-width: 1200px; margin: 0 auto; }
  .section-label {
    font-size: .75rem; font-weight: 700; letter-spacing: .15em;
    text-transform: uppercase; color: var(--accent); margin-bottom: .6rem;
  }
  .section-title { font-size: clamp(1.8rem, 3vw, 2.6rem); font-weight: 800; letter-spacing: -.02em; margin-bottom: 1rem; }
  .section-lead { color: var(--muted); font-size: 1.1rem; max-width: 620px; margin-bottom: 3rem; }

  /* ── STATS STRIP ── */
  .stats-strip { background: var(--ink); color: #fff; padding: 3rem 2rem; }
  .stats-inner { max-width: 1200px; margin: 0 auto; display: grid; grid-template-columns: repeat(4, 1fr); gap: 2rem; text-align: center; }
  .stat-num { font-size: 2.8rem; font-weight: 900; color: var(--accent2); line-height: 1; }
  .stat-label { font-size: .85rem; color: rgba(255,255,255,0.6); margin-top: .3rem; }

  /* ── ROLLEN GRID ── */
  .roles-grid { display: grid; grid-template-columns: repeat(auto-fill, minmax(320px, 1fr)); gap: 1.5rem; }
  .role-card {
    background: var(--card); border: 1px solid var(--border);
    border-radius: var(--radius); padding: 2rem;
    transition: box-shadow .2s, transform .2s; position: relative; overflow: hidden;
  }
  .role-card::before {
    content: ''; position: absolute; top: 0; left: 0; right: 0; height: 3px;
    background: var(--accent);
  }
  .role-card:hover { box-shadow: 0 12px 40px rgba(0,0,0,0.1); transform: translateY(-3px); }
  .role-icon { font-size: 2rem; margin-bottom: 1rem; }
  .role-title { font-size: 1.25rem; font-weight: 700; margin-bottom: .6rem; }
  .role-text { color: var(--muted); font-size: .95rem; line-height: 1.65; }

  /* ── TIMELINE ── */
  .timeline { position: relative; padding-left: 2rem; }
  .timeline::before {
    content: ''; position: absolute; left: 0; top: 8px; bottom: 8px;
    width: 2px; background: var(--border);
  }
  .tl-item { position: relative; margin-bottom: 2rem; }
  .tl-dot {
    position: absolute; left: -2.45rem; top: 6px;
    width: 14px; height: 14px; border-radius: 50%;
    background: var(--accent); border: 3px solid var(--bg);
  }
  .tl-year { font-size: .8rem; font-weight: 700; color: var(--accent); letter-spacing: .05em; text-transform: uppercase; }
  .tl-desc { font-size: .95rem; color: var(--ink); }
  .tl-sub { font-size: .875rem; color: var(--muted); }

  /* ── BIO ── */
  .bio-grid { display: grid; grid-template-columns: 1fr 1fr; gap: 4rem; align-items: start; }
  .bio-text p { color: var(--muted); line-height: 1.8; margin-bottom: 1.2rem; font-size: .97rem; }
  .bio-quote {
    background: linear-gradient(135deg, #0f1117, #1a1f2e);
    color: #fff; border-radius: var(--radius); padding: 2.5rem;
    position: sticky; top: 80px;
  }
  .bio-quote blockquote {
    font-size: 1.15rem; line-height: 1.7; color: rgba(255,255,255,0.9);
    font-style: italic; margin-bottom: 1.5rem;
  }
  .bio-quote cite { font-size: .85rem; color: var(--accent2); font-style: normal; font-weight: 600; }

  /* ── ACTEUR TABLE ── */
  .film-list { display: grid; gap: .75rem; }
  .film-item {
    display: flex; align-items: baseline; gap: 1rem;
    padding: .875rem 1rem; background: var(--card);
    border: 1px solid var(--border); border-radius: 8px;
  }
  .film-year { font-size: .8rem; font-weight: 700; color: var(--accent); width: 3rem; flex-shrink: 0; }
  .film-title { font-weight: 600; font-size: .95rem; }
  .film-medium { font-size: .8rem; color: var(--muted); margin-left: auto; background: #f0f2f5; padding: .2rem .6rem; border-radius: 4px; }

  /* ── CONTACT ── */
  .contact-section { background: linear-gradient(135deg, #0f1117, #1a1f2e); color: #fff; }
  .contact-grid { display: grid; grid-template-columns: 1fr 1fr; gap: 4rem; }
  .contact-info h2 { font-size: 2.2rem; font-weight: 800; margin-bottom: 1rem; }
  .contact-info p { color: rgba(255,255,255,0.65); margin-bottom: 2rem; line-height: 1.7; }
  .contact-detail { display: flex; align-items: center; gap: .75rem; margin-bottom: 1rem; }
  .contact-detail span { font-size: 1.2rem; }
  .contact-detail a { color: rgba(255,255,255,0.85); text-decoration: none; }
  .contact-detail a:hover { color: var(--accent2); }
  .contact-form { background: rgba(255,255,255,0.05); border: 1px solid rgba(255,255,255,0.1); border-radius: var(--radius); padding: 2.5rem; }
  .form-group { margin-bottom: 1.25rem; }
  .form-group label { display: block; font-size: .85rem; font-weight: 600; color: rgba(255,255,255,0.7); margin-bottom: .4rem; }
  .form-group input, .form-group textarea {
    width: 100%; background: rgba(255,255,255,0.08); border: 1px solid rgba(255,255,255,0.15);
    border-radius: 8px; padding: .75rem 1rem; color: #fff; font-size: .95rem;
    font-family: inherit; transition: border-color .2s;
  }
  .form-group input:focus, .form-group textarea:focus {
    outline: none; border-color: var(--accent2);
  }
  .form-group textarea { height: 120px; resize: vertical; }
  .btn-send {
    width: 100%; background: var(--accent); color: #fff; border: none;
    padding: .9rem; border-radius: 8px; font-size: 1rem; font-weight: 600;
    cursor: pointer; transition: background .2s;
  }
  .btn-send:hover { background: var(--accent2); }

  /* ── FOOTER ── */
  footer {
    background: #07090e; color: rgba(255,255,255,0.4);
    text-align: center; padding: 2rem; font-size: .85rem;
  }
  footer strong { color: rgba(255,255,255,0.7); }

  /* ── MOBILE ── */
  @media (max-width: 768px) {
    .hero-inner { grid-template-columns: 1fr; }
    .hero-photo { display: none; }
    .stats-inner { grid-template-columns: repeat(2, 1fr); }
    .bio-grid { grid-template-columns: 1fr; }
    .bio-quote { position: static; }
    .contact-grid { grid-template-columns: 1fr; }
    .nav-links { display: none; }
  }

  /* ── GALLERY ── */
  .gal-filters {
    display: flex; flex-wrap: wrap; gap: .5rem; margin-bottom: 2rem;
  }
  .gal-filter {
    padding: .45rem 1rem; border-radius: 50px; border: 1px solid var(--border);
    background: var(--card); color: var(--muted); font-size: .85rem; font-weight: 600;
    cursor: pointer; transition: all .2s;
  }
  .gal-filter:hover, .gal-filter.active {
    background: var(--accent); border-color: var(--accent); color: #fff;
  }
  .gal-grid {
    display: grid;
    grid-template-columns: repeat(auto-fill, minmax(260px, 1fr));
    gap: 1rem;
  }
  .gal-item {
    position: relative; border-radius: var(--radius); overflow: hidden;
    cursor: pointer; aspect-ratio: 4/3; background: #ddd;
  }
  .gal-item img {
    width: 100%; height: 100%; object-fit: cover;
    transition: transform .35s ease;
    display: block;
  }
  .gal-item:hover img { transform: scale(1.06); }
  .gal-overlay {
    position: absolute; inset: 0;
    background: linear-gradient(to top, rgba(0,0,0,0.75) 0%, transparent 55%);
    display: flex; flex-direction: column; justify-content: flex-end;
    padding: 1rem; opacity: 0; transition: opacity .25s;
    color: #fff;
  }
  .gal-item:hover .gal-overlay { opacity: 1; }
  .gal-overlay span { font-weight: 600; font-size: .9rem; line-height: 1.3; }
  .gal-overlay small { font-size: .75rem; opacity: .75; margin-top: .2rem; }

  /* ── LIGHTBOX ── */
  .lightbox {
    display: none; position: fixed; inset: 0; z-index: 1000;
    background: rgba(0,0,0,0.93); align-items: center; justify-content: center;
  }
  .lightbox.active { display: flex; }
  .lb-content {
    max-width: 90vw; max-height: 90vh; text-align: center;
    display: flex; flex-direction: column; align-items: center; gap: 1rem;
  }
  .lb-content img {
    max-width: 85vw; max-height: 80vh;
    object-fit: contain; border-radius: 8px;
    box-shadow: 0 20px 60px rgba(0,0,0,0.5);
  }
  #lb-caption { color: rgba(255,255,255,0.8); font-size: .95rem; }
  .lb-close {
    position: fixed; top: 1.5rem; right: 1.5rem;
    background: rgba(255,255,255,0.15); border: none; color: #fff;
    width: 42px; height: 42px; border-radius: 50%; font-size: 1.1rem;
    cursor: pointer; transition: background .2s; z-index: 1001;
  }
  .lb-close:hover { background: var(--accent); }
  .lb-prev, .lb-next {
    position: fixed; top: 50%; transform: translateY(-50%);
    background: rgba(255,255,255,0.12); border: none; color: #fff;
    width: 52px; height: 52px; border-radius: 50%; font-size: 1.8rem;
    cursor: pointer; transition: background .2s; z-index: 1001;
    display: flex; align-items: center; justify-content: center;
  }
  .lb-prev { left: 1.5rem; }
  .lb-next { right: 1.5rem; }
  .lb-prev:hover, .lb-next:hover { background: var(--accent); }

/* WordPress theme metadata lives in style.css header below */
.screen-reader-text{position:absolute;left:-9999px;top:auto;width:1px;height:1px;overflow:hidden;}
.menu-toggle{display:none;background:var(--accent);color:#fff;border:none;padding:.5rem .9rem;border-radius:6px;font-weight:600;}
.contact-form .wpcf7 form .wpcf7-response-output{margin:1rem 0 0;padding:.75rem 1rem;border-radius:8px;color:#fff;}
.contact-note{font-size:.85rem;color:rgba(255,255,255,.55);margin-top:1rem;}
@media (max-width: 768px) {
  .menu-toggle{display:block;}
  .nav-links{display:none;position:absolute;top:64px;left:0;right:0;background:#fff;padding:1rem 2rem;border-bottom:1px solid var(--border);flex-direction:column;}
  .nav-links.open{display:flex;}
}
