@font-face {
  font-family: "Gilroy";
  src: url("../font/gilroyfont/Gilroy-Regular.ttf") format("woff2");
  font-weight: 400;
  font-style: normal;
  font-display: swap;
}

@font-face {
  font-family: "Gilroy";
  src: url("../font/gilroyfont/Gilroy-Medium.ttf") format("woff2");
  font-weight: 500;
  font-style: normal;
  font-display: swap;
}

@font-face {
  font-family: "Gilroy";
  src: url("../font/gilroyfont/Gilroy-Bold.ttf") format("woff2");
  font-weight: 700;
  font-style: normal;
  font-display: swap;
}


* {
  margin: 0;
  padding: 0;
  box-sizing: border-box;
  font-family: "Gilroy", sans-serif;
}

body {
  background: #fff;
}

.mr-2 {
  margin-right: 5px;
}

.pt-0 {
  padding-top: 0px !important;
}

/* Header */
.site-header {
  background-color: #e6b028; /* golden yellow */
  height: 70px;
}

.header-container {
  max-width: 1200px;
  height: 100%;
  margin: 0 auto;
  padding: 0 20px;

  display: flex;
  align-items: center;
  justify-content: space-between;
}

/* Logo */
.logo {
  display: flex;
  align-items: center;
  gap: 10px;
}

.logo img {
  height: 40px;
}

/* Navigation */
.nav {
  display: flex;
  gap: 30px;
}

.nav a {
  color: #ffffff;
  text-decoration: none;
  font-size: 30px;
  font-weight: 700;
}

.nav a:hover {
  text-decoration: none;
}

/* Sign In Button */
.sign-in-btn {
  background-color: #7a3e00;
  color: #ffffff;
  padding: 8px 16px;
  border-radius: 6px;
  text-decoration: none;
  font-size: 14px;
  font-weight: 600;
}

.sign-in-btn:hover {
  background-color: #5f2f00;
}




/* PAGE GRID */
.event-page {
  padding: 30px;
}

.event-grid {
  max-width: 1200px;
  margin: auto;
  display: grid;
  grid-template-columns: 240px 1fr 240px;
  gap: 40px;
  align-items: start;
  margin-bottom: 70px;
}

/* SHARED SIDE CARD */
.side-card {
  background: #f3e6d8;
  border-radius: 16px;
  padding: 20px;
}

/* LEFT APP CARD */
.app-card h3 {
  margin: 10px 0 20px;
}

.small-text {
  font-size: 14px;
  color: #333;
}

/*.store-btn {
  width: 100%;
  border: none;
  padding: 14px;
  margin-bottom: 12px;
  border-radius: 10px;
  font-size: 14px;
  cursor: pointer;
}

.apple {
  background: #000;
  color: #fff;
}

.google {
  background: #000;
  color: #fff;
}*/

.app-download-image-appstore {
  text-align: center;
}

.app-download-image-appstore img {
  max-width: 80%;
}

.app-download-image-playstore {
  text-align: center;
}

.app-download-image-playstore img {
  max-width: 80%;
  margin-top: 15px;
}

/* MAIN EVENT CARD */
.main-card {
  background: #f3e6d8;
  border-radius: 18px;
  padding: 18px;
}

.banner-wrap {
  position: relative;
}

.banner-wrap img {
  width: 100%;
  border-radius: 16px;
}

/* Buttons on banner */
.circle-btn {
  position: absolute;
  top: 16px;
  left: 16px;
  background: #fff;
  border: none;
  width: 36px;
  height: 36px;
  border-radius: 50%;
  font-size: 20px;
}

.share-btn {
  position: absolute;
  top: 16px;
  right: 16px;
  background: #fff;
  border: none;
  padding: 8px 14px;
  border-radius: 10px;
  font-weight: 500;
}

/* Text */
.main-card h2 {
  margin: 18px 0;
  font-size: 24px;

}

/* Date pill */
.pill {
  display: inline-block;
  background: #fff;
  padding: 8px 12px;
  border-radius: 20px;
  font-size: 12px;
  margin-bottom: 16px;
  font-weight: bold;
}

/* Location */
/*.location {
  background: #fff;
  border-radius: 14px;
  padding: 14px;
  display: flex;
  align-items: center;
  gap: 12px;
}

.location .icon {
  font-size: 20px;
}

.location span {
  font-size: 13px;
  color: #666;
}

.arrow {
  margin-left: auto;
  font-size: 20px;
}*/

.locationl-outer {
  display: flex;
    align-items: center;
    width: 100%;
    justify-content: space-between;
    margin-bottom: 20px;
    border-bottom: 1px solid #bdbdbd;
    padding-bottom: 12px;
}

