/* --------------------
   GLOBAL STYLES
--------------------- */
body {
  margin: 0;
  font-family: "Helvetica Neue", Arial, sans-serif;
  background: #fffaf7;
  color: #3d3832;
  line-height: 1.6;
}

/* Header Navigation */
header {
  background: #d8e2dc;
  box-shadow: 0 2px 5px rgba(0,0,0,0.1);
  position: sticky;
  top: 0;
  z-index: 1000;
}
.nav-container {
  max-width: 1200px;
  background: #d8e2dc;
	margin: 0 auto;
  display: flex;
  justify-content: space-between;
  align-items: center;
  padding: 0.8rem 1rem;
}
.logo img {
  height: 50px;
}
nav ul {
  list-style: none;
  margin: 0;
  padding: 0;
  display: flex;
  gap: 1.2rem;
}
nav ul li {
  display: inline-block;
}
nav ul li a {
  text-decoration: none;
  color: #3d3832;
  font-weight: 500;
  transition: color 0.3s ease;
}
nav ul li a:hover {
  color: #fae1dd;
}
.menu-toggle {
  display: none;
  cursor: pointer;
  font-size: 1.8rem;
  color: #3d3832;
	 position: relative; /* ensure it can layer above */
  z-index: 9999;     /* very high so it's on top */
}
/* Social + Phone Container */
.social-icons {
  display: flex;
  align-items: center;
  gap: 15px;
  margin-left: 20px;
}

.social-icons a {
  color: #000;
  font-size: 1.2rem;
  text-decoration: none;
  transition: color 0.3s ease;
  display: flex;
  align-items: center;
  gap: 5px;
}

/* Phone link styling */
.phone-link {
  font-size: 1rem;
  font-weight: 500;
}

.phone-link:hover {
  color: #2a7ae2; /* a clean blue for hover */
}

/* Hover colors for icons */
.social-icons a:hover i.fa-facebook-f {
  color: #3b5998;
}

.social-icons a:hover i.fa-instagram {
  color: #c13584;
}
/* Hide mobile-only links on desktop */
.mobile-only {
  display: none;
}
.full-width-iframe-container {
  width: 100vw;          /* full viewport width */
  display: flex;          /* use flexbox to center content */
  justify-content: center; /* horizontal centering */
	margin: 0;
  padding: 0;
  box-sizing: border-box;
}

.full-width-iframe-container iframe {
  width: 100%;           /* full width */
  min-height: 100vh;     /* full viewport height */
  height: auto;          /* allows dynamic height if possible */
  border: none;
  display: block;
}
/* --------------------
   HERO SWIPER
--------------------- */
.hero {
  max-width: 1230px;
	margin: 0 auto;
	position: relative;
  overflow: hidden;
  height: 80vh;
}
.hero .swiper-slide {
  position: relative;
}
.hero img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  filter: brightness(55%);
}
.hero-text {
  position: absolute;
  bottom: 0;              /* pushes it into bottom third */
  left: 50%;
	width: 90%;
	height: 20%;
     justify-content: center;
	align-items: flex-end; /* keep text at bottom */
	text-align: center;
  color: #f9f7f0;
  opacity: 0;
  animation: fadeInText 1s forwards;
	max-width: 90%; 
}
.hero-text h1 {
  font-size: 2rem;
  font-family: "Georgia", serif;
  margin: 0 0 10px;
}
.hero-text p {
  font-size: 1.2rem;
  font-weight: 300;
}
.swiper-slide-active .hero-text {
  opacity: 0;
  animation: fadeInText 1s forwards;
}
@keyframes fadeInText {
  0% { opacity: 0; transform: translate(-50%, -60%); }
  100% { opacity: 1; transform: translate(-50%, -50%); }
}

