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

/* CSS Variables */
:root {
  --font-heading: 'Playfair Display', Georgia, serif;
  --font-body: 'Inter', -apple-system, BlinkMacSystemFont, sans-serif;
  --color-bg: #000;
  --color-bg-light: #0a0a0a;
  --color-text: #fff;
  --color-text-muted: #888;
  --color-accent: #c9a227;
  --color-accent-hover: #ddb84a;
  --max-width: 1200px;
  --transition: 0.3s ease;
}

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

html {
  font-size: 16px;
  scroll-behavior: smooth;
}

body {
  font-family: var(--font-body);
  background: var(--color-bg);
  color: var(--color-text);
  line-height: 1.7;
  min-height: 100vh;
  display: flex;
  flex-direction: column;
}

/* Typography */
h1, h2, h3, h4 {
  font-family: var(--font-heading);
  font-weight: 600;
  line-height: 1.2;
}

h1 { font-size: 3.5rem; }
h2 { font-size: 2.5rem; color: var(--color-accent); margin-bottom: 1.5rem; }
h3 { font-size: 1.5rem; margin-bottom: 1rem; }

a {
  color: var(--color-accent);
  text-decoration: none;
  transition: color var(--transition);
}

a:hover {
  color: var(--color-accent-hover);
}

p {
  margin-bottom: 1.5rem;
  color: rgba(255, 255, 255, 0.9);
}

/* Layout */
.container {
  max-width: var(--max-width);
  margin: 0 auto;
  padding: 0 2rem;
}

main {
  flex: 1;
}

/* Header / Navigation */
header {
  position: fixed;
  top: 0;
  left: 0;
  right: 0;
  z-index: 1000;
  background: rgba(0, 0, 0, 0.9);
  backdrop-filter: blur(10px);
  border-bottom: 1px solid rgba(255, 255, 255, 0.1);
}

nav {
  display: flex;
  justify-content: space-between;
  align-items: center;
  padding: 1rem 2rem;
  max-width: var(--max-width);
  margin: 0 auto;
}

.logo {
  font-family: var(--font-heading);
  font-size: 1.5rem;
  font-weight: 700;
  color: var(--color-text);
}

.nav-links {
  display: flex;
  gap: 2rem;
  list-style: none;
}

.nav-links a {
  color: var(--color-text);
  font-weight: 500;
  font-size: 0.95rem;
  letter-spacing: 0.02em;
  transition: color var(--transition);
}

.nav-links a:hover,
.nav-links a.active {
  color: var(--color-accent);
}

/* Mobile Menu */
.menu-toggle {
  display: none;
  background: none;
  border: none;
  color: var(--color-text);
  font-size: 1.5rem;
  cursor: pointer;
}

/* Hero Section */
.hero {
  min-height: 100vh;
  display: flex;
  align-items: center;
  justify-content: center;
  text-align: center;
  background: linear-gradient(rgba(0, 0, 0, 0.5), rgba(0, 0, 0, 0.7)),
              url('images/hero-banner.jpg') center/cover no-repeat;
  padding-top: 80px;
}

.hero-content {
  animation: fadeInUp 0.8s ease-out;
}

.hero h1 {
  font-size: 4.5rem;
  margin-bottom: 1rem;
  background: linear-gradient(135deg, #fff 0%, var(--color-accent) 100%);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
}

.hero .tagline {
  font-size: 1.3rem;
  letter-spacing: 0.2em;
  text-transform: uppercase;
  color: var(--color-text-muted);
  margin-bottom: 2rem;
}

/* Page Header */
.page-header {
  padding: 8rem 0 4rem;
  text-align: center;
  background: var(--color-bg-light);
}

.page-header h1 {
  background: linear-gradient(135deg, #fff 0%, var(--color-accent) 100%);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
}

/* Content Section */
.content-section {
  padding: 4rem 0;
}

.content-section.alt {
  background: var(--color-bg-light);
}

/* Bio Styles */
.bio-content {
  max-width: 800px;
  margin: 0 auto;
}

.bio-content p:first-of-type {
  font-size: 1.2rem;
  text-align: center;
  margin-bottom: 2.5rem;
}

/* Video/Media Grid */
.media-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(400px, 1fr));
  gap: 2rem;
}

