/* Basic Reset and Fonts */
body {
    margin: 0;
    font-family: Arial, sans-serif;
    line-height: 1.6;
    background-color: #f4f4f4;
    color: #333;
}

header {
    background: #B1C4A4;
    color: white;
    padding: 20px;
    text-align: center;
}

.header-content {
  display: flex;
  justify-content: space-between;
  align-items: center;
  max-width: 1200px;
  margin: 0 auto;
  padding: 10px 20px;
  flex-wrap: wrap;
}

.menu-toggle {
  display: none;
  font-size: 28px;
  background: none;
  border: none;
  color: white;
  cursor: pointer;
}

.nav-links ul {
  list-style: none;
  display: flex;
  gap: 20px;
  margin: 0;
  padding: 0;
}

.nav-links a {
  color: white;
  text-decoration: none;
  font-weight: bold;
}

.nav-links a:hover {
  text-decoration: underline;
}

/* Mobile styles */
@media (max-width: 768px) {
  .menu-toggle {
    display: block;
  }

  .nav-links {
    width: 100%;
    display: none;
    flex-direction: column;
  }

  .nav-links.active {
    display: flex;
  }

  .nav-links ul {
    flex-direction: column;
    align-items: flex-start;
    gap: 10px;
    padding: 10px 0;
  }

  .header-content {
    align-items: flex-start;
  }
}

.logo img {
  display: block;
  height: auto;
}

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

nav a {
  color: white;
  text-decoration: none;
  font-weight: bold;
}

nav a:hover {
  text-decoration: underline;
}

ul {
  list-style-type: none;
  padding-left: 0;
}

.custom-list {
  list-style: none;
  padding-left: 0;
}

.custom-list {
  list-style: none;
  padding-left: 0;
  margin: 0 auto;
  max-width: 600px; /* Optional: controls width */
}

.custom-list li {
  display: flex;
  align-items: flex-start;
  margin-bottom: 10px;
}

.custom-list img {
  width: 20px;
  height: 20px;
  margin-right: 10px;
  margin-top: 4px;
}

.hero {
  text-align: center;
  padding: 40px 20px;
  background-image: url('../images/flower_bg.jpg');
  background-size: cover;
  background-position: center;
  background-repeat: no-repeat;
}

.gallery {
    display: flex;
    justify-content: center;
    flex-wrap: wrap;
    gap: 10px;
    padding: 20px;
}

.gallery img {
    width: 100%;
    max-width: 300px;
    border-radius: 8px;
    box-shadow: 0 0 10px rgba(0, 0, 0, 0.1);
}

footer {
    background: #B1C4A4;
    color: white;
    text-align: center;
    padding: 20px;
    margin-top: 40px;
}

.social-links a {
    margin: 0 10px;
    color: white;
    text-decoration: none;
}

main {
  padding: 20px;
/*  background-image: url('images/flower_bg.jpg'); */
/*  background-size: cover;           Make it fill the area */
/*  background-position: center;       Keep the focus centered */
/*  background-repeat: no-repeat; */
}

section {
    margin-bottom: 40px;
}

/* Fade-in Animation */
.fade-in {
    opacity: 0;
    transform: translateY(20px);
    transition: opacity 0.6s ease-out, transform 0.6s ease-out;
}

.fade-in.visible {
    opacity: 1;
    transform: none;
}

@media (max-width: 600px) {
    nav ul {
        flex-direction: column;
        gap: 10px;
    }

    .gallery {
        flex-direction: column;
        align-items: center;
    }

    .logo img {
        width: 150px;
    }
}

/* Filter Controls */
#filter-controls {
  display: flex;
  flex-wrap: wrap;
  gap: 10px;
  margin-bottom: 20px;
  justify-content: center;
}
#searchBox, #tagFilter {
  padding: 8px;
  font-size: 1rem;
  border: 1px solid #ccc;
  border-radius: 6px;
}

/* Booking Button */
.btn-book {
  display: inline-block;
  margin-top: 10px;
  padding: 6px 12px;
  background: #2e8b57;
  color: white;
  text-decoration: none;
  border-radius: 4px;
  font-weight: bold;
}
.btn-book:hover {
  background: #246f45;
}

/* Tag badges */
.tag {
  display: inline-block;
  margin: 4px 4px 0 0;
  padding: 4px 8px;
  font-size: 0.8em;
  background: #eef1ec;
  border-radius: 12px;
  color: #2e8b57;
}

