/* ============================================
   Kellee Owens - Actor Website
   Elegant, warm, modern design
   ============================================ */

@import url('https://fonts.googleapis.com/css2?family=Cormorant+Garamond:wght@400;500;600;700&family=Montserrat:wght@300;400;500;600&display=swap');

:root {
  /* Color palette - warm and sophisticated */
  --coral: #D4654A;
  --coral-light: #E8927D;
  --coral-dark: #B84E35;
  --cream: #FBF9F7;
  --cream-dark: #F5F0EB;
  --charcoal: #1E1E1E;
  --charcoal-light: #2D2D2D;
  --grey-dark: #4A4A4A;
  --grey-medium: #7D7D7D;
  --grey-light: #C4C4C4;
  --white: #FFFFFF;
  --gold: #C9A869;
  
  /* Typography */
  --font-heading: 'Cormorant Garamond', Georgia, serif;
  --font-body: 'Montserrat', -apple-system, BlinkMacSystemFont, sans-serif;
  
  /* Spacing */
  --section-padding: 100px;
  --container-width: 1400px;
}

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

html {
  scroll-behavior: smooth;
}

body {
  font-family: var(--font-body);
  font-size: 15px;
  font-weight: 300;
  line-height: 1.7;
  color: var(--charcoal);
  background: var(--cream);
  overflow-x: hidden;
}

img {
  max-width: 100%;
  height: auto;
  display: block;
}

a {
  color: var(--coral);
  text-decoration: none;
  transition: all 0.3s ease;
}

a:hover {
  color: var(--coral-dark);
}

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

h1 {
  font-size: clamp(3.5rem, 8vw, 7rem);
  letter-spacing: -0.02em;
}

h2 {
  font-size: clamp(2rem, 4vw, 3rem);
  margin-bottom: 2rem;
}

h3 {
  font-size: 1.5rem;
  color: var(--grey-dark);
}

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

section {
  padding: var(--section-padding) 0;
}

/* Navigation */
.nav {
  position: fixed;
  top: 0;
  left: 0;
  right: 0;
  z-index: 1000;
  padding: 20px 0;
  transition: all 0.4s ease;
}

.nav.scrolled {
  background: rgba(255, 255, 255, 0.95);
  backdrop-filter: blur(20px);
  box-shadow: 0 2px 40px rgba(0, 0, 0, 0.08);
  padding: 12px 0;
}

.nav .container {
  display: flex;
  justify-content: space-between;
  align-items: center;
}

.nav-logo {
  font-family: var(--font-heading);
  font-size: 1.75rem;
  font-weight: 500;
  color: var(--charcoal);
  letter-spacing: 0.02em;
}

.nav-links {
  display: flex;
  gap: 40px;
  list-style: none;
}

.nav-links a {
  color: var(--grey-dark);
  font-size: 0.75rem;
  font-weight: 500;
  letter-spacing: 0.15em;
  text-transform: uppercase;
  position: relative;
  padding: 8px 0;
}

.nav-links a::after {
  content: '';
  position: absolute;
  bottom: 0;
  left: 0;
  width: 0;
  height: 1px;
  background: var(--coral);
  transition: width 0.4s ease;
}

.nav-links a:hover {
  color: var(--coral);
}

.nav-links a:hover::after {
  width: 100%;
}

/* Mobile nav toggle */
.nav-toggle {
  display: none;
  flex-direction: column;
  gap: 6px;
  background: none;
  border: none;
  cursor: pointer;
  padding: 8px;
}

.nav-toggle span {
  width: 28px;
  height: 1px;
  background: var(--charcoal);
  transition: all 0.3s ease;
}

/* Hero Section - Full Screen Impact */
.hero {
  min-height: 100vh;
  display: flex;
  align-items: center;
  position: relative;
  background: linear-gradient(135deg, var(--cream) 0%, var(--cream-dark) 50%, var(--cream) 100%);
  overflow: hidden;
}

.hero::before {
  content: '';
  position: absolute;
  top: -50%;
  right: -20%;
  width: 80%;
  height: 200%;
  background: radial-gradient(ellipse, rgba(212, 101, 74, 0.06) 0%, transparent 70%);
  pointer-events: none;
}

