@import url('https://fonts.googleapis.com/css2?family=Inter:wght@300;400;600&family=Playfair+Display:wght@600;700&display=swap');

/* -------------------------
   GLOBAL
-------------------------- */
:root {
  --bg: #07070b;
  --text: #eeeeee;
  --muted: #b8b8b8;
  --accent: #c6a667;      /* cinematic gold */
  --fade-top: rgba(0,0,0,0.72);
  --fade-bottom: rgba(0,0,0,0);
}

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

body {
  background: radial-gradient(circle at top, #161621 0, #07070b 55%);
  color: var(--text);
  font-family: 'Inter', sans-serif;
  line-height: 1.5;
}

/* A simple “container” via section instead of extra div */
.section {
  padding: 96px 12%;
  max-width: 960px;
  margin: 0 auto;
}

.section h2 {
  font-family: 'Playfair Display', serif;
  font-size: 3rem;
  color: var(--accent);
  margin-bottom: 32px;
}

/* -------------------------
   NAVIGATION
-------------------------- */
nav {
  position: absolute;
  top: 28px;
  width: 100%;
  text-align: center;
  z-index: 10;
}

nav ul {
  list-style: none;
  display: inline-flex;
  gap: 32px;
  padding: 8px 16px;
  background: rgba(5, 5, 10, 0.6);
  border-radius: 999px;
  backdrop-filter: blur(10px);
}

nav li {
  border-radius: 999px;
}

nav a {
  display: inline-block;
  padding: 6px 18px;
  color: var(--text);
  font-size: 0.95rem;
  letter-spacing: 0.09em;
  text-transform: uppercase;
  text-decoration: none;
  transition: 0.25s ease;
}

nav a:hover,
nav a.active {
  background: rgba(255,255,255,0.06);
  color: var(--accent);
}

/* -------------------------
   HERO
-------------------------- */
.hero {
  position: relative;
  height: 90vh;
  width: 100%;
  overflow: hidden;
  display: flex;
  align-items: center;
  justify-content: center;
}

.hero img {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  object-fit: cover;
  filter: saturate(0.9) contrast(1.1) brightness(0.8);
}

.hero-fade {
  position: absolute;
  inset: 0;
  background: linear-gradient(to bottom, var(--fade-top), var(--fade-bottom));
  transition: opacity 0.4s ease;
}

.hero h1 {
  position: relative;
  font-family: 'Playfair Display', serif;
  font-size: clamp(3rem, 6vw, 4.5rem);
  letter-spacing: 0.2em;
  text-transform: uppercase;
  z-index: 5;
  text-align: center;
}
.hero-tagline {
  position: relative;
  margin-top: 12px;
  font-size: 0.95rem;
  letter-spacing: 0.18em;
  text-transform: uppercase;
  color: var(--muted);
  z-index: 5;
  text-align: center;
}


/* -------------------------
   TYPOGRAPHY / BODY
-------------------------- */
p {
  color: var(--muted);
  font-size: 1.02rem;
  margin-bottom: 1.2rem;
}

/* -------------------------
   ABOUT PAGE LAYOUT
-------------------------- */
.about-layout {
  display: flex;
  flex-wrap: wrap;
  gap: 40px;
}

.about-photo {
  width: 340px;
  border-radius: 10px;
  object-fit: cover;
}

.about-text {
  flex: 1;
  min-width: 260px;
}

/* -------------------------
   MEDIA PAGE
-------------------------- */
.video-main {
  width: 100%;
  max-width: 880px;
  display: block;
  margin: 0 auto 40px auto;
  border-radius: 12px;
  overflow: hidden;
  box-shadow: 0 25px 60px rgba(0,0,0,0.6);
}

/* Carousel shell */
.carousel {
  margin-top: 4px;
  overflow-x: auto;
}

/* The scrolling strip */
.carousel-track {
  display: flex;
  gap: 18px;
  padding: 10px 4px 6px 4px;
}

.carousel-track video {
  flex: 0 0 220px;
  height: 124px;
  object-fit: cover;
  border-radius: 10px;
  cursor: pointer;
  border: 1px solid rgba(255,255,255,0.12);
  transition: transform 0.2s ease, border-color 0.2s ease;
}

.carousel-track video:hover {
  transform: translateY(-4px);
  border-color: var(--accent);
}

.carousel-video {
  position: relative;
  width: 100%;
  height: 0;
  padding-bottom: 56.25%; /* 16:9 */
  overflow: hidden;
}

.carousel-video iframe {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  border: none;
}

/* Photo gallery */
/* === MEDIA STILL CAROUSEL (FINAL WORKING VERSION) === */

/* === MEDIA STILLS STRIP – SELF-CONTAINED === */

#media-stills-strip {
  display: flex !important;
  flex-wrap: nowrap !important;
  gap: 14px;
  overflow-x: auto;
  padding: 20px 0;
  scroll-behavior: smooth;
  scrollbar-width: none;        /* Firefox: hide scrollbar */
}

