/* Production Page Specific Styles */

/* Hero Section */
.production-hero {
  margin-top: 70px;
  padding: 2rem 0rem;
  background: var(--bg-light);
  position: relative;
  overflow: hidden;
}

.production-hero::before {
  content: "";
  position: absolute;
  top: -40%;
  right: -10%;
  width: 600px;
  height: 600px;
  background: var(--primary-gold);
  opacity: 0.1;
  border-radius: 50%;
}

.production-hero::after {
  content: "";
  position: absolute;
  bottom: -40%;
  left: -10%;
  width: 500px;
  height: 500px;
  background: var(--primary-brown);
  opacity: 0.08;
  border-radius: 50%;
}

.hero-content-wrapper {
  max-width: 1200px;
  margin: 0 auto;
  position: relative;
  z-index: 2;
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 4rem;
  align-items: center;
}

.hero-text {
  text-align: left;
  padding: 2rem 2rem 2rem 2rem;
}

.production-hero h1 {
  font-size: clamp(3rem, 6vw, 3.5rem);
  font-weight: 700;
  margin-bottom: 1.5rem;
  color: var(--primary-brown);
  line-height: 1.2;
}

.production-hero p {
  font-size: 1.4rem;
  color: var(--text-dark);
  line-height: 1.8;
  font-style: italic;
}

.production-hero .hero-image {
  position: relative;
  height: 350px;
  border: 5px solid white;
  border-radius: 10px;
  box-shadow: 0 15px 50px rgba(0, 0, 0, 0.2);
  overflow: hidden;
  margin-right: 2rem;
}

.production-hero .hero-image img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: center;
  transition: transform 0.4s ease;
}

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

/* Main Content */
.production-content {
  max-width: 1200px;
  margin: 0 auto;
  padding: 2rem 2rem;
  position: relative;
}

/* Intro Section */
.production-intro {
  background: white;
  padding: 3rem;
  border-radius: 25px;
  box-shadow: 0 10px 50px rgba(0, 0, 0, 0.08);
  margin-bottom: 4rem;
  border-left: 6px solid var(--primary-gold);
}

.production-intro p {
  font-size: 1.15rem;
  line-height: 1.9;
  color: var(--text-dark);
  text-align: center;
  margin-bottom: 2rem;
}

/* Production Card */
.production-card {
  background: white;
  padding: 3rem;
  border-radius: 30px;
  margin-bottom: 3rem;
  box-shadow: 0 15px 60px rgba(0, 0, 0, 0.08);
  transition: all 0.4s ease;
  position: relative;
  overflow: hidden;
  border-top: 5px solid var(--primary-gold);
}

.production-card:hover {
  transform: translateY(-10px);
  box-shadow: 0 25px 80px rgba(0, 0, 0, 0.15);
}

/* Production Layout */
.production-layout {
  display: grid;
  grid-template-columns: 400px 1fr;
  gap: 3rem;
  align-items: start;
}

/* Production Images Grid - Facebook Style */
.production-images-grid {
  width: 100%;
  border-radius: 15px;
  overflow: hidden;
  padding: 3rem 0rem;
}

/* Single Image Layout */
.production-images-grid.grid-1 {
  display: block;
}

.grid-single {
  width: 100%;
  aspect-ratio: 16 / 9;
  overflow: hidden;
  position: relative;
}

/* Vertical variant for specific productions */
.grid-single.grid-vertical {
  aspect-ratio: 3.5 / 3;
}

.grid-single.grid-vertical img {
  object-position: top center;
}

.grid-single img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: center;
  display: block;
  transition: transform 0.4s ease;
  border-radius: 15px;
}

.grid-single:hover img {
  transform: scale(1.05);
}

/* Three Images Grid Layout - Facebook Style */
.production-images-grid.grid-3 {
  display: grid;
  grid-template-columns: 1fr 1fr;
  grid-template-rows: 300px 250px 250px;
  gap: 3px;
}