.location-icon-outer-content p{
  font-size: 14px;
  margin-top: 4px;
}

.loctaion-icon-outer-box {
  display: flex;
  align-items: center;
}

.location-icon-outer {
  background: #fff;
  padding: 6px 10px;
  margin-right: 10px;
  border-radius: 5px;
}

.arrow {
  text-align: right;
}

/* RIGHT FREE CARD */
.free-card h4 {
  margin-bottom: 20px;
}

.free-text {
  text-align: center;
  font-size: 26px;
  color: green;
  font-weight: 800;
  margin-bottom: 20px;
}

.free-text span {
  font-size: 20px;
  font-weight: 600;
  color: #000;
}

.book-btn-outer {
  width: 100%;
  background: #7a3e00;
  color: #fff;
  padding: 14px;
  border-radius: 6px;
  text-align: center;
  cursor: pointer;
}

.book-btn {  
  font-size: 16px;
  cursor: pointer;
  font-weight: bold;
  color: #fff;
  text-decoration: none;
}




/* Section */
.schedule-section {
  background: #FFF1E3;
  padding: 16px;
  border-radius: 12px;
}

/* Title */
.section-title {
  margin-bottom: 12px;
  /*font-size: 16px;*/
  font-weight: 600;
}

/* Card Wrapper */
.schedule-card {
  display: flex;
  flex-direction: column;
  gap: 15px;
}

/* Day Item */
.day-item {
  background: #ffffff;
  border-radius: 10px;
  padding: 12px;
  display: flex;
  gap: 12px;
  align-items: flex-start;
}

/* Icon */
.icon {
  color: #b45309;
  font-size: 18px;
  margin-top: 2px;
}

/* Text */
.text h4 {
  display: block;
  color: #b45309;
  margin-bottom: 2px;
}

.text p {
  font-size: 12px;
  color: #333;
  margin-top: 4px;
  font-weight: bold;
}




/* ===== Banner Section ===== */
.banner-section-bottom {
  overflow: hidden;
  margin-top: 30px;
  padding: 0 6vw; /* REQUIRED for mobile side visibility */
}

/* ===== Slider Wrapper ===== */
.banner-slider {
  display: flex;
  gap: 16px;
  cursor: grab;
  user-select: none;
  align-items: center;
  will-change: transform;
}

/* ===== Slides ===== */
.banner-slide {
  flex-shrink: 0;
  width: 80%;
  transition: transform 0.6s ease, opacity 0.6s ease;
  transform: scale(0.9);
  opacity: 0.6;
}

.banner-slide.active {
  transform: scale(1.05);
  opacity: 1;
  z-index: 3;
}

.banner-slide.prev,
.banner-slide.next {
  transform: scale(0.95);
  opacity: 0.8;
  z-index: 2;
}

.banner-slide img {
  width: 100%;
  border-radius: 10px;
  pointer-events: none;
  display: block;
}








.bottom-about-content {
  margin-top: 30px;
}

.bottom-about-content h3 {
  margin-bottom: 5px;
}

.bottom-about-content p{
  font-size: 14px;
  line-height: 25px;
}

.gallery-section-outer {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 20px;
    padding: 20px 0px;
}

.gallery-image img{
   max-width: 100%;
   border-radius: 6px;
}




.footer {
  background: #7a3f00;
  color: #fff;
  padding: 40px 60px 100px;
}

.event-footer-container {
  max-width: 1200px;
  margin: auto;
}

.footer-top {
  display: flex;
  justify-content: space-between;
  flex-wrap: wrap;
}

.footer-col {
  min-width: 100px;
}

.brand {
  display: flex;
  align-items: center;
  gap: 10px;
  font-size: 22px;
  font-weight: bold;
}

.brand i {
  font-size: 36px;
}

.follow {
  margin: 30px 0 15px;
}

.social {
  display: flex;
}

.social a {
  margin-right: 12px;
  cursor: pointer;
}

.social a img {
  width: 20px;
}

.footer-col h4 {
  margin-bottom: 15px;
  font-size: 16px;
}

.footer-col a {
  display: block;
  color: #f2e7da;
  text-decoration: none;
  margin-bottom: 15px;
  font-size: 14px;
}

.footer-col img {
  width: 140px;
  display: block;
  margin-bottom: 10px;
}

.footer-bottom {
  border-top: 1px solid rgba(255,255,255,0.3);
  margin-top: 30px;
  padding-top: 15px;
  display: flex;
  justify-content: space-between;
  font-size: 13px;
  flex-wrap: wrap;
}