/* --------------------
   EVENT SLIDER
--------------------- */
.event-section {
  padding: 2rem 1rem;
}
.event-info {
  max-width: 1230px;
  margin: 0 auto;
  padding: 2rem 1rem;
  text-align: center;
  background: #f9f7f0;
}
.event-info h2 {
  font-family: "Georgia", serif;
  font-size: 2rem;
  margin-bottom: 1rem;
  color: #3d3832;
}
.event-slide {
  
	position: relative;
width: 100%;
	overflow: hidden;
  border-radius: 12px;
}
.event-slide img {
 max-width: 1000px;
	height: auto;
	margin: 0 auto;
	max-height: 500px;
 width: 100%;
object-fit: cover;
  display: block;
  border-radius: 12px;
}
.event-slide .overlay {
  position: absolute;
  bottom: 0;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background: rgba(216, 226, 220, 0.85); /* semi-transparent overlay */
  color: #f9f7f0;
  padding: 1rem;
  opacity: 0;
  display: flex;
  flex-direction: column;
  justify-content: center;
  align-items: center;
  text-align: center;
   transform: translateY(100%);
 transition: transform 0.3s ease;
  border-radius: 8px;
}
.event-slide:hover .overlay {
  opacity: 1;
	transform: translateY(0);
}
.event-slide .overlay h3 {
  margin: 0 0 0.3rem;
  font-size: 2rem;
	color: #3d3832;
}

.event-slide .overlay p {
  margin: 0.3rem 0 0.8rem;
  font-size: 0.95rem;
	color: #3d3832;
}

.event-slide .overlay a {
  display: inline-block;
  padding: 0.5rem 1rem;
  background: #ffe5d0;
  color: #3d3832;
  text-decoration: none;
  border-radius: 6px;
  font-weight: 500;
}
/* Sequential fade-in animations for overlay content */
.overlay h3,
.overlay p,
.overlay a {
  opacity: 0;
  transform: translateY(20px);
  transition: opacity 0.5s ease, transform 0.5s ease;
}
.event-slide:hover .overlay h3 {
  opacity: 1;
  transform: translateY(0);
  transition-delay: 0.1s;
}
.event-slide:hover .overlay p {
  opacity: 1;
  transform: translateY(0);
  transition-delay: 0.3s;
}
.event-slide:hover .overlay a {
  opacity: 1;
  transform: translateY(0);
  transition-delay: 0.5s;
}
.event-swiper .swiper-wrapper {
  align-items: center;
}
.overlay h3 {
  margin: 0 0 0.3rem;
  font-size: 1.2rem;
}
.overlay p {
  margin: 0.3rem 0 0.8rem;
  font-size: 0.95rem;
	margin-bottom: 1rem;
}
.overlay a {
  display: inline-block;
	background: #b87333;
  color: #f9f7f0;
  text-decoration: none;
  padding: 0.5rem 1rem;
  border-radius: 4px;
  transition: background 0.3s ease;
}
.overlay a:hover {
  background: #a0612a;
}

/* --------------------
   TICKETS SECTION
--------------------- */
.tickets {
 max-width: 1230px;
	
	margin: 0 auto; background: #fef2ec;
  padding: 3rem 1rem;
  text-align: center;
}
.tickets h2 {
  font-family: "Georgia", serif;
  font-size: 2rem;
  margin-bottom: 1.5rem;
  color: #ce6a00;
}
.tickets h3 {
  font-family: "Georgia", serif;
  font-size: 1.3rem;
  margin-bottom: 1.5rem;
  color: #ce6a00;
}
iframe {
  border: none;
  max-width: 800px;
  width: 100%;
  height: 600px;
}

/* --------------------
   FOOTER
--------------------- */
footer {
 max-width: 1230px;
	height: auto;
	margin: 0 auto; background: #d8e2dc;
  color: #fff;
  text-align: center;
  padding: 1.5rem;
  font-size: 0.9rem;
}
footer a {
  color: #f9f7f0;
  text-decoration: none;
}


/* Image Grid */
.grid-container {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 10px;
  padding: 10px;
}

.grid-item {
  position: relative;
  overflow: hidden;
  width: 100%;
  aspect-ratio: 1 / 1; /* ensures square images */
  border-radius: 8px;
}

