:root {
  --sage-green: #9CAF88;
  --rose-gold: #E8B4B8;
  --warm-tan: #D4C4A8;
  --charcoal: #2C2C2C;
  --off-white: #FAFAFA;
  --cream: #F5F3F0;
}

body {
  margin: 0;
  font-family: 'Poppins', sans-serif;
  background-color: #121212;
  color: var(--off-white);
  display: flex;
  flex-direction: column;
  min-height: 100vh;
}

header {
  background-color: #E5E5E5;
  color: var(--charcoal);
  text-align: center;
  padding: 1.5rem 1rem 0 1rem;
}

header h1 {
  font-family: 'Oooh Baby', cursive;
  font-size: 6rem;
  margin: 0;
  font-weight: 400;
}

.tagline {
  font-style: italic;
  font-size: 1.2rem;
  margin-top: 0.5rem;
}

.header-navigation {
  display: flex;
  justify-content: space-between;
  align-items: flex-start;
  margin-top: 3rem;
  padding: 0 1rem;
}

.header-nav {
  display: flex;
  justify-content: flex-start;
  gap: 3rem;
  flex-wrap: wrap;
}

.social-nav {
  display: flex;
  gap: 2rem;
  flex-wrap: wrap;
}

.nav-btn {
  color: var(--charcoal);
  text-decoration: none;
  font-weight: bold;
  font-size: 1.1rem;
  font-family: 'Poppins', sans-serif;
  transition: all 0.3s ease;
  padding: 0.5rem 1rem;
  background-color: transparent;
  position: relative;
}

.nav-btn::before {
  content: "[ ";
}

.nav-btn::after {
  content: " ]";
}

.nav-btn:hover {
  color: var(--rose-gold);
  transform: translateY(-2px);
}

main {
  flex: 1;
  padding: 2rem;
  text-align: center;
}

.intro p {
  max-width: 600px;
  margin: 0 auto 2rem;
  font-size: 1.1rem;
  color: var(--charcoal);
  line-height: 1.6;
}

.buttons {
  display: flex;
  flex-direction: column;
  gap: 1rem;
  max-width: 300px;
  margin: 0 auto;
}

.btn {
  display: block;
  background-color: var(--sage-green);
  color: var(--off-white);
  padding: 1rem;
  border-radius: 8px;
  text-decoration: none;
  font-weight: bold;
  transition: background 0.3s;
}

.btn:hover {
  background-color: var(--rose-gold);
}

footer {
  background-color: var(--charcoal);
  text-align: center;
  padding: 1rem;
  font-size: 0.9rem;
  color: var(--cream);
}
.headshot {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 1.5rem;
  padding: 2rem;
  background-color: var(--off-white);
}

.headshot img {
  max-width: 500px;
  width: 100%;
  border-radius: 1rem;
  box-shadow: 0 8px 24px rgba(44, 44, 44, 0.1);
  border: 3px solid var(--cream);
}

.headshot .bio {
  max-width: 600px;
  text-align: center;
  color: var(--charcoal);
  line-height: 1.6;
  font-family: 'Oooh Baby', cursive;
  font-size: 2.5rem;
}

.actor-content {
  max-width: 800px;
  margin: 0 auto;
  padding: 2rem;
}

.page-title {
  font-family: 'Oooh Baby', cursive;
  font-size: 3rem;
  color: var(--charcoal);
  text-align: center;
  margin-bottom: 2rem;
}

.actor-links {
  text-align: center;
  margin-bottom: 3rem;
}

.actor-bio {
  background-color: var(--off-white);
  padding: 2rem;
  border-radius: 1rem;
  margin-bottom: 3rem;
}

.actor-bio h3 {
  font-family: 'Oooh Baby', cursive;
  font-size: 2rem;
  color: var(--charcoal);
  margin-bottom: 1rem;
}

.actor-bio p {
  color: var(--charcoal);
  line-height: 1.6;
  font-size: 1.1rem;
}

.movie-stills-gallery {
  margin-bottom: 3rem;
}

.movie-stills-gallery h3 {
  font-family: 'Oooh Baby', cursive;
  font-size: 2rem;
  color: var(--charcoal);
  text-align: center;
  margin-bottom: 2rem;
}

.movie-stills-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
  gap: 1.5rem;
}

.movie-still-placeholder {
  aspect-ratio: 16/9;
  background-color: var(--cream);
  border: 2px dashed var(--charcoal);
  border-radius: 0.5rem;
  display: flex;
  align-items: center;
  justify-content: center;
  color: var(--charcoal);
  font-weight: bold;
}

.movie-still {
  aspect-ratio: 16/9;
  border-radius: 0.5rem;
  overflow: hidden;
  box-shadow: 0 4px 12px rgba(44, 44, 44, 0.2);
}

.movie-still img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform 0.3s ease;
}

.movie-still img:hover {
  transform: scale(1.05);
}

.back-link {
  text-align: center;
}

.coming-soon-content {
  max-width: 600px;
  margin: 0 auto;
  padding: 4rem 2rem;
  text-align: center;
}

.coming-soon-message {
  background-color: var(--off-white);
  padding: 3rem 2rem;
  border-radius: 1rem;
  margin-bottom: 3rem;
}

.coming-soon-message h3 {
  font-family: 'Oooh Baby', cursive;
  font-size: 3rem;
  color: var(--charcoal);
  margin-bottom: 1rem;
}

.coming-soon-message p {
  color: var(--charcoal);
  line-height: 1.6;
  font-size: 1.2rem;
}