.media-item {
  background: var(--color-bg-light);
  border-radius: 8px;
  overflow: hidden;
}

.media-item h3 {
  padding: 1rem;
  margin: 0;
}

.video-wrapper {
  position: relative;
  padding-bottom: 56.25%;
  height: 0;
}

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

/* Audio Player */
.audio-item {
  background: var(--color-bg-light);
  padding: 1.5rem;
  border-radius: 8px;
  margin-bottom: 1.5rem;
}

.audio-item h3 {
  margin-bottom: 1rem;
}

.audio-item audio {
  width: 100%;
}

/* Gallery Grid */
.gallery-section {
  margin-bottom: 3rem;
}

.gallery-grid {
  display: grid;
  grid-template-columns: repeat(auto-fill, minmax(250px, 1fr));
  gap: 1rem;
}

.gallery-grid img {
  width: 100%;
  height: 200px;
  object-fit: cover;
  border-radius: 8px;
  transition: transform var(--transition), box-shadow var(--transition);
  cursor: pointer;
}

.gallery-grid img:hover {
  transform: scale(1.03);
  box-shadow: 0 10px 30px rgba(201, 162, 39, 0.2);
}

/* Contact */
.contact-content {
  max-width: 600px;
  margin: 0 auto;
  text-align: center;
}

.contact-content p {
  font-size: 1.2rem;
  margin-bottom: 2rem;
}

.email-link {
  display: inline-block;
  background: var(--color-accent);
  color: #000 !important;
  padding: 1rem 2.5rem;
  border-radius: 4px;
  font-weight: 600;
  text-transform: uppercase;
  letter-spacing: 0.05em;
  transition: all var(--transition);
}

.email-link:hover {
  background: var(--color-accent-hover);
  transform: translateY(-2px);
  box-shadow: 0 5px 20px rgba(201, 162, 39, 0.3);
}

.social-links {
  margin-top: 3rem;
}

.social-links h3 {
  margin-bottom: 1.5rem;
  color: var(--color-text-muted);
  font-size: 1rem;
  text-transform: uppercase;
  letter-spacing: 0.1em;
}

.social-icons {
  display: flex;
  justify-content: center;
  gap: 1.5rem;
}

.social-icons a {
  color: var(--color-text-muted);
  font-size: 1.5rem;
  transition: all var(--transition);
}

.social-icons a:hover {
  color: var(--color-accent);
  transform: translateY(-3px);
}

/* Footer */
footer {
  background: var(--color-bg-light);
  padding: 2rem;
  text-align: center;
  border-top: 1px solid rgba(255, 255, 255, 0.1);
}

footer p {
  color: var(--color-text-muted);
  font-size: 0.9rem;
  margin: 0;
}

footer .social-icons {
  margin-bottom: 1rem;
}

/* Animations */
@keyframes fadeInUp {
  from {
    opacity: 0;
    transform: translateY(30px);
  }
  to {
    opacity: 1;
    transform: translateY(0);
  }
}

.fade-in {
  animation: fadeInUp 0.6s ease-out;
}

/* Responsive */
@media (max-width: 768px) {
  .nav-links {
    display: none;
    position: absolute;
    top: 100%;
    left: 0;
    right: 0;
    background: rgba(0, 0, 0, 0.95);
    flex-direction: column;
    padding: 1rem;
    gap: 0;
  }

  .nav-links.active {
    display: flex;
  }

  .nav-links li {
    border-bottom: 1px solid rgba(255, 255, 255, 0.1);
  }

  .nav-links a {
    display: block;
    padding: 1rem;
  }

  .menu-toggle {
    display: block;
  }

  h1 { font-size: 2.5rem; }
  .hero h1 { font-size: 3rem; }
  .hero .tagline { font-size: 1rem; }

  .media-grid {
    grid-template-columns: 1fr;
  }
}