.grid-item img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  display: block;
  transition: transform 0.3s ease;
}

.grid-item:hover img {
  transform: scale(1.1);
}

.grid-overlay {
  position: absolute;
  bottom: 0;
  left: 0;
  width: 100%;
  background: rgba(0, 0, 0, 0.6);
  color: #fff;
  padding: 5px;
  text-align: center;
  font-size: 0.9em;
  transition: background 0.3s ease;
}
/* --------------------
   MOBILE RESPONSIVENESS
--------------------- */
@media (max-width: 1024px) {
  .event-swiper .swiper-slide {
    width: auto;
  }
	 .hero-text h1 {
    font-size: 2rem;
  }
  .hero-text p {
    font-size: 1rem;
  }
	.grid-container {
    grid-template-columns: repeat(3, 1fr);
  }
}
}

@media (max-width: 768px) {
  nav ul {
    flex-direction: column;
    background: #f9f7f0;
	gap: 15px;
    position: absolute;
    top: 70px;
    right: 0;
    width: 220px;
    display: none;
    box-shadow: 0 5px 10px rgba(0,0,0,0.1);
    padding: 1rem;
	   z-index: 9998;       /* slightly below the hamburger */
  }
  nav ul.show {
    display: flex;
  }
  nav ul li {
    margin: 0.5rem 0;
  }
  .menu-toggle {
    display: block;
	 font-size: 28px;
    background: none;
    border: none;
    cursor: pointer;
    position: relative;
    z-index: 9999;
  }
 /* Show mobile-only items inside menu */
  .mobile-only {
    display: block;
  }
	/* Social icons row */
  .social-links {
    display: flex;
    gap: 15px;
  }

  .social-links a {
    font-size: 1.2rem;
    color: #000;
    transition: color 0.3s ease;
  }

  .social-links a:hover i.fa-facebook-f {
    color: #3b5998;
  }

  .social-links a:hover i.fa-instagram {
    color: #c13584;
  }
	
 .social-icons {
    position: absolute;
    top: 15px;
    right: 60px; /* leaves space for hamburger */
    flex-direction: column;
    gap: 10px;
    align-items: flex-end;
  }

  .phone-link {
    font-size: 0.9rem;
  }
  .hero-text h1 {
    font-size: 1.2rem;
	height: 50%; /* bottom third */
  }
  .hero-text p {
    font-size: 0.9rem;
  }
	.event-slide .overlay h3 {
    font-size: 1rem;
  }
  .event-slide .overlay p {
    font-size: 0.85rem;
  }
  .event-slide .overlay a {
    padding: 0.4rem 0.8rem;
    font-size: 0.85rem;
  }
.overlay h3 { font-size: 1rem; }
  .overlay p { font-size: 0.85rem; }
  .overlay a { font-size: 0.85rem; padding: 0.4rem 0.8rem; }
  iframe {
    height: 450px;
  }
.grid-container {
    grid-template-columns: repeat(2, 1fr);
  }
}	
 
}

@media (max-width: 480px) {
  .hero {
    height: 60vh;
  }
	.hero-text {
  position: absolute;
  bottom: 0;              /* pushes it into bottom third */
  
		height: 30%;}
	 
  .hero-text h1 {
    font-size: 1rem;
	  
  }
  .hero-text p {
    font-size: 0.9rem;
  }
  .event-info h2,
  .tickets h2 {
    font-size: 1.5rem;
  }
.event-slide .overlay h3 {
    font-size: 0.95rem;
  }
  .event-slide .overlay p {
    font-size: 0.8rem;
  }
  .event-slide .overlay a {
    font-size: 0.8rem;
    padding: 0.35rem 0.7rem;
  }
.overlay h3 { font-size: 0.95rem; }
  .overlay p { font-size: 0.8rem; }
  .overlay a { font-size: 0.8rem; padding: 0.35rem 0.7rem; }
	.grid-container {
    grid-template-columns: repeat(1, 1fr);
  }
}
}