.designed-and-developed-text {
  display: flex;
  grid-gap: 5px;
  /*align-items: center;*/
}

.designed-and-developed-text img {
  height: 20px;
}



.fixed-footer {
  position: fixed;
  bottom: 0;
  left: 0;
  width: 100%;
  background: #f5e5c7;
  padding: 10px 20px;
  box-shadow: 0 -2px 10px rgba(0,0,0,0.1);
  z-index: 1000;
}

.event-fixed-footer-container {
  max-width: 1200px;
  margin: auto;
}

.event-fixed-footer-outer {
  display: flex;
  justify-content: space-between;
}

/* Left */
.footer-left {
  display: flex;
  align-items: center;
  gap: 10px;
}

.footer-left img {
  width: 45px;
  height: 45px;
  border-radius: 6px;
  object-fit: cover;
}

.footer-left p {
  font-size: 14px;
  margin: 0;
  line-height: 1.3;
  font-weight: bold;
}

/* Center */
.footer-center {
  text-align: center;
  font-weight: bold;
}

.footer-center .free {
  color: green;
  font-size: 20px;
   animation: blink 1.2s infinite;
}

/* Keyframes */
@keyframes blink {
  0% {
    opacity: 1;
    transform: scale(1);
  }
  50% {
    opacity: 0.3;
    transform: scale(1.1);
  }
  100% {
    opacity: 1;
    transform: scale(1);
  }
}

.footer-center .entry {
  font-size: 12px;
  display: block;
}

/* Right */
.footer-right a {
  background: #6b3a00;
  color: #fff;
  border: none;
  padding: 10px 16px;
  border-radius: 6px;
  cursor: pointer;
  font-size: 14px;
  font-weight: bold;
  text-decoration: none;
}

.footer-right a:hover {
  background: #542d00;
}

.fixed-footer-right-side {
  display: flex;
  grid-gap: 20px;
  align-items: center;
}



/* ==============================
   OPEN MORE INFO SECTION (STATIC)
============================== */

.more-info h3 {
  margin-bottom: 20px;
  margin-top: 10px;
}

/* Card */
.info-open-card {
  background: #fff;
  border-radius: 6px;
  margin-bottom: 18px;
  overflow: hidden;
}

/* Header */
.info-open-header {
  background: #ffd9b3;
  padding: 14px 18px;
  display: flex;
  align-items: center;
  justify-content: space-between;
}

.info-open-left {
  display: flex;
  align-items: center;
  gap: 10px;
  font-weight: 500;
  font-size: 16px;
}

.info-open-left i {
  font-size: 18px;
  color: #7a3e00;
}

/* Content */
.info-open-content {
  padding: 16px 20px 20px;
  font-size: 14px;
  line-height: 1.7;
  color: #333;
}

.info-open-content p {
  margin-bottom: 12px;
}

.info-open-content h4 {
  margin: 14px 0 6px;
  font-size: 15px;
  font-weight: 600;
  color: #000;
}

.info-open-content ul {
  padding-left: 18px;
  margin-bottom: 10px;
}

.info-open-content ul li {
  margin-bottom: 6px;
}

/* Accordion animation */
.info-open-content {
  display: block; /* open by default */
}

.info-open-header {
  cursor: pointer;
}

.info-open-header i.fa-chevron-up {
  transition: transform 0.3s ease;
}

/* Accordion default state */
.info-open-content {
  display: none;
}

.info-open-header {
  cursor: pointer;
}

.info-open-header i.fa-chevron-up {
  transition: transform 0.3s ease;
  transform: rotate(180deg); /* arrow points down when closed */
  font-size: 14px;
}


.watch-live-btn {
  background: #ff0000;
  color: #ffffff;
  border: none;
  padding: 10px 16px;
  border-radius: 6px;
  font-size: 14px;
  font-weight: bold;
  display: inline-flex;
  align-items: center;
  gap: 6px;
  cursor: pointer;
  margin-bottom: 20px;
  box-shadow: 0 0 0 rgba(255,0,0,0.6);
  animation: pulse 1.5s infinite;
  text-decoration: none;
}

.watch-live-btn:hover {
  background: #e60000;
}

.play-icon {
  font-size: 12px;
  line-height: 1;
}

.watch-text {
  transition: opacity 0.5s ease, transform 0.5s ease;
  white-space: nowrap;
  line-height: 1.2;
  display: inline-flex;
  align-items: center;
}

@keyframes pulse {
  0% { box-shadow: 0 0 0 0 rgba(255,0,0,0.6); }
  70% { box-shadow: 0 0 0 10px rgba(255,0,0,0); }
  100% { box-shadow: 0 0 0 0 rgba(255,0,0,0); }
}