.hero .container {
  display: grid;
  grid-template-columns: 1.1fr 1fr;
  gap: 80px;
  align-items: center;
  padding-top: 80px;
}

.hero-image {
  position: relative;
  z-index: 2;
}

.hero-image-wrapper {
  position: relative;
  display: inline-block;
}

.hero-image img {
  position: relative;
  z-index: 2;
  box-shadow: 0 40px 80px -20px rgba(0, 0, 0, 0.2);
}

.hero-image-wrapper::before {
  content: '';
  position: absolute;
  top: 30px;
  left: 30px;
  right: -30px;
  bottom: -30px;
  border: 1px solid var(--coral);
  z-index: 1;
}

.hero-image-wrapper::after {
  content: '';
  position: absolute;
  top: -40px;
  left: -40px;
  width: 120px;
  height: 120px;
  border-left: 1px solid var(--gold);
  border-top: 1px solid var(--gold);
  z-index: 0;
  opacity: 0.5;
}

.hero-content {
  padding: 60px 0;
  position: relative;
  z-index: 2;
}

.hero-tagline {
  color: var(--coral);
  font-size: 0.75rem;
  font-weight: 500;
  letter-spacing: 0.25em;
  text-transform: uppercase;
  margin-bottom: 20px;
  display: flex;
  align-items: center;
  gap: 16px;
}

.hero-tagline::before {
  content: '';
  width: 40px;
  height: 1px;
  background: var(--coral);
}

.hero h1 {
  color: var(--charcoal);
  margin-bottom: 30px;
  position: relative;
}

.hero-bio {
  font-size: 1rem;
  color: var(--grey-dark);
  margin-bottom: 40px;
  max-width: 580px;
  line-height: 2;
  text-align: justify;
}

.hero-links {
  display: flex;
  gap: 20px;
  flex-wrap: wrap;
}

/* Buttons */
.btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 10px;
  padding: 16px 36px;
  font-size: 0.7rem;
  font-weight: 600;
  letter-spacing: 0.2em;
  text-transform: uppercase;
  border-radius: 0;
  transition: all 0.4s ease;
  cursor: pointer;
  border: none;
  font-family: var(--font-body);
}

.btn-primary {
  background: var(--coral);
  color: var(--white);
}

.btn-primary:hover {
  background: var(--charcoal);
  color: var(--white);
  transform: translateY(-2px);
  box-shadow: 0 10px 30px rgba(212, 101, 74, 0.3);
}

.btn-outline {
  background: transparent;
  color: var(--charcoal);
  border: 1px solid var(--charcoal);
}

.btn-outline:hover {
  background: var(--charcoal);
  color: var(--white);
  transform: translateY(-2px);
}

.btn svg {
  width: 16px;
  height: 16px;
}

/* Section Headers */
.section-header {
  text-align: center;
  margin-bottom: 60px;
}

.section-header .label {
  color: var(--coral);
  font-size: 0.7rem;
  font-weight: 600;
  letter-spacing: 0.25em;
  text-transform: uppercase;
  margin-bottom: 16px;
  display: block;
}

.section-header h2 {
  margin-bottom: 0;
}

/* Demo Reel Section */
.reel {
  background: var(--charcoal);
  color: var(--white);
  position: relative;
  overflow: hidden;
}

.reel::before {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  background: url("data:image/svg+xml,%3Csvg width='60' height='60' viewBox='0 0 60 60' xmlns='http://www.w3.org/2000/svg'%3E%3Cg fill='none' fill-rule='evenodd'%3E%3Cg fill='%23ffffff' fill-opacity='0.02'%3E%3Cpath d='M36 34v-4h-2v4h-4v2h4v4h2v-4h4v-2h-4zm0-30V0h-2v4h-4v2h4v4h2V6h4V4h-4zM6 34v-4H4v4H0v2h4v4h2v-4h4v-2H6zM6 4V0H4v4H0v2h4v4h2V6h4V4H6z'/%3E%3C/g%3E%3C/g%3E%3C/svg%3E");
}