#media-stills-strip::-webkit-scrollbar {
  display: none;                /* Chrome/Safari: hide scrollbar */
}

#media-stills-strip img {
  height: 140px !important;     /* force small size */
  width: auto !important;       /* override any img {width:100%} */
  flex: 0 0 auto !important;
  object-fit: cover;
  border-radius: 8px;
  box-shadow: 0 4px 12px rgba(0,0,0,0.35);
  transition: transform 0.25s ease, box-shadow 0.25s ease;
}

#media-stills-strip img:hover {
  transform: scale(1.05);
  box-shadow: 0 10px 24px rgba(0,0,0,0.5);
  cursor: pointer;
}

/* -------------------------
   RESUME PAGE
-------------------------- */
.resume-img {
  display: block;
  margin: 0 auto;
  width: 100%;
  max-width: 760px;
  border-radius: 10px;
  box-shadow: 0 25px 60px rgba(0,0,0,0.7);
}

.headshot-grid {
  margin-top: 40px;
  display: grid;
  grid-template-columns: repeat(auto-fill, minmax(220px, 1fr));
  gap: 18px;
}

.headshot-grid img {
  width: 100%;
  border-radius: 10px;
}

/* Resume links + buttons */
.resume-links {
  margin-top: 24px;
  text-align: center;
}

.resume-links-label {
  font-size: 0.78rem;
  letter-spacing: 0.18em;
  text-transform: uppercase;
  color: var(--muted);
  margin-bottom: 6px;
}

.resume-links-row {
  font-size: 0.9rem;
  color: var(--text);
}

.resume-links-row a {
  text-decoration: none;
  border-bottom: 1px solid transparent;
  padding-bottom: 2px;
  margin: 0 6px;
  transition: border-color 0.2s ease, color 0.2s ease;
}

.resume-links-row a:hover {
  border-bottom-color: var(--accent);
  color: var(--accent);
}

.resume-links-row .divider {
  color: var(--muted);
  font-size: 0.8rem;
}



/* -------------------------
   CONTACT PAGE
-------------------------- */
.contact-email {
  font-size: 1.4rem;
  text-align: center;
  margin-top: 8px;
}

.contact-email a {
  color: var(--accent);
  text-decoration: none;
}

.contact-email a:hover {
  text-decoration: underline;
}

/* -------------------------
   MOBILE
-------------------------- */
@media (max-width: 768px) {
  nav ul {
    gap: 12px;
    padding: 6px 10px;
  }

  nav a {
    padding: 6px 10px;
    font-size: 0.8rem;
    letter-spacing: 0.06em;
  }

  .section {
    padding: 72px 7%;
  }

  .about-layout {
    flex-direction: column;
    text-align: left;
  }

  .about-photo {
    width: 100%;
    max-width: 420px;
  }
}
