body {
    font-family: Arial, sans-serif;
    margin: 0;
    padding: 0;
}

nav {
    background: #333;
    padding: 1rem;
}

nav a {
    color: white;
    margin-right: 1rem;
    text-decoration: none;
}

.film-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 1rem;
    padding: 1rem;
}

.film-card {
    border: 1px solid #ddd;
    padding: 1rem;
}

:root {
  --main-bg: #f5efe6; /* light brown/grey */
  --accent-blue: #0c1f4a; /* royal blue */
  --accent-gold: #c89f43; /* gold */
  --text-color: #333;
  --heading-font: 'Playfair Display', serif;
  --body-font: 'Poppins', sans-serif;
}
body {
  background:#f5f0e6 url('../../images/hiero-bg.jpg') no-repeat center top;
  background-size: cover;
  font-family: var(--body-font);
  color: var(--text-color);
}
.about-hero {
  background: url('../images/hiero-bg.jpg') no-repeat center top;
  background-size: cover;
  padding: 100px 20px;
  color: white;
  text-align: center;
  font-family: var(--heading-font);
}



.about-content {
  max-width: 800px;
  margin: 40px auto;
  padding: 0 20px;
  font-size: 1.1rem;
  line-height: 1.6;
  color: var(--text-color);
}
.contact-hero {
  background: url('../../assets/images/craft-bg.jpg') no-repeat center center;
  background-size: cover;
  color: white;
  text-align: center;
  padding: 100px 20px;
  font-family: var(--heading-font);
  position: relative;
}

.contact-hero h1 {
  font-size: 2.5rem;
  text-shadow: 2px 2px 8px rgba(0, 0, 0, 0.6); /* for better contrast */
}

.contact-info {
  max-width: 800px;
  margin: 40px auto;
  padding: 0 20px;
  font-size: 1.1rem;
  line-height: 1.6;
}

.tickets-button {
  display: inline-block;
  margin-top: 20px;
  padding: 12px 24px;
  background-color: var(--accent-gold);
  color: white;
  border-radius: 30px;
  box-shadow: 0 4px 10px rgba(101, 67, 33, 0.5); /* dark brown shadow */
  text-decoration: none;
  font-weight: bold;
  transition: background-color 0.3s ease;
}

.tickets-button:hover {
  background-color: #b5893b;
}

.map-container {
  margin: 40px auto;
  max-width: 900px;
  padding: 0 20px;
}

.map-container iframe {
  width: 100%;
  height: 400px;
  border: 0;
  border-radius: 10px;
}
.schedule-hero {
  background: 
    url('../images/hiero-bg.jpg') no-repeat center center;
  background-size: cover;
  color: white;
  padding: 80px 20px;
  text-align: center;
  font-family: var(--heading-font);
  border-bottom: 5px solid var(--accent-gold);
}

.schedule-container {
  max-width: 1000px;
  margin: 40px auto;
  padding: 0 20px;
}

.schedule-block {
  margin-bottom: 60px;
  padding: 20px;
  background-color: #fff;
  border-left: 5px solid var(--accent-gold);
  box-shadow: 0 4px 12px rgba(0, 0, 0, 0.08);
  border-radius: 12px;
}

.schedule-block h2 {
  font-family: var(--heading-font);
  margin-bottom: 10px;
  color: var(--accent-blue);
}

.schedule-block img {
  width: 100%;
  margin-top: 20px;
  border-radius: 10px;
  box-shadow: 0 2px 6px rgba(0,0,0,0.1);
}
/* Films Page Styles */
.films-hero {
  background-image: url('../images/rockart7-bg.jpg'); /* this is from assets/css/ to assets/images/ */
  background-size: cover;
  background-position: center;
  background-repeat: no-repeat;
  color: #fff;
  text-align: center;
  padding: 80px 20px;
  font-family: 'Playfair Display', serif;
}

.films-gallery {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
  gap: 30px;
  padding: 40px 20px;
  background-color: #f6f1ea;
}

.film-card {
  background: #fff;
  border-radius: 12px;
  box-shadow: 0 4px 12px rgba(60, 30, 10, 0.1);
  overflow: hidden;
  text-align: center;
  padding-bottom: 20px;
}

.film-card img {
  width: 100%;
  height: 300px;
  object-fit: cover;
}

.film-card h3 {
  margin: 16px 0 8px;
  font-size: 20px;
  color: #2f2f2f;
}

.film-card p {
  font-size: 14px;
  color: #555;
  padding: 0 15px;
}
/* Button Styling */
.read-more-btn {
  background-color: #002366; /* Royal Blue */
  color: #fff;
  border: none;
  padding: 10px 20px;
  margin-top: 10px;
  border-radius: 8px;
  box-shadow: 0 4px 6px rgba(0, 0, 0, 0.3);
  cursor: pointer;
  font-weight: bold;
  transition: background-color 0.3s ease, transform 0.2s ease;
}

.read-more-btn:hover {
  background-color: #0033a0;
  transform: translateY(-2px);
}

/* Modal Styling */
.modal {
  display: none; /* hidden by default */
  position: fixed;
  z-index: 1000;
  left: 0;
  top: 0;
  width: 100%;
  height: 100%;
  overflow: auto;
  background-color: rgba(0,0,0,0.7);
}

.modal-content {
  background-color: #fff;
  margin: 10% auto;
  padding: 20px;
  border-radius: 12px;
  width: 80%;
  max-width: 600px;
  box-shadow: 0 8px 16px rgba(0,0,0,0.3);
}

/* Close Button */
.close-btn {
  float: right;
  font-size: 24px;
  font-weight: bold;
  color: #333;
  cursor: pointer;
}
/* Hero Slideshow */
.hero-slideshow {
  position: relative;
  height: 90vh;
  overflow: hidden;
}

.slideshow-container {
  position: relative;
  max-width: 100%;
  height: 100%;
  margin: auto;
  overflow: hidden;
}

.slide {
  display: none;
  width: 100%;
  height: 100%;
  position: absolute;
  top: 0;
  left: 0;
  transition: opacity 1s ease-in-out;
  opacity: 0;
}

.slide.active {
  display: block;
  opacity: 1;
  z-index: 1;
}

.slide img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}


.fade {
  animation: fadeEffect 1s ease-in-out;
}

@keyframes fadeEffect {
  from { opacity: 0.4; }
  to { opacity: 1; }
}


.slide.active {
  opacity: 1;
  z-index: 1;
}

.logo-overlay {
  position: absolute;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
  z-index: 2;
}

.logo-overlay img {
  max-width: 200px;
  height: auto;
}


/* Event Poster and Button */
.event-section {
  text-align: center;
  background-color: #fff;
  padding: 3rem 1rem;
}

.event-poster {
  max-width: 90%;
  height: auto;
  margin-bottom: 1.5rem;
}

.buy-tickets-btn {
  background-color: rgba(126, 103, 27, 0.877);
  color: black;
  border: none;
  padding: 0.75rem 1.5rem;
  font-size: 1.1rem;
  border-radius: 10px;
  box-shadow: 0 4px 10px rgba(0, 0, 0, 0.5);
  cursor: pointer;
  transition: transform 0.3s ease;
}

.buy-tickets-btn:hover {
  transform: scale(1.05);
}

.sirtickets-logo img {
  margin-top: 1rem;
  width: 120px;
}
