/* PRODUCTION STYLES */
/* Hero Section */
.hero-section {
  position: relative;
  width: 100%;
  height: 100vh; /* full viewport height */
  background: url('../images/bhama-kalapam-1.jpg') center center / cover no-repeat;
  display: flex;
  justify-content: center;
  align-items: center;
  overflow: hidden;
  /* parallax scrolling effect */
  background-attachment: fixed;
}

/* White overlay */
.hero-section .overlay {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background: rgba(255, 255, 255, 0.85); /* semi-transparent white */
  z-index: 1;
}

/* Heading */
.hero-section h1 {
  position: relative;
  z-index: 2;
  font-size: 5rem;
  font-weight: bold;
  color: #000;
  text-align: center;
  font-family: "Georgia";
  margin: 0 20px;
}

/* Responsive */
@media (max-width: 992px) {
  .hero-section h1 {
    font-size: 4rem;
  }
}

@media (max-width: 600px) {
  .hero-section h1 {
    font-size: 2.8rem;
  }
}

.production-section {
  width: 100%;
  padding: 0px 5% 60px 5%;
  box-sizing: border-box;
}

.production-section .row {
  display: flex;
  align-items: center;
  justify-content: space-between;
  margin-bottom: 60px;
  flex-wrap: wrap; /* For responsiveness */
}

.production-section .row.reverse {
  flex-direction: row-reverse;
}

.production-section .text {
  flex: 1;
  padding: 20px;
}

.production-section .text h2 {
  font-family: Georgia;
  font-size: 28px;
  margin-bottom: 15px;
  text-transform: uppercase;
}

.production-section .text p {
  font-family: Arial, sans-serif;
  font-size: 16px;
  line-height: 1.7;
  text-align: justify;
}

.production-section .image {
  flex: 1;
  padding: 20px;
  text-align: center;
}

.production-section .image img {
  max-width: 100%;
  height: auto;
}

/* Responsive */
@media (max-width: 768px) {
  .production-section .row {
    flex-direction: column;
  }
  .production-section .row.reverse {
    flex-direction: column;
  }
  .production-section .text, 
  .production-section .image {
    padding: 10px;
  }
  .production-section .text h2 {
    font-size: 22px;
  }
  .production-section .text p {
    font-size: 14px;
  }
}
