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

html, body {
  overflow-x: hidden; /* prevent horizontal scroll */
}

body {
  font-family: 'Galvji', sans-serif;
  margin: 0;
  padding: 0;
  background: #fefefe;
  color: #222;
}

header {
  background: #000;
  color: #fff;
  padding: 3rem 2rem 1.5rem 2rem;
}

.header-inner {
  display: flex;
  align-items: center;
  justify-content: space-between;
  width: 100%;
  padding: 0 2rem;
  position: relative;
}

nav ul {
  list-style: none;
  margin: 0;
  padding: 0;
  display: flex;
  gap: 1.5rem;
}

nav a {
  color: white;
  text-decoration: none;
  font-size: 0.9rem;
}

/* Center the h1 absolutely */
header h1 {
  position: absolute;
  left: 50%;
  transform: translateX(-50%);
  margin: 0;
  font-size: 2rem;
  font-family: 'Didot', serif; /* change font */
  font-weight: 700; /* bolder */
}

/* Optional spacer */
.header-spacer {
  width: 150px; /* same width as nav to balance the flex layout */
  padding-top: 20px;
}

.page-heading {
  text-align: center;       /* centers the heading */
  margin-bottom: 40px;      /* space below the header */
  padding-top: 40px;        /* space above if you want */
}

.page-heading h2 {
  font-size: 2.5rem;
  margin: 0;
  font-weight: 600;
  letter-spacing: 1px;
}

main {
  padding: 2rem;
  max-width: 800px;
  margin: auto;
}

img {
  max-width: 100%;
  height: auto;
  margin-bottom: 1rem;
}

footer {
  text-align: center;
  padding: 1rem;
  background: #eee;
  margin-top: 2rem;
  font-family: 'Mongolian Baiti', serif; /* change font */
}

.demo-word {
  font-family: Didot; /* example font */
  font-weight: 700;
  font-size: 1.5rem;
  font-style: italic; /* optional */
  color: white;
}

.container {
  max-width: 1000px;
  width: 95vw;
  margin: 0 auto;
  padding: 0 20px;
}

/* Make banners span nearly full width */
.film-banner {
  margin: 40px auto;
  max-width: 1300px; /* adjust if needed */
  width: 95vw;
}

.banner-link {
  display: block;
  text-decoration: none;
  color: inherit;
  transition: opacity 0.3s ease;
}

/* When banner is hovered */
.banner-link:hover .banner-content {
  filter: brightness(0.8); /* Darken everything slightly */
}

/* Reverse text box color on hover */
.banner-link:hover .banner-text {
  background-color: #000;
  color: #fff;
}

/* Optional: Reverse h3/p specifically */
.banner-link:hover .banner-text h3,
.banner-link:hover .banner-text p {
  color: #fff;
}

.banner-content {
  display: flex;
  width: 100%;
  height: 450px; /* set fixed banner height */
  overflow: hidden;
  border-radius: 0px; /* adjust banner corner*/
  box-shadow: 0 4px 12px rgba(0,0,0,0.1);
}

.banner-content.reverse {
  flex-direction: row-reverse;
}

.banner-link {
  display: block;
  text-decoration: none;
  color: inherit;
  transition: opacity 0.3s ease;
  margin-bottom: 40px; /* Space between banners */
}

/* LEFT side: Text */
.banner-text {
  flex: 0.8;
  background-color: #ffffff;
  padding: 40px;
  display: flex;
  flex-direction: column;
  justify-content: center;
  align-items: center; /* This centers the text horizontally */
  text-align: center;  /* Makes text nicely centered */
}

.banner-text h3 {
  font-size: 2.2rem;
  font-weight: 700;
  margin: 0;
  letter-spacing: 2px;
}

.banner-text p {
  margin-top: 12px;
  font-size: 1.1rem;
  color: #666;
}

/* RIGHT side: Image */
.banner-image {
  flex: 1.2;
  height: 100%;
  overflow: hidden;
}

.banner-image img {
  width: 100%;
  height: 100%;
  object-fit: cover; /* crop + fill */
  display: block;
}

@media (max-width: 768px) {
  .banner-content {
    flex-direction: column;
    height: auto;
  }

  .banner-image {
    height: 200px;
  }

  .banner-text {
    padding: 20px;
    text-align: center;
  }
}

.photo-gallery {
  padding: 0 1vw; /* keeps a little space from page edges */
}