/* Date navigation */
.day-nav {
  background: #e9ffe9;
  padding: 10px;
  text-align: center;
  margin-bottom: 20px;
  border-radius: 8px;
  font-size: 1rem;
}
.day-nav a {
  margin: 0 6px;
  color: #2e8b57;
  text-decoration: none;
  font-weight: bold;
}
.day-nav a:hover {
  text-decoration: underline;
}

.event-poster-thumb {
  max-width: 200px;
  height: auto;
  margin-top: 10px;
  border-radius: 6px;
  box-shadow: 0 2px 6px rgba(0, 0, 0, 0.15);
  transition: transform 0.2s ease;
}

.event-poster-thumb:hover {
  transform: scale(1.03);
}

#backToTop {
  position: fixed;
  bottom: 30px;
  right: 30px;
  padding: 10px 16px;
  font-size: 16px;
  background-color: #2e8b57;
  color: white;
  border: none;
  border-radius: 6px;
  cursor: pointer;
  display: none; /* Hidden by default */
  z-index: 1000;
  box-shadow: 0 2px 6px rgba(0,0,0,0.2);
  transition: opacity 0.3s ease;
}
#backToTop:hover {
  background-color: #246f45;
}

.event-card {
  border: 1px solid #ccc;
  border-radius: 8px;
  padding: 16px;
  margin-bottom: 20px;
  background: white;
  cursor: pointer;
  transition: box-shadow 0.2s ease;
}
.event-card:hover {
  box-shadow: 0 2px 8px rgba(0,0,0,0.1);
}

.event-details {
  display: none;
  margin-top: 12px;
}
.event-card.expanded .event-details {
  display: block;
}

.photo-gallery {
  text-align: center;
  margin: 40px 0;
}

.gallery-wrapper {
  position: relative;
  overflow: hidden;
  max-width: 100%;
  margin: auto;
}

.gallery-scroll {
  display: flex;
  overflow-x: auto;
  scroll-behavior: smooth;
  gap: 10px;
  padding: 10px 0;
  scrollbar-width: none; /* hide scrollbar for Firefox */
}

.gallery-scroll::-webkit-scrollbar {
  display: none; /* hide scrollbar for Chrome */
}

.gallery-scroll img {
  height: 200px;
  flex: 0 0 auto;
  border-radius: 8px;
  box-shadow: 0 2px 8px rgba(0,0,0,0.15);
  transition: transform 0.3s ease;
}

.gallery-scroll img:hover {
  transform: scale(1.05);
}

.scroll-btn {
  position: absolute;
  top: 50%;
  transform: translateY(-50%);
  background: #2e8b57;
  color: white;
  border: none;
  padding: 10px 14px;
  cursor: pointer;
  font-size: 24px;
  z-index: 1;
  border-radius: 50%;
}

.scroll-btn.left {
  left: 0;
}

.scroll-btn.right {
  right: 0;
}

.sponsors-band {
  background-color: #f4f4f4;
  padding: 40px 20px;
  text-align: center;
  margin-top: 10px;
}

.sponsor-heading {
  font-weight: bold;
  margin-bottom: 10px;
  font-size: 1.2em;
}

.sponsor-logos {
  display: flex;
  justify-content: center;
  flex-wrap: wrap;
  gap: 20px;
  margin-bottom: 10px;
}

.sponsor-logos img {
  max-height: 60px;
  width: auto;
  object-fit: contain;
  filter: drop-shadow(0 0 3px rgba(0, 0, 0, 0.1));
}

.venue-list {
  display: grid;
  grid-template-columns: 1fr;
  gap: 20px;
  padding: 20px;
}

.venue-card {
  background: #ffffff;
  border-left: 6px solid #2e8b57;
  padding: 15px 20px;
  box-shadow: 0 0 10px rgba(0, 0, 0, 0.05);
}

.venue-card h3 {
  margin-top: 0;
  color: #2e8b57;
}

.venue-card a {
  display: inline-block;
  margin-top: 8px;
  color: #2e8b57;
  font-weight: bold;
  text-decoration: none;
}

.venue-card a:hover {
  text-decoration: underline;
}

@media (min-width: 700px) {
  .venue-list {
    grid-template-columns: 1fr 1fr;
  }
}