.seven-day-event-heading-outer {
  display: flex;
  justify-content: space-between;
  align-items: baseline;
}

a.click-for-visit-button {
    background: #6b3a00;
    color: #fff;
    padding: 10px 0px;
    border-radius: 6px;
    font-size: 14px;
    font-weight: bold;
    text-decoration: none;
    width: 90px;
    text-align: center;
}

.header-date-and-timing {
   display: flex;
   justify-content: space-between;
}

.mobileview-days-by, .location-icon-mobileview {
  display: none;
}



/*--event-form-page-start--*/

/* ================= ENROLL CARD ================= */
.event-enroll-card {
  /*max-width: 420px;*/
  margin: 20px auto;
  background: #fff7ec;
  border-radius: 16px;
  padding: 20px;
  box-shadow: 0 10px 25px rgba(0,0,0,0.08);
  font-family: inherit;
}

/* Alert */
.enroll-alert {
  background: #fdebd2;
  color: #9c4a00;
  padding: 10px;
  font-size: 16px;
  border-radius: 10px;
  margin-bottom: 12px;
  text-align: center;
  font-weight: 600;
  line-height: 25px;
}

/* Form */
.enroll-form label {
  font-size: 16px;
  font-weight: 500;
  margin: 20px 0 10px;
  display: block;
  color: #333;
}

.dropdown-options label input{
  width: auto;
}

.enroll-form input {
  width: 100%;
  padding: 12px;
  border-radius: 6px;
  border: 1px solid #ddd;
  font-size: 14px;
  outline: none;
  background: #fff;
}

.enroll-form select {
  width: 100%;
  padding: 12px;
  border-radius: 6px;
  border: 1px solid #ddd;
  font-size: 14px;
  outline: none;
  background: #fff;
}

/* Button */
.enroll-btn {
  width: 100%;
  margin-top: 25px;
  padding: 14px;
  background: #7a3e00;
  color: #fff;
  border: none;
  border-radius: 6px;
  font-size: 16px;
  font-weight: 600;
  cursor: pointer;
}

.enroll-btn:hover {
  background: #5f2f00;
}

/* ================= CUSTOM DROPDOWN ================= */
.custom-dropdown {
  position: relative;
}

.dropdown-selected {
  background: #fff;
  padding: 12px;
  border-radius: 6px;
  border: 1px solid #ddd;
  font-size: 14px;
  display: flex;
  justify-content: space-between;
  align-items: center;
  cursor: pointer;
}

.dropdown-options {
  display: none;
  background: #f4e4cf;
  border-radius: 12px;
  padding: 10px;
  margin-top: 8px;
}

.dropdown-options.show {
  display: block;
}

.dropdown-options label {
  display: flex;
  align-items: center;
  gap: 8px;
  font-size: 14px;
  padding: 6px 0;
  cursor: pointer;
}

.dropdown-options input {
  accent-color: #7a3e00;
}


.enroll-alert-confirmed {
  background: #B6F9DB;
  color: #9c4a00;
  padding: 10px;
  font-size: 16px;
  border-radius: 10px;
  margin-bottom: 12px;
  text-align: center;
  font-weight: 600;
  line-height: 30px;
}

.enroll-alert-confirmed span {
  font-size: 24px;
  font-weight: bold;
}

/* ===== Upload Boxes ===== */
.upload-row {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 16px;
}

.upload-box {
  background: #fffbe9;
  border: 2px dashed #8b4a00;
  border-radius: 12px;
  padding: 24px 10px;
  text-align: center;
  cursor: pointer;
  transition: all 0.3s ease;
  color: #8b4a00;
  font-weight: 600;
}

.upload-box i {
  display: block;
  font-size: 22px;
  margin-bottom: 8px;
}

.upload-box:hover {
  background: #fff3d6;
  border-color: #6b3a00;
}

.terms-and-condition-heading {
  margin-top: 20px;
}

.terms-and-condition-heading a{ 
  color: #7a3e00;
}

/* ===== Terms Popup ===== */
.terms-popup-overlay {
  position: fixed;
  inset: 0;
  background: rgba(0,0,0,0.6);
  display: none;
  align-items: center;
  justify-content: center;
  z-index: 2000;
}

.terms-popup {
  background: #fff7ec;
  width: 90%;
  max-width: 520px;
  border-radius: 14px;
  overflow: hidden;
  animation: popupFade 0.3s ease;
}

