/* General Styles */
body {
  font-family: 'anton', sans-serif;
  margin: 0;
  padding: 0;
  color: #efefef;
  background: #2a2a2a;
}

.container {
  width: 90%;
  max-width: 1200px;
  margin: 0 auto;
}

a {
  text-decoration: none;
  color: inherit;
}

.cta-button {
  background: linear-gradient(45deg, #ff6f61, #ff3b2f);
  padding: 10px 20px;
  border-radius: 5px;
  color: #fff;
  transition: transform 0.3s, box-shadow 0.3s;
}

.cta-button:hover {
  transform: translateY(-5px);
  box-shadow: 0 10px 20px rgba(255, 111, 97, 0.3);
}

/* Header */
header {
  display: flex;
  justify-content: space-between;
  align-items: center;
  background: rgba(26, 26, 26, 0.9);
  padding: 20px 0;
  position: sticky;
  top: 0;
  z-index: 1000;
  backdrop-filter: blur(10px);
}

.logo {
  font-size: 1.5rem;
  font-weight: bold;
  color:#ecc522;
}

nav ul {
  list-style: none;
  display: flex;
  gap: 30px;
}

nav ul li a {
  font-weight: 500;
  transition: color 0.3s;
}

nav ul li a:hover {
  color: #ff6f61;
}

.hamburger {
  display: none;
  flex-direction: column;
  gap: 5px;
  cursor: pointer;
  margin-left: auto;
}

.hamburger span {
  width: 25px;
  height: 3px;
  background: #fff;
}

/* Hero Section */
.hero {
  position: relative;
  height: 100vh;
  display: flex;
  align-items: center;
  justify-content: center;
  text-align: center;
  overflow: hidden;
}

.hero-video {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  z-index: -1;
}

.hero-video iframe {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.hero-content {
  position: relative;
  z-index: 1;
  color: #fff;
}

.hero-content h1 {
  font-size: 4rem;
  margin-bottom: 20px;
}

.hero-content .highlight {
  background: linear-gradient(45deg, #ff6f61, #ff3b2f);
  -webkit-background-clip: text;
  background-clip: text;
  color: transparent;
}

hr.divider {
  border: 0;
  height: 2px;
  /* background-color: #4a6e8d;  */
  background-color: #ecc522; 
  margin-top: 50px; /* Space around the divider */
  margin-bottom: 40px;
  width: 90%; /* Width of the divider */
  margin-left: auto;
  margin-right: auto;
  box-shadow: 0 2px 5px rgba(0, 0, 0, 0.1); 
  }

/* About Section */
.about {
  display: flex;
  align-items: center;
  padding: 100px 0;
  background: #1a1a1a;
}

.about .container {
  display: flex;
  flex-wrap: wrap;
  gap: 20px;
}

.about-text {
  flex: 1;
  min-width: 300px;
}

.about-images {
  flex: 1;
  display: flex;
  gap: 20px;
}

.about-images img {
  width: 48%;
  border-radius: 10px;
  box-shadow: 0 10px 20px rgba(0, 0, 0, 0.3);
}

@media (max-width: 768px) {
  .about .container {
    flex-direction: column;
  }

  .about-images {
    flex-direction: column;
  }

  .about-images img {
    width: 100%;
  }
}

/* Productions Section */
.productions {
  padding: 100px 0;
}

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

.gallery-item {
  position: relative;
  overflow: hidden;
  border-radius: 10px;
}

.gallery-item img {
  width: 100%;
  display: block;
  transition: transform 0.3s;
}

.gallery-item:hover img {
  transform: scale(1.1);
}

.overlay {
  position: absolute;
  bottom: -100%;
  left: 0;
  width: 100%;
  padding: 20px;
  background: rgba(0, 0, 0, 0.7);
  transition: bottom 0.3s;
}

.gallery-item:hover .overlay {
  bottom: 0;
}

/* Modal Styles */
.modal {
  display: none;
  position: fixed;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background: rgba(0, 0, 0, 0.9);
  z-index: 1001;
}

.modal-content {
  position: relative;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
  width: 90%;
  max-width: 800px;
}

.close-modal {
  position: absolute;
  top: -40px;
  right: -40px;
  color: white;
  font-size: 40px;
  cursor: pointer;
  background: none;
  border: none;
  padding: 0;
  transition: opacity 0.3s;
}

.close-modal:hover {
  opacity: 0.7;
}

.video-wrapper {
  position: relative;
  padding-bottom: 56.25%; /* 16:9 aspect ratio */
  height: 0;
  overflow: hidden;
}

.video-wrapper iframe {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
}

@media (max-width: 768px) {
  .close-modal {
    right: 0;
    top: -50px;
    font-size: 30px;
  }
}

/* Team Section */
.team {
  padding: 100px 0;
}

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

.team-member {
  text-align: center;
  font-family:Verdana, Geneva, Tahoma, sans-serif;
}
.team-member h2 {
  color:#ecc522;
}

.team-member p {
  font-size: 18px;
}

.team-member img {
  width: 300px;
  height: 300px;
  border-radius: 5%;
  margin-bottom: 20px;
  box-shadow: 0 10px 20px rgba(0, 0, 0, 0.3);
}

/* Contact Section */
.contact {
  padding: 100px 0;
}

.contact-content {
  display: flex;
  gap: 50px;
}

form {
  flex: 1;
  display: flex;
  flex-direction: column;
  gap: 20px;
}

form input, form textarea {
  padding: 10px;
  border: none;
  border-radius: 5px;
}

form button {
  background: #ff6f61;
  color: #fff;
  border: none;
  padding: 10px;
  border-radius: 5px;
  cursor: pointer;
}

.contact-info {
  flex: 1;
}

/* Footer */
footer {
  padding: 50px 0;
  text-align: center;
  background: #111;
}

.footer-links {
  margin-bottom: 20px;
}

.social-media {
  display: flex;
  justify-content: center;
  gap: 20px;
  margin-bottom: 20px;
}

.social-media img {
  width: 30px;
}

/* Mobile Navigation */
@media (max-width: 768px) {
  nav ul {
    display: none;
    flex-direction: column;
    background: rgba(26, 26, 26, 0.9);
    position: absolute;
    top: 60px;
    left: 1px;
    right: 0;
    width: 100%;
    padding: 20px;
  }

  nav ul.active {
    display: flex;
  }

  .hamburger {
    display: flex;
  }

  .cta-button {
    display: none;
  }
}