.reel .section-header .label {
  color: var(--coral-light);
}

.reel .section-header h2 {
  color: var(--white);
}

.reel-container {
  max-width: 1000px;
  margin: 0 auto;
  position: relative;
  z-index: 1;
}

.video-wrapper {
  position: relative;
  padding-bottom: 56.25%;
  height: 0;
  overflow: hidden;
  box-shadow: 0 40px 80px -20px rgba(0, 0, 0, 0.5);
}

.video-wrapper iframe,
.video-wrapper video {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  object-fit: contain;
  background: #000;
}

.video-placeholder {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background: var(--charcoal-light);
  display: flex;
  align-items: center;
  justify-content: center;
  color: var(--grey-medium);
  font-size: 1rem;
  letter-spacing: 0.1em;
  text-transform: uppercase;
}

/* Credits Section */
.credits {
  background: var(--white);
  position: relative;
}

.credits-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(320px, 1fr));
  gap: 30px;
}

.credit-card {
  background: var(--cream);
  padding: 32px;
  position: relative;
  transition: all 0.4s ease;
  border-bottom: 3px solid transparent;
}

.credit-card:hover {
  transform: translateY(-8px);
  box-shadow: 0 20px 50px -15px rgba(0, 0, 0, 0.1);
  border-bottom-color: var(--coral);
}

.credit-title {
  font-family: var(--font-heading);
  font-size: 1.5rem;
  color: var(--charcoal);
  margin-bottom: 10px;
}

.credit-role {
  color: var(--coral);
  font-weight: 500;
  font-size: 0.9rem;
  margin-bottom: 6px;
}

.credit-meta {
  color: var(--grey-medium);
  font-size: 0.8rem;
  letter-spacing: 0.05em;
  text-transform: uppercase;
}

/* Gallery Section */
.gallery {
  background: var(--cream-dark);
}

.gallery-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
  gap: 20px;
}

.gallery-item {
  position: relative;
  overflow: hidden;
  aspect-ratio: 3/4;
}

.gallery-item img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform 0.6s ease, filter 0.6s ease;
}

.gallery-item:hover img {
  transform: scale(1.08);
  filter: brightness(1.05);
}

.gallery-item::after {
  content: '';
  position: absolute;
  inset: 0;
  background: linear-gradient(to top, rgba(0,0,0,0.3) 0%, transparent 50%);
  opacity: 0;
  transition: opacity 0.4s ease;
}

.gallery-item:hover::after {
  opacity: 1;
}

.gallery-placeholder {
  background: var(--grey-light);
  display: flex;
  align-items: center;
  justify-content: center;
  color: var(--grey-medium);
  font-size: 0.85rem;
  letter-spacing: 0.1em;
  text-transform: uppercase;
}

/* Contact Section */
.contact {
  background: var(--charcoal);
  color: var(--white);
  text-align: center;
  position: relative;
  overflow: hidden;
}

.contact::before {
  content: '';
  position: absolute;
  top: -50%;
  left: 50%;
  transform: translateX(-50%);
  width: 150%;
  height: 200%;
  background: radial-gradient(ellipse, rgba(212, 101, 74, 0.08) 0%, transparent 60%);
  pointer-events: none;
}

.contact .section-header {
  position: relative;
  z-index: 1;
}

.contact .section-header .label {
  color: var(--coral-light);
}

.contact .section-header h2 {
  color: var(--white);
}

.contact-text {
  color: var(--grey-light);
  max-width: 500px;
  margin: 0 auto 40px;
  font-size: 1.1rem;
  position: relative;
  z-index: 1;
}

.contact-email {
  font-family: var(--font-heading);
  font-size: 2rem;
  color: var(--white);
  font-weight: 400;
  position: relative;
  z-index: 1;
  transition: all 0.3s ease;
}

.contact-email:hover {
  color: var(--coral-light);
}

.social-links {
  display: flex;
  justify-content: center;
  gap: 20px;
  margin-top: 50px;
  position: relative;
  z-index: 1;
}