/* Main image - Full width on first row */
.grid-main {
  grid-row: 1;
  grid-column: 1 / 3;
  overflow: hidden;
  position: relative;
  height: 100%;
}

/* Side images - One vertical and one square */
.grid-side {
  overflow: hidden;
  position: relative;
  height: 100%;
  width: 100%;
}

/* First side image - Tall vertical (double height on left) */
.grid-side:first-of-type {
  grid-row: 2 / 4;
  grid-column: 1;
}

/* Second side image - Square on top right */
.grid-side:last-of-type {
  grid-row: 2;
  grid-column: 2;
}

.grid-main img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: center;
  display: block;
  transition: transform 0.4s ease;
}

.grid-side img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: center;
  display: block;
  transition: transform 0.4s ease;
}

.grid-main:hover img,
.grid-side:hover img {
  transform: scale(1.05);
}

/* Add subtle overlay on hover */
.grid-main::after,
.grid-side::after,
.grid-single::after {
  content: "";
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  background: rgba(0, 0, 0, 0);
  transition: background 0.3s ease;
  pointer-events: none;
}

.grid-main:hover::after,
.grid-side:hover::after,
.grid-single:hover::after {
  background: rgba(0, 0, 0, 0.05);
}

/* Production Content */
.production-content {
  flex: 1;
}

/* Production Header */
.production-header {
  margin-bottom: 1.5rem;
}

.production-header h2 {
  font-size: 2.2rem;
  color: var(--primary-brown);
  margin-bottom: 0.8rem;
  font-weight: 700;
  line-height: 1.3;
}

.production-subtitle {
  font-size: 1.25rem;
  color: var(--primary-gold);
  font-style: italic;
  font-weight: 600;
}

.production-description {
  font-size: 1.15rem;
  line-height: 1.9;
  color: var(--text-dark);
  margin-bottom: 2.5rem;
  text-align: justify;
}

/* Production Details */
.production-details {
  margin: 2rem 0;
  padding: 0;
}

.detail-item {
  font-size: 1.05rem;
  color: var(--text-dark);
  line-height: 2;
  margin-bottom: 0.8rem;
}

.detail-item strong {
  color: var(--primary-brown);
  font-weight: 600;
  display: inline;
  margin-right: 0.5rem;
}

/* Production Quote */
.production-quote {
  text-align: center;
  margin-top: 1.5rem;
}

.production-quote p {
  font-size: 1.25rem;
  font-style: italic;
  color: var(--primary-gold);
  font-weight: 600;
  line-height: 1.6;
  margin: 0;
}

/* Final Quote Section */
.quote-section {
  background: var(--gradient-1);
  padding: 1rem 3rem;
  border-radius: 30px;
  text-align: center;
  margin-top: 5rem;
  box-shadow: 0 20px 60px rgba(123, 90, 62, 0.25);
  position: relative;
  overflow: hidden;
}

.quote-section::before {
  content: "
    "";
  position: absolute;
  top: -30px;
  left: 40px;
  font-size: 200px;
  color: rgba(255, 255, 255, 0.1);
  font-family: Georgia, serif;
  line-height: 1;
}

.quote-section p {
  font-size: 1.5rem;
  font-style: italic;
  color: white;
  line-height: 1.9;
  position: relative;
  z-index: 2;
  max-width: 900px;
  margin: 0 auto;
}

/* Responsive Design */
@media (max-width: 1100px) {
  .production-layout {
    grid-template-columns: 350px 1fr;
    gap: 2.5rem;
  }
}