/* Ghost-style Gallery Cards (Bio page) */
.kg-gallery-card {
  margin: 2rem 0;
}

.kg-gallery-card.kg-width-wide {
  margin-left: -10%;
  margin-right: -10%;
  width: 120%;
}

.kg-gallery-row {
  display: flex;
  gap: 1rem;
  justify-content: center;
}

.kg-gallery-row img {
  flex: 1;
  max-width: 33.333%;
  height: auto;
  object-fit: cover;
  border-radius: 8px;
}

.kg-image-card {
  margin: 2rem 0;
  text-align: center;
}

.kg-image-card img {
  max-width: 100%;
  height: auto;
  border-radius: 8px;
}

/* gh-content styles */
.gh-content p {
  font-size: 1.1rem;
  line-height: 1.8;
}

.gh-content a {
  border-bottom: 1px solid transparent;
}

.gh-content a:hover {
  border-bottom-color: var(--color-accent);
}

/* Responsive gallery */
@media (max-width: 768px) {
  .kg-gallery-card.kg-width-wide {
    margin-left: 0;
    margin-right: 0;
    width: 100%;
  }
  
  .kg-gallery-row {
    flex-direction: column;
  }
  
  .kg-gallery-row img {
    max-width: 100%;
  }
}

/* Demo Reels Grid */
.demo-reels-grid {
  display: flex;
  flex-direction: column;
  gap: 3rem;
  max-width: 900px;
  margin: 0 auto;
}

.demo-reels-grid .media-item {
  background: var(--color-bg-light);
  border-radius: 8px;
  overflow: hidden;
}

.demo-reels-grid .media-item h3 {
  padding: 1rem 1.5rem;
  margin: 0;
  text-align: center;
  color: var(--color-accent);
}

/* VO Page */
.vo-content {
  max-width: 700px;
  margin: 0 auto;
}

.vo-intro {
  text-align: center;
  font-size: 1.2rem;
  margin-bottom: 2rem;
}

/* Gallery Captions */
.gallery-caption {
  text-align: center;
  color: var(--color-accent);
  font-style: italic;
  margin-top: 1rem;
  margin-bottom: 3rem;
}

/* Scrollable Gallery Sections */
.gallery-scroll-wrapper {
  position: relative;
}

.gallery-scroll {
  display: flex;
  gap: 1rem;
  overflow-x: auto;
  padding: 1rem 0;
  scroll-snap-type: x mandatory;
  scroll-behavior: smooth;
  -webkit-overflow-scrolling: touch;
}

.gallery-scroll::-webkit-scrollbar {
  display: none;
}

.gallery-scroll {
  scrollbar-width: none;
}

.gallery-scroll img {
  flex-shrink: 0;
  height: 250px;
  width: auto;
  object-fit: cover;
  border-radius: 8px;
  scroll-snap-align: start;
  transition: transform var(--transition);
}

.gallery-scroll img:hover {
  transform: scale(1.02);
}

.gallery-arrow {
  position: absolute;
  top: 50%;
  transform: translateY(-50%);
  width: 40px;
  height: 40px;
  border-radius: 50%;
  border: none;
  background: rgba(201, 162, 39, 0.85);
  color: #000;
  font-size: 1.2rem;
  cursor: pointer;
  z-index: 2;
  display: flex;
  align-items: center;
  justify-content: center;
  transition: opacity 0.3s, background 0.3s;
  box-shadow: 0 2px 8px rgba(0, 0, 0, 0.4);
}

.gallery-arrow:hover {
  background: var(--color-accent-hover);
}

.gallery-arrow.hidden {
  opacity: 0;
  pointer-events: none;
}

.gallery-arrow-left {
  left: 8px;
}

.gallery-arrow-right {
  right: 8px;
}

.gallery-section h2 {
  margin-bottom: 0.5rem;
}
