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-color: #f5f0e6; /* no image here */
}



.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('../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;
}
/* Header Styling */
header {
  width: 100%;
  position: fixed;
  top: 0;
  z-index: 1000;
}

.main-nav {
  display: flex;
  justify-content: space-between;
  align-items: center;
  padding: 0.8rem 2rem;
  background: linear-gradient(90deg, #3b2f2f, #1f1c1c); /* Dark brown to charcoal */
  box-shadow: 0 2px 6px rgba(0,0,0,0.4);
}

.logo img {
  height: 50px;
}

.nav-links {
  list-style: none;
  display: flex;
  margin: 0;
  padding: 0;
}

.nav-links li {
  margin-left: 2rem;
}

.nav-links a {
  color: white;
  text-decoration: none;
  font-weight: bold;
  font-family: var(--body-font);
  position: relative;
  padding: 5px 0;
  transition: color 0.3s ease;
}

.nav-links a:hover {
  color: var(--accent-gold);
}

.nav-links a::after {
  content: '';
  position: absolute;
  width: 0;
  height: 2px;
  bottom: 0;
  left: 0;
  background-color: var(--accent-gold);
  transition: width 0.3s ease;
}

.nav-links a:hover::after {
  width: 100%;
}

/* Responsive Navigation */
@media (max-width: 768px) {
  .nav-links {
    display: none;
    flex-direction: column;
    background: #1f1c1c;
    position: absolute;
    top: 60px;
    right: 0;
    width: 200px;
    padding: 1rem;
  }

  .nav-links.show {
    display: flex;
  }

  .menu-toggle {
    display: block;
    cursor: pointer;
  }
}

.menu-toggle {
  display: none;
  color: white;
  font-size: 1.5rem;
}
/* Event Info Banner */
.event-info-banner {
  background: linear-gradient(90deg, #1f1c1c, #3b2f2f);
  color: white;
  text-align: center;
  padding: 3rem 1rem;
  font-family: 'Montserrat', sans-serif; /* Modern sleek font */
}

.event-info-text h1 {
  font-size: 2.5rem;
  font-weight: 700;
  margin-bottom: 0.5rem;
  color: var(--accent-gold);
}

.event-info-text p {
  font-size: 1.1rem;
  font-weight: 400;
  letter-spacing: 0.5px;
  color: #f5f5f5;
}


@media (max-width: 768px) {
  .event-info-text h1 {
    font-size: 1.8rem;
  }
  .event-info-text p {
    font-size: 1rem;
  }
}
html {
  scroll-behavior: smooth;
}
.page-section {
  padding: 4rem 2rem;
  background-color: #fff;
  text-align: center;
}

.page-section:nth-child(even) {
  background-color: #f8f5f0; /* light warm grey for contrast */
}
.buy-tickets-btn {
  display: inline-block;
  padding: 0.8rem 2rem;
  margin: 1rem 0;
  background: linear-gradient(90deg, #8b4513, #3b2f2f); /* brown gradient */
  color: white;
  font-size: 1.2rem;
  font-weight: bold;
  text-transform: uppercase;
  letter-spacing: 1px;
  border-radius: 50px;
  text-decoration: none;
  transition: all 0.3s ease;
}

.buy-tickets-btn:hover {
  background: linear-gradient(90deg, #a0522d, #5a3d3d);
  transform: translateY(-2px);
  box-shadow: 0 4px 15px rgba(0,0,0,0.3);
}
.ticket-options {
  background: linear-gradient(120deg, #3b2f2f, #8b4513); /* Sleek brown gradient */
  color: white;
  padding: 3rem 1rem;
  text-align: center;
}

.ticket-grid {
  display: flex;
  flex-wrap: wrap;
  gap: 1.5rem;
  justify-content: center;
}

.ticket-card {
  background: rgba(255, 255, 255, 0.08);
  border-radius: 15px;
  padding: 1.5rem;
  width: 280px;
  backdrop-filter: blur(6px);
  transition: transform 0.3s ease, box-shadow 0.3s ease;
}

.ticket-card:hover {
  transform: translateY(-5px);
  box-shadow: 0 8px 20px rgba(0,0,0,0.4);
}

.ticket-card h3 {
  font-size: 1.4rem;
  margin-bottom: 0.5rem;
}

.ticket-card p {
  font-size: 0.95rem;
  margin-bottom: 1rem;
}
.about-section {
  background: linear-gradient(135deg, #ebd0ba, #f0e4d7);
  padding: 3rem 1rem;
}
.partners-section {
  background: #f5f0e6; /* Light warm neutral to contrast tickets section */
  padding: 3rem 1rem;
  text-align: center;
  font-family: var(--body-font);
}

.partners-section h2 {
  font-family: 'Montserrat', sans-serif;  /* fresh clean font */
  color: var(--accent-blue);
  margin-bottom: 2rem;
  font-size: 2rem;
  font-weight: 600;
  letter-spacing: 0.03em;
}


.partners-grid {
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
  gap: 2rem;
  align-items: center;
}

.partner-logo {
  flex: 1 1 120px; /* Minimum 120px wide, grow if space */
  max-width: 160px;
  filter: grayscale(100%);
  opacity: 0.7;
  transition: filter 0.3s ease, opacity 0.3s ease;
}

.partner-logo img {
  width: 100%;
  height: auto;
  display: block;
  object-fit: contain;
}

.partner-logo:hover {
  filter: grayscale(0%);
  opacity: 1;
  cursor: pointer;
}
.about {
  background: linear-gradient(135deg, #fdf8f4, #f4e9dd);
  padding: 4rem 1rem;
}
.about-team {
  padding: 3rem 1rem;
  background: linear-gradient(135deg, #fddf93, #ffad60, #fbc2a9, #b1d8b7, #a5c9f5);
  text-align: center;
}

.about-team h2 {
  font-size: 2rem;
  margin-bottom: 2rem;
  color: #333;
}

.team-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(180px, 1fr));
  gap: 1.5rem;
}

.team-member img {
  width: 100%;
  border-radius: 12px;
  box-shadow: 0 4px 12px rgba(0,0,0,0.1);
  transition: transform 0.3s ease;
}

.team-member img:hover {
  transform: scale(1.05);
}
.map-container {
  position: relative;
  width: 100%;
  padding-bottom: 56.25%; /* 16:9 Aspect Ratio */
  height: 0;
  overflow: hidden;
}

.map-container iframe {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  border: 0;
}
footer {
  background-color: #f5f0e6; /* matches your body background */
  background-image: none !important;
  padding: 1rem 0;
  text-align: center;
  color: #333;
  font-size: 0.9rem;
} 
body {
  background-image: none !important;
  background-color: #f5f0e6 !important;
}
/* Mobile Menu - Smooth Dropdown */
@media (max-width: 768px) {
  .menu-toggle {
    display: block;
    cursor: pointer;
    font-size: 1.8rem;
    color: white;
    padding: 10px;
    background: none;
    border: none;
    z-index: 1050; /* above everything */
  }

  .nav-links {
    display: flex;
    flex-direction: column;
    background: #333;
    position: absolute;
    top: 60px;
    left: 0;
    width: 100%;
    max-height: 0;
    overflow: hidden;
    opacity: 0;
    transition: max-height 0.4s ease, opacity 0.4s ease;
    z-index: 1040; /* above content but below menu button */
  }

  .nav-links.active {
    max-height: 500px;
    opacity: 1;
  }

  .nav-links a {
    display: block; 
    padding: 15px;
    text-align: center;
    border-top: 1px solid #444;
    transition: background 0.3s ease;
    z-index: 2; 
  }

  .nav-links a.current {
    background-color: var(--accent-gold);
    color: #1f1c1c;
    z-index: 3;
  }

  .nav-links a.current::after {
    display: none;
  }

  .nav-links a:hover {
    background-color: #555;
  }
}
.about-date {
  display: flex;
  align-items: center;
  font-weight: bold;
  font-size: 1.2rem;
  color: #D4AF37; /* gold accent */
  margin-bottom: 1rem;
}

.about-date span.icon {
  margin-right: 0.5rem;
  font-size: 1.3rem;
}
.buy-tickets-wrapper {
  text-align: center;
  margin-top: 20px;
}

.buy-tickets-wrapper .buy-tickets-btn {
  display: inline-block; /* Ensures the button keeps its shape when centered */
}
.map-container {
  position: relative;
  padding-top: 56.25%; /* 16:9 aspect ratio */
  overflow: hidden;
  border-radius: 15px;
  box-shadow: 0px 4px 15px rgba(0,0,0,0.3);
  margin: 2rem 0;
}

.map-container iframe {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  border: 0;
}
/* Panelists Section */
.about-panelists {
  padding: 3rem 2rem;
  text-align: center;
  background: #fafafa;
}

.panelist-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(250px, 1fr)); /* flexible grid */
  gap: 2rem;
  margin-top: 2rem;
}

.panelist-card {
  background: #fff;
  border-radius: 20px;
  box-shadow: 0 4px 15px rgba(0,0,0,0.1);
  padding: 1.5rem;
  transition: transform 0.3s ease;
  display: flex;
  flex-direction: column;
  align-items: center;
}

.panelist-card:hover {
  transform: translateY(-5px);
}

.panelist-card img {
  width: 100%;
  max-width: 280px; /* keep images nicely sized */
  height: auto;
  border-radius: 15px;
  margin-bottom: 1rem;
  object-fit: cover;
}

.panelist-card h3 {
  margin: 0.5rem 0 0.2rem;
  font-size: 1.3rem;
  color: #333;
}

.panelist-card p {
  color: #555;
  font-size: 0.95rem;
  line-height: 1.4;
}

/* Activities Section */
.about-activities {
  padding: 3rem 2rem;
  background: #fff8f0;
  text-align: center;
}

.activity-list {
  list-style: none;
  padding: 0;
  margin: 2rem 0;
}

.activity-list li {
  background: #fff;
  margin: 0.5rem 0;
  padding: 1rem 1.5rem;
  border-radius: 15px;
  box-shadow: 0 3px 10px rgba(0,0,0,0.08);
  font-size: 1rem;
  color: #444;
  text-align: left;
}

/* Buy Button */
.buy-button {
  display: inline-block;
  padding: 1rem 2rem;
  background: gold;
  color: black;
  font-weight: bold;
  border-radius: 30px;
  box-shadow: 0 6px 20px rgba(0,0,0,0.3);
  text-decoration: none;
  transition: all 0.3s ease;
}

.buy-button:hover {
  background: #e6c200;
  transform: scale(1.05);
}
/* Schedule list styling */
.schedule-block ul {
  list-style: none;
  padding: 0;
  margin: 15px 0;
}

.schedule-block ul li {
  margin: 10px 0;
  padding: 12px 18px;
  background: #f9f9f9;
  border-radius: 8px;
  font-family: var(--body-font);
  font-size: 16px;
  box-shadow: 0 2px 6px rgba(0,0,0,0.05);
}

/* Time styling */
.schedule-block ul li strong {
  color: var(--accent-gold);
  min-width: 90px; /* aligns all times neatly */
  font-weight: 700;
  display: inline-block;
}

/* Description or additional details inside list items */
.schedule-block ul li br + span {
  display: block;
  margin-top: 5px;
  font-size: 15px;
  color: #555; /* subtle grey for descriptions */
  font-style: italic;
  padding-left: 10px;
}

/* Nested info like panelists or Q&A */
.schedule-block ul li .nested-info {
  display: block;
  margin-top: 5px;
  font-size: 14px;
  color: #666;
  padding-left: 15px;
}

/* Venue headers inside schedule */
.schedule-block h4 {
  margin-top: 20px;
  margin-bottom: 10px;
  font-family: var(--heading-font);
  color: var(--accent-blue);
  font-size: 18px;
}

/* Schedule block images */
.schedule-block img {
  width: 100%;
  margin-top: 20px;
  border-radius: 10px;
  box-shadow: 0 2px 6px rgba(0,0,0,0.1);
}

/* Buy Tickets button */
.buy-tickets {
  text-align: center;
  margin: 40px 0;
}

.btn-tickets {
  display: inline-block;
  padding: 14px 30px;
  background: var(--accent-gold);
  color: #000;
  font-family: var(--heading-font);
  font-size: 18px;
  font-weight: bold;
  text-decoration: none;
  border-radius: 50px;
  box-shadow: 0 6px 12px rgba(0,0,0,0.3);
  transition: all 0.3s ease;
}

.btn-tickets:hover {
  background: #d4af37; /* richer gold */
  transform: translateY(-2px);
  box-shadow: 0 8px 16px rgba(0,0,0,0.4);
}

/* Optional: subtle indentation for multiple lines of text inside a li */
.schedule-block ul li p,
.schedule-block ul li span {
  margin: 5px 0 0 10px;
}