@media (max-width: 968px) {
  .hero-content-wrapper {
    grid-template-columns: 1fr;
    gap: 2rem;
  }

  .hero-text {
    text-align: center;
    padding: 4rem 2rem 2rem;
  }

  .production-hero .hero-image {
    margin: 0 auto;
    max-width: 500px;
  }

  .production-layout {
    grid-template-columns: 1fr;
    gap: 2rem;
  }

  .production-images-grid {
    position: relative;
    top: 0;
  }

  .production-images-grid.grid-3 {
    grid-template-rows: 250px 200px 200px;
  }

  .grid-main {
    height: 100%;
  }

  .grid-side {
    height: 100%;
  }

  .grid-side:first-of-type {
    grid-row: 2 / 4;
    grid-column: 1;
  }

  .grid-side:last-of-type {
    grid-row: 2;
    grid-column: 2;
  }

  .grid-single {
    aspect-ratio: 16 / 9;
  }

  .production-card {
    padding: 2.5rem;
  }

  .production-header h2 {
    font-size: 1.9rem;
  }

  .production-subtitle {
    font-size: 1.1rem;
  }
}

@media (max-width: 768px) {
  .production-intro {
    padding: 2rem;
  }

  .production-intro p {
    font-size: 1.05rem;
    text-align: left;
  }

  .production-card {
    padding: 2rem;
  }

  .production-header h2 {
    font-size: 1.7rem;
  }

  .production-subtitle {
    font-size: 1.05rem;
  }

  .production-description {
    font-size: 1.05rem;
    text-align: left;
  }

  .production-quote p {
    font-size: 1.15rem;
  }

  .quote-section {
    padding: 3rem 2rem;
  }

  .quote-section p {
    font-size: 1.3rem;
  }

  .production-images-grid.grid-3 {
    grid-template-rows: 250px 180px 180px;
    gap: 2px;
  }

  .grid-main {
    grid-row: 1;
    grid-column: 1 / 3;
    height: 100%;
  }

  .grid-side {
    height: 100%;
  }

  .grid-side:first-of-type {
    grid-row: 2 / 4;
    grid-column: 1;
  }

  .grid-side:last-of-type {
    grid-row: 2;
    grid-column: 2;
  }

  .grid-single {
    aspect-ratio: 16 / 9;
  }
}

@media (max-width: 480px) {
  .production-hero {
    padding: 1.5rem 0;
  }

  .hero-text {
    padding: 2rem 1rem 1.5rem;
  }

  .production-hero h1 {
    font-size: 1.8rem;
    margin-bottom: 1rem;
  }

  .production-hero p {
    font-size: 1.1rem;
  }

  .production-hero .hero-image {
    height: 250px;
    margin: 0 1rem;
  }

  .production-content {
    padding: 1.5rem 1rem;
  }

  .production-intro {
    padding: 1.5rem;
    margin-bottom: 2.5rem;
  }

  .production-intro p {
    font-size: 1rem;
    margin-bottom: 1.5rem;
  }

  .production-card {
    padding: 1.5rem;
    margin-bottom: 2rem;
    border-radius: 20px;
  }

  .production-header {
    margin-bottom: 1rem;
  }

  .production-header h2 {
    font-size: 1.4rem;
  }

  .production-subtitle {
    font-size: 0.95rem;
  }

  .production-description {
    font-size: 1rem;
    margin-bottom: 1.5rem;
  }

  .production-details {
    margin: 1.5rem 0;
  }

  .detail-item {
    font-size: 0.95rem;
  }

  .production-quote p {
    font-size: 1.05rem;
  }

  .production-images-grid {
    padding: 2rem 0;
  }

  .grid-single {
    aspect-ratio: 16 / 9;
  }

  .production-images-grid.grid-3 {
    grid-template-rows: 180px 120px 120px;
  }

  .grid-main {
    height: 100%;
  }

  .grid-side {
    height: 100%;
  }

  .grid-side:first-of-type {
    grid-row: 2 / 4;
    grid-column: 1;
  }

  .grid-side:last-of-type {
    grid-row: 2;
    grid-column: 2;
  }

  .quote-section {
    padding: 2rem 1.5rem;
    margin-top: 2rem;
    border-radius: 20px;
  }

  .quote-section p {
    font-size: 1.1rem;
  }
}
