/* Google Fonts */
@import url('https://fonts.googleapis.com/css2?family=Open+Sans:ital,wght@0,300;0,400;0,600;0,700;1,400&family=Josefin+Sans:wght@400;600&display=swap');

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

body {
  background: white;
  color: #333;
  font-family: 'Open Sans', sans-serif;
  font-size: 14px;
  line-height: 1.8;
}

.container {
  max-width: 1400px;
  margin: 0 auto;
  padding: 20px 40px;
}

/* Header */
header {
  text-align: center;
  padding: 60px 20px 40px;
}

.site-title {
  font-family: 'Open Sans', sans-serif;
  font-size: 40px;
  font-weight: 400;
  letter-spacing: 4px;
  color: #222;
  text-shadow: 1px 1px 0 #ccc;
  margin-bottom: 30px;
}

nav {
  text-align: center;
  margin-bottom: 40px;
}

nav ul {
  list-style: none;
  display: inline-flex;
  gap: 0;
}

nav li {
  border-right: 1px solid #999;
  padding: 0 30px;
}

nav li:first-child {
  border-left: 1px solid #999;
}

nav a {
  font-family: 'Josefin Sans', sans-serif;
  text-transform: uppercase;
  letter-spacing: 2px;
  font-size: 14px;
  font-weight: 600;
  color: #333;
  text-decoration: none;
  transition: color 0.3s;
}

nav a:hover,
nav a.active {
  color: #999;
}

/* Footer */
footer {
  text-align: right;
  padding: 60px 40px 40px;
  font-size: 14px;
  color: #666;
  display: flex;
  align-items: center;
  justify-content: flex-end;
  gap: 20px;
}

footer p {
  max-width: 400px;
}

.social-icons {
  display: flex;
  gap: 10px;
}

.social-icons a {
  display: block;
  width: 40px;
  height: 40px;
  background: #000;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  transition: opacity 0.3s;
}

.social-icons a:hover {
  opacity: 0.7;
}

.social-icons svg {
  width: 20px;
  height: 20px;
  fill: white;
}

/* Home Page */
.home-layout {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 60px;
  margin-bottom: 60px;
}

.image-column {
  display: flex;
  flex-direction: column;
  gap: 8px;
}

.hero-image img {
  width: 100%;
  height: auto;
  display: block;
}

.bottom-row {
  display: grid;
  grid-template-columns: 1.8fr 1fr;
  gap: 8px;
}

.bottom-row img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  display: block;
}

.bio-text p {
  margin-bottom: 24px;
  text-align: left;
}

/* Productions Page */
.productions-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 30px;
  margin-bottom: 60px;
}

.production-card {
  position: relative;
  height: 500px;
  overflow: hidden;
  cursor: pointer;
}

.production-card img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform 0.3s;
}

.production-card:hover img {
  transform: scale(1.05);
}

.production-card h2 {
  position: absolute;
  top: 30px;
  color: white;
  font-family: 'Josefin Sans', sans-serif;
  font-size: 24px;
  letter-spacing: 3px;
  font-weight: 600;
  z-index: 10;
  text-shadow: 2px 2px 4px rgba(0,0,0,0.5);
}

.production-card:nth-child(1) h2 {
  left: 30px;
}

.production-card:nth-child(2) h2 {
  right: 30px;
}

/* Something Honest Page */
.something-honest-layout {
  display: grid;
  grid-template-columns: 1.5fr 1fr;
  gap: 60px;
  margin-bottom: 60px;
}

.page-title {
  text-align: center;
  font-family: 'Josefin Sans', sans-serif;
  font-size: 28px;
  letter-spacing: 4px;
  margin-bottom: 10px;
  font-weight: 600;
}

.page-subtitle {
  text-align: center;
  font-family: 'Open Sans', sans-serif;
  font-style: italic;
  font-size: 16px;
  margin-bottom: 40px;
  color: #666;
}

.video-container {
  margin-bottom: 40px;
}

.film-stills {
  display: flex;
  flex-direction: column;
  gap: 20px;
}

.film-stills img {
  width: 100%;
  height: auto;
}

.director-statement p {
  margin-bottom: 24px;
  text-align: left;
}

/* Production Reel Page */
.reel-container {
  max-width: 900px;
  margin: 0 auto 60px;
}

.reel-title {
  text-align: center;
  font-family: 'Open Sans', sans-serif;
  font-style: italic;
  font-weight: 400;
  font-size: 28px;
  margin-bottom: 40px;
  color: #333;
}

/* NYOFF Page */
.nyoff-section {
  background: linear-gradient(135deg, #d4a5d4 0%, #c99ec9 50%, #b88db8 100%);
  padding: 60px 40px;
  margin: 0 -40px 40px;
}

.nyoff-layout {
  display: grid;
  grid-template-columns: 1fr 1.2fr;
  gap: 60px;
  max-width: 1400px;
  margin: 0 auto;
}

.nyoff-photos {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 15px;
  align-content: start;
}

.nyoff-photos img {
  width: 100%;
  height: auto;
}



.nyoff-text {
  text-align: center;
}

.nyoff-text p {
  margin-bottom: 24px;
}

.nyoff-text a {
  color: #333;
  text-decoration: underline;
}

.nyoff-text a:hover {
  color: #666;
}

@media (max-width: 768px) {
  .home-layout,
  .something-honest-layout,
  .nyoff-layout,
  .productions-grid {
    grid-template-columns: 1fr;
  }
  
  .site-title {
    font-size: 32px;
  }
  
  nav li {
    padding: 0 15px;
  }
  
  footer {
    flex-direction: column;
    text-align: center;
  }
}