.social-links a {
  display: flex;
  align-items: center;
  justify-content: center;
  width: 54px;
  height: 54px;
  border: 1px solid var(--grey-dark);
  color: var(--grey-light);
  transition: all 0.4s ease;
}

.social-links a:hover {
  border-color: var(--coral);
  color: var(--coral);
  transform: translateY(-4px);
}

.social-links svg {
  width: 20px;
  height: 20px;
}

/* Footer */
.footer {
  background: var(--charcoal);
  border-top: 1px solid rgba(255,255,255,0.1);
  padding: 30px 0;
  text-align: center;
}

.footer p {
  color: var(--grey-medium);
  font-size: 0.75rem;
  letter-spacing: 0.1em;
  text-transform: uppercase;
}

/* Scroll animations */
.fade-in {
  opacity: 0;
  transform: translateY(30px);
  transition: opacity 0.8s ease, transform 0.8s ease;
}

.fade-in.visible {
  opacity: 1;
  transform: translateY(0);
}

/* Responsive */
@media (max-width: 1024px) {
  .hero .container {
    grid-template-columns: 1fr;
    gap: 60px;
    text-align: center;
  }
  
  .hero-image {
    order: 1;
    max-width: 500px;
    margin: 0 auto;
  }
  
  .hero-content {
    order: 2;
  }
  
  .hero-tagline {
    justify-content: center;
  }
  
  .hero-tagline::before {
    display: none;
  }
  
  .hero-bio {
    margin-left: auto;
    margin-right: auto;
  }
  
  .hero-links {
    justify-content: center;
  }
}

@media (max-width: 768px) {
  :root {
    --section-padding: 70px;
  }
  
  .container {
    padding: 0 24px;
  }
  
  .nav-links {
    display: none;
    position: absolute;
    top: 100%;
    left: 0;
    right: 0;
    flex-direction: column;
    background: var(--white);
    padding: 30px;
    gap: 20px;
    box-shadow: 0 20px 40px rgba(0,0,0,0.1);
  }
  
  .nav-links.active {
    display: flex;
  }
  
  .nav-toggle {
    display: flex;
  }
  
  .hero-image-wrapper::before,
  .hero-image-wrapper::after {
    display: none;
  }
  
  .hero-image img {
    box-shadow: 0 20px 50px -10px rgba(0, 0, 0, 0.2);
  }
  
  h1 {
    font-size: 3rem;
  }
  
  .contact-email {
    font-size: 1.5rem;
  }
}

@media (max-width: 480px) {
  .btn {
    width: 100%;
  }
  
  .hero-links {
    flex-direction: column;
    width: 100%;
    max-width: 280px;
    margin: 0 auto;
  }
  
  .credits-grid {
    grid-template-columns: 1fr;
  }
  
  .gallery-grid {
    grid-template-columns: 1fr;
  }
}

/* Admin Styles */
.admin-panel {
  padding: 40px;
  max-width: 800px;
  margin: 0 auto;
}

.admin-section {
  background: var(--white);
  padding: 24px;
  border-radius: 8px;
  margin-bottom: 24px;
  box-shadow: 0 2px 8px rgba(0,0,0,0.1);
}

.admin-section h3 {
  margin-bottom: 16px;
  padding-bottom: 8px;
  border-bottom: 2px solid var(--coral);
}

.form-group {
  margin-bottom: 16px;
}

.form-group label {
  display: block;
  font-weight: 500;
  margin-bottom: 6px;
  color: var(--grey-dark);
}

.form-group input,
.form-group textarea {
  width: 100%;
  padding: 12px;
  border: 1px solid var(--grey-light);
  border-radius: 4px;
  font-size: 1rem;
  font-family: inherit;
}

.form-group input:focus,
.form-group textarea:focus {
  outline: none;
  border-color: var(--coral);
}

.form-group textarea {
  min-height: 120px;
  resize: vertical;
}

.image-preview {
  margin-top: 12px;
  max-width: 200px;
  border-radius: 4px;
  overflow: hidden;
}

.image-preview img {
  width: 100%;
}

.admin-save {
  position: fixed;
  bottom: 24px;
  right: 24px;
  z-index: 100;
}
