.events-page {
  background: url("./resources/event-bg.webp");
 background-size: cover;
  background-position: center;
  background-repeat: none;
}



.events-section {
  min-height: 100vh;
}
/* Masonry Layout */
/* Container Masonry Layout */
.event-tiles {
  width: 100%;
  column-count: 4;
  column-gap: 0rem;
  padding: 0rem;
}

@media (max-width: 1024px) {
  .event-tiles {
    column-count: 2;
  }
}

@media (max-width: 600px) {
  .event-tiles {
    column-count: 1;
  }
}

/* Card Styling */
.event-tile {
  break-inside: avoid;

  position: relative;
  overflow: hidden;

  box-shadow: 0 4px 12px rgba(0, 0, 0, 0.15);
  height: 250px;
}

.event-tile img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  display: block;
filter: brightness(0.3);
  transition: filter 0.5s ease-in-out;
}

  .filtered {
    filter: brightness(1) !important;
  }
/* Overlay */
.event-tile-description {
  position: absolute;
  bottom: 0;
  inset: 0;
  background: rgba(0, 0, 0, 0);
  color: white;
  padding: 1rem;
  opacity: 1;
  transition: opacity 0.3s ease;
  display: flex;
  flex-direction: column;
  justify-content: center;
  text-align: center;
}



.event-tile:hover img {

  filter: brightness(0.8);
}

/* Optional: Heading */

.event-categories{
  padding: 2rem 0rem;
}
.event-categories h1 {
  color: var(--color-text);
  text-align: center;

}


/* why us */
.why-us{
position: relative;

min-height: 100vh;
height: 100%;
  color:var(--color-text);
padding: 10rem 0rem;

h1{
  position: relative;
   color:var(--color-text) !important;
}
.underline{
  position: relative;
   color:var(--color-text) !important;
   z-index: 1;
}

}

.why-point{

position: relative;
border: 1px solid var(--primary-white-color);
max-width: 500px;
border-radius: 20px;
margin: 2rem 0rem;
width: 100%;
background-color: var(--primary-black-color);
color: var(--primary-white-color);
cursor: pointer;
p{
  display: none;
}
}
.why-left{
padding: 0.5rem 1rem 1rem 4rem;
.why-us-image{
         left: -25px;
        top: -10px;
}
}
.why-right{
padding: 0.5rem 4rem 1rem 1rem;
.why-us-image{
          right: -25px;
        top: -10px;
}
}
.why-us-image{
  position: absolute;
  width: 20%;
  height: auto;
  border:8px double var(--primary-black-color);
  border-radius: 50%;
  background-color: var(--primary-white-color);
  padding: 10px;
  img{
      /* filter: brightness(0) saturate(100%) invert(50%) sepia(100%) saturate(1000%) hue-rotate(80deg); */
    width: 100%;
  }
}

.why-point.selected {
  border: 1px solid var(--color-accent-light);
  color: var(--color-accent-light);

    transition: all 0.3s ease;
  .why-us-image{

  background-color: var(--color-accent-light);
}

}

.scaling-div {
  animation: bounceScale 1s ease-in-out forwards;
}

@keyframes bounceScale {
  0% { transform: scale(1); }
  50% { transform: scale(1.2); }
  70% { transform: scale(0.95); }
  100% { transform: scale(1); }
}

@media only screen and (min-width:600px){
  .why-us{


    margin-top: 0rem;
    }
}
.why-us::before {
  content: "";
  position: absolute;
  inset: 0;
  background-image: url('./resources/why-us-bg.webp');
  background-size: cover;
  background-position: top;
  filter: contrast(2) brightness(0.5); /* You can customize this */
  z-index: 0;
}
.why-us-container{
  padding: 2rem 2rem;
   position: relative;
 
}
.why-us-description{


  max-width: 600px;
}



.stack {
  margin: 0 auto;
  width: 100%;
  max-width: 300px;
  padding: 5px 5px 5px 5px;
  background-color: var(--color-accent-light);
  border-radius: 20px;
 
}



#main-why-us-image {
  width: 100%;
  border-radius: 20px;
  background-color: #eee;
  aspect-ratio: 2 / 3;
  object-fit: cover;
  position: relative;
    transition: opacity 0.3s ease-in-out;
  opacity: 0; /* starts transparent until loaded */

}





/* why us */



.insta-section {
  padding: 40px 20px;
  background: #f9f9f9;
  text-align: center;
  font-family: Arial, sans-serif;
}

.insta-section h2 {
  font-size: 1.8rem;
  margin-bottom: 20px;
  color: #222;
}

.insta-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(120px, 1fr));
  gap: 10px;
  max-width: 800px;
  margin: 0 auto;
}

.insta-grid img {
  width: 100%;
  height: auto;
  border-radius: 6px;
  transition: transform 0.3s ease;
  cursor: pointer;
}

.insta-grid img:hover {
  transform: scale(1.03);
}

.insta-link {
  display: inline-block;
  margin-top: 20px;
  padding: 10px 20px;
  background: #e1306c;
  color: #fff;
  border-radius: 20px;
  text-decoration: none;
  font-weight: bold;
  font-size: 0.95rem;
  transition: background 0.3s ease;
}

.insta-link:hover {
  background: #c1265a;
}


.booking-cta {
  background: #e1306c;
  color: white;
  padding: 50px 20px;
  text-align: center;
  font-family: Arial, sans-serif;
  border-radius: 10px;
  margin: 40px auto;
  max-width: 600px;
}

.booking-cta h2 {
  font-size: 2rem;
  margin-bottom: 15px;
}

.booking-cta p {
  font-size: 1.2rem;
  margin-bottom: 30px;
}

.btn-book {
  background: white;
  color: #e1306c;
  padding: 12px 30px;
  font-weight: bold;
  text-decoration: none;
  border-radius: 30px;
  transition: background-color 0.3s ease;
  font-size: 1.1rem;
}

.btn-book:hover {
  background: #c1265a;
  color: white;
}



#servicesCarousel {
  width: 90%;
  max-width: 900px;
  margin: 50px auto;

  position: relative;
}

.service-slide {
  margin: 0 1rem;
  display: flex;
  flex-direction: column;
  align-items: center;
  text-align: center;
}

.service-slide img {
  width: 100%;
  max-width: 600px;
  border-radius: 15px;
  margin-bottom: 20px;
  object-fit: cover;
 
  height: 300px;
}

#dance img{
 object-position: top;
}
 #lighting img{
 object-position: center;

 }

.service-slide h2 {
  
  margin-bottom: 5px;
  color: var(--color-accent);
}
.service-slide .underline {
  
  margin-bottom: 15px;
  color: var(--color-accent);
}


.service-slide p {
  text-align: left;
  line-height: 30px;
  max-width: 700px;
  color: var(--primary-white-color);
}
.service-details{
  padding: 5rem 0rem 2rem 0rem;
  color:var(--primary-white-color);
  background-color: var(--color-surface);

}
.swiper-button-prev, .swiper-button-next{
  color: var(--color-primary-light) !important;
  top: 25% !important;
  opacity: 0.3;
}

.join-us-events{
  margin:0rem 0rem 8rem 0rem;
}