@keyframes popupFade {
  from {
    transform: scale(0.9);
    opacity: 0;
  }
  to {
    transform: scale(1);
    opacity: 1;
  }
}

.terms-popup-header {
  background: #7a3e00;
  color: #fff;
  padding: 14px 18px;
  display: flex;
  justify-content: space-between;
  align-items: center;
}

.terms-popup-header h3 {
  font-size: 16px;
  margin: 0;
}

.close-btn {
  font-size: 22px;
  cursor: pointer;
}

.terms-popup-content {
  padding: 18px;
  max-height: 60vh;
  overflow-y: auto;
}

.terms-popup-content ul {
  padding-left: 18px;
}

.terms-popup-content li {
  font-size: 14px;
  margin-bottom: 10px;
  line-height: 1.6;
}



.reel-outer video {
    width: 95%;
    border-radius: 5px;
    height: auto;
    max-height: 600px;
}







/* Mobile */
@media (max-width: 600px) {
  .upload-row {
    grid-template-columns: 1fr;
  }
}



/*--event-form-page-end--*/



@media (max-width: 992px){

.event-grid {
  display: inherit;
}

.side-card.app-card {
  display: none !important;
}

.side-card.free-card {
  display: none;
}

}

/* ===== Mobile Fix ===== */
@media (max-width: 768px) {
  .banner-slide {
    width: 88%;
  }

  .banner-slide.active {
    transform: scale(1.03);
  }
}



@media (max-width: 767px){

  .mobileview-days-by {
   display: flex;
  }

  .webview-days-by {
    display: none;
  }

.text p {
  line-height: 20px;
  font-weight: bold;
}

.nav a {
  font-size: 20px;
}


.location-icon-mobileview {
  display: inherit;
}


.locationl-outer-event {
    background: #fff;
    border: 1px solid #d4b08c;
    padding: 14px 10px 0px;
    margin-bottom: 22px;
    border-radius: 11px;
    display: flex;
    align-items: center;
    justify-content: space-between;
}

.locationl-outer {
  border-bottom: none;
  margin-bottom: 4px;
}

.location-icon-outer {
  background: #f3e6d8;
}

.location-icon-mobileview a img{
  height: 40px;
  margin-right: 15px;
}

.click-for-visit-button {
  display: none;
}

.pill {
  font-weight: bold;
}

}

@media (max-width: 700px){

.fixed-footer {
  border-radius: 20px 20px 0px 0px;
  background: #fff;
  padding: 15px 20px 10px;
}

.footer-left {
  display: none;
}

.fixed-footer-right-side {
    width: 100%;
    justify-content: space-between;
  }

}


@media (max-width: 650px){ 

.nav a {
  font-size: 12px;
}

}


@media (max-width: 500px){  

.sign-in-btn {
  font-size: 12px;
   padding: 10px 10px;
}

a.click-for-visit-button {
  font-size: 12px;
  padding: 10px 10px;
}

.watch-live-btn {
  font-size: 12px;
  padding: 10px 10px;
}

.logo img {
    height: 34px;
}

.gallery-section-outer {
  gap: 10px;
  padding: 10px 0px;
  grid-template-columns: repeat(3, 1fr);
}

.more-info h3 {
  margin-bottom: 10px;
}

}


@media (max-width: 480px){ 

.event-page {
  padding: 30px 17px;
}

.main-card h2 {
  font-size: 18px;
}

}

@media (max-width: 460px){ 

h4 {
  font-size: 14px;
}

p {
  font-size: 12px;
}

.location-icon-outer-content p {
  font-size: 12px;
}

.header-container {
  padding: 0px 15px;
}

.event-page {
  padding: 30px 15px;
}

.info-open-left {
  font-size: 12px;
}

 }



 @media (max-width: 440px){ 

.logo img {
  height: 32px;
}

.sign-in-btn {
  font-size: 12px;
  padding: 8px 9px;
}


a.click-for-visit-button {
   font-size: 12px;
  padding: 8px 9px;
  white-space: pre;
}

.watch-live-btn {
  font-size: 12px;
  padding: 8px 9px;
}

}


@media (max-width: 420px){  
    .logo img {
        height: 26px;
    }

  .sign-in-btn {
  font-size: 10px;
  padding: 6px 7px;
}


a.click-for-visit-button {
   font-size: 10px;
  padding: 6px 7px;
  white-space: pre;
}

.watch-live-btn {
  font-size: 10px;
  padding: 6px 7px;
}

}


@media (max-width: 390px){  

.nav a {
        font-size: 10px;
    }

    .header-container {
      padding: 0px 10px;
    }

        .event-page {
        padding: 20px 10px;
    }

}