.photo-row {
  display: flex;
  gap: 6px;              /* small gap between images */
  align-items: flex-start; /* align images at top */
  margin-bottom: 12px;   /* space between rows */
  justify-content: flex-start; /* start at left, no extra spacing */
  padding: 0 10px;       /* little space from page edges */
  flex-wrap: nowrap;       /* no wrapping */
}

.image-container {
  display: flex;
  flex-direction: column;
  align-items: center;
  /* No flex:1 so images keep natural width */
}

.image-container img {
  height: auto;    /* same height for all images */
  width: auto;      /* keep aspect ratio */
  object-fit: contain;
  display: block;
  max-width: 100%;  /* don't overflow container */
}

.caption {
  margin-top: 8px;
  font-size: 0.9rem;
  text-align: center;
  color: #444;
}

.video-section {
  margin: 2rem auto;
  max-width: 800px;
}

.hero-section {
  display: flex;
  height: 100vh;
  width: 100vw;
  padding: 0;
  margin: 0;
  background-color: #111; /* optional dark background */
  color: white;
  overflow: hidden;
}

.hero-text {
  flex: 1;
  padding: 4rem 3rem;
  display: flex;
  flex-direction: column;
  justify-content: center;
  align-items: flex-start;
  text-align: left;
}

.hero-text h1 {
  font-size: 4rem;
  margin: 0 0 1rem;
  line-height: 1.1;
}

.hero-text p {
  font-size: 1.2rem;
  line-height: 1.6;
  color: #ccc;
  max-width: 600px;
}

.cta-button {
  margin-top: 2rem;
  padding: 0.75rem 1.5rem;
  background: #ccc;
  color: black;
  text-decoration: none;
  font-weight: bold;
  display: inline-block;
  border-radius: 4px;
}

.hero-image {
  flex: 1;
  overflow: hidden;
  display: flex;
  align-items: center;
  justify-content: center;
}

.hero-image img {
  height: 100vh;
  width: auto;
  object-fit: cover;
}

.contact-section {
  display: flex;
  flex-wrap: wrap;
  padding: 4rem 2rem;
  gap: 2rem;
  max-width: 1200px;
  margin: 0 auto;
}

.contact-left {
  flex: 1;
  min-width: 280px;
}

.contact-left h2 {
  font-size: 2rem;
  margin-bottom: 1rem;
}

.contact-left p {
  font-size: 1rem;
  margin: 0.5rem 0;
}

.contact-right {
  flex: 2;
  min-width: 320px;
}

.contact-left a {
  color: inherit;
  text-decoration: none;
}

.contact-left a:hover {
  text-decoration: underline;
}

/* Mobile responsive layout */
@media (max-width: 768px) {
  /* HERO SECTION */
  .hero-section {
    flex-direction: column;
    height: auto; /* allow content to grow naturally */
  }

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

  .hero-image img {
    width: 100%;
    height: auto; /* avoid cropping on mobile */
  }

  /* CONTACT SECTION */
  .contact-section {
    flex-direction: column;
  }

  .contact-left, 
  .contact-right {
    flex: none;
    width: 100%;
  }

  .contact-left {
    text-align: center;
    margin-bottom: 2rem;
  }

  .contact-right iframe {
    height: 600px; /* taller for mobile */
  }
}

@media (max-width: 768px) {
  /* Stack header content vertically */
  .header-inner {
    flex-direction: column;
    align-items: center;
    gap: 1rem; /* space between title and nav */
    padding: 1rem;
  }

  /* Make the title smaller and keep words in one row */
  header h1 {
    position: static; /* remove absolute positioning */
    transform: none;
    font-size: 1.8rem; /* smaller so it fits */
    white-space: nowrap; /* keep both words on one line */
    text-align: center;
  }

  /* Move nav under the title */
  nav ul {
    flex-direction: row; /* still horizontal links */
    justify-content: center;
    gap: 1rem;
  }

  /* Optional: make nav links a bit bigger for tapping */
  nav a {
    font-size: 1rem;
    padding: 0.5rem;
  }

  /* Reduce side padding on header to save space */
  header {
    padding: 1rem;
  }
}

@media (max-width: 768px) {
  /* Always stack text above image on mobile */
  .banner-content,
  .banner-content.reverse {
    flex-direction: column;
  }

  /* Ensure text is always on top */
  .banner-text {
    order: 1;
  }

  .banner-image {
    order: 2;
    height: 200px; /* keep images smaller for mobile */
  }
}

@media (max-width: 768px) {
  .photo-row {
    flex-direction: column;
    align-items: center;
  }
}
