/* Your Custom CSS Code Goes Here */

.custom-scroller {
    overflow-y: auto;
    scrollbar-width: thin;
    scrollbar-color: #880e13 #3e0609;
    padding-right: 10px;
}
@keyframes pulse-glow {
            0%, 100% { box-shadow: 0 0 20px rgba(59, 130, 246, 0.3); }
            50% { box-shadow: 0 0 40px rgba(59, 130, 246, 0.6); }
        }
       
        @keyframes slide-up {
            0% { transform: translateY(30px); opacity: 0; }
            100% { transform: translateY(0); opacity: 1; }
        }
       
        @keyframes fade-in {
            0% { opacity: 0; transform: scale(0.95); }
            100% { opacity: 1; transform: scale(1); }
        }
       
        @keyframes float-gentle {
            0%, 100% { transform: translateY(0px); }
            50% { transform: translateY(-10px); }
        }
       
        .slide-up {
            animation: slide-up 0.8s ease-out forwards;
        }
       
        .fade-in {
            animation: fade-in 1s ease-out forwards;
        }
       
        .float-gentle {
            animation: float-gentle 4s ease-in-out infinite;
        }
       
        .video-placeholder {
            background: linear-gradient(45deg, rgba(255,255,255,0.1) 25%, transparent 25%),
                        linear-gradient(-45deg, rgba(255,255,255,0.1) 25%, transparent 25%),
                        linear-gradient(45deg, transparent 75%, rgba(255,255,255,0.1) 75%),
                        linear-gradient(-45deg, transparent 75%, rgba(255,255,255,0.1) 75%);
            background-size: 20px 20px;
            background-position: 0 0, 0 10px, 10px -10px, -10px 0px;
        }
       
        .play-button {
            transition: all 0.3s ease;
        }
       
        .play-button:hover {
            transform: scale(1.1);
            box-shadow: 0 0 30px rgba(255, 255, 255, 0.3);
        }
.blog-card {
            transition: all 0.4s cubic-bezier(0.175, 0.885, 0.32, 1.275);
            position: relative;
            overflow: hidden;
        }

/* ── Swiper Pagination Override (for all swipers including hero) ── */
:root {
  --swiper-pagination-color: #f1ba55;                    /* Your secondary color - change this hex to match your theme (e.g. orange from hover:bg-secondary) */
  --swiper-pagination-bullet-inactive-color: #9ca3af;    /* gray-400 for inactive dots */
  --swiper-pagination-bullet-inactive-opacity: 0.6;
  --swiper-pagination-bullet-opacity: 1;
  --swiper-pagination-bullet-size: 10px;                 /* optional: bigger dots */
  --swiper-pagination-bullet-horizontal-gap: 6px;
}

.swiper-pagination-bullet {
  background: var(--swiper-pagination-bullet-inactive-color) !important;
  opacity: var(--swiper-pagination-bullet-inactive-opacity) !important;
  width: var(--swiper-pagination-bullet-size) !important;
  height: var(--swiper-pagination-bullet-size) !important;
  border-radius: 50% !important;
}

.swiper-pagination-bullet-active {
  background: var(--swiper-pagination-color) !important;
  opacity: var(--swiper-pagination-bullet-opacity) !important;
}

/* If you want specific swipers different - uncomment & customize */
/*
.heroSwiper .swiper-pagination-bullet-active {
  background: #fffff !important;
}
*/
   
    @keyframes float {
      0%, 100% {
        transform: translateY(0px);
      }
      50% {
        transform: translateY(-10px);
      }
    }
   
    .promotions-section .swiper-slide img {
      animation: float 4s ease-in-out infinite;
    }
 
 
 
#testimonial-24 .swiper-slide-next{
position: relative;
  display: inline-block;
  opacity:1 !important;
}
#testimonial-24 .swiper-slide-next::after {
  content: "";
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  /* This creates the colored tint from left to right */
  background: linear-gradient(265deg,rgba(241, 186, 85, 1) 70%, rgba(148, 187, 233, 0) 100%) !important;
  }
 
 #testimonial-24 .swiper-slide-prev{
position: relative;
  display: inline-block;
  opacity:1 !important;
}
#testimonial-24 .swiper-slide-prev::after {
  content: "";
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  /* This creates the colored tint from left to right */
background: linear-gradient(90deg,rgba(241, 186, 85, 1) 70%, rgba(148, 187, 233, 0) 100%) !important;
  }

/*Events yellow marquee */
@keyframes marquee {
  from { transform: translateX(0); }
  to { transform: translateX(-50%); }
}
.animate-marquee {
  animation: marquee 25s linear infinite; /* 35–50s recommended for bg subtlety; was 20s → too fast, seam more visible */
}

    /* =============================================
   810 Entertainment — FullCalendar Custom Theme
   primary:   #000000
   secondary: #960f15
   tertiary:  #f1ba55
   ============================================= */

/* ── Toolbar / Header ── */
.fc .fc-toolbar {
  flex-wrap: wrap;
  gap: 0.5rem;
  padding: 1rem;
  background-color: #000000;
  border-radius: 0.75rem 0.75rem 0 0;
}

.fc .fc-toolbar-title {
  font-family: 'Poppins', sans-serif;
  font-size: 1.25rem;
  font-weight: 700;
  color: #f1ba55;
  text-transform: uppercase;
  letter-spacing: 0.05em;
}

/* ── Toolbar Buttons ── */
.fc .fc-button {
  background-color: #960f15 !important;
  border-color: #960f15 !important;
  color: #ffffff !important;
  font-family: 'Poppins', sans-serif;
  font-weight: 600;
  font-size: 0.75rem;
  text-transform: uppercase !important;
  letter-spacing: 0.05em;
  padding: 0.4rem 0.85rem;
  border-radius: 0 !important;
  transition: all 0.2s ease;
  box-shadow: none !important;
}

.fc .fc-button:hover {
  background-color: #f1ba55 !important;
  border-color: #f1ba55 !important;
  color: #000000 !important;
}

.fc .fc-button:focus {
  outline: 2px solid #f1ba55 !important;
  outline-offset: 2px;
  box-shadow: none !important;
}

/* Active / pressed state (e.g. current view button) */
.fc .fc-button-active,
.fc .fc-button:not(:disabled):active {
  background-color: #f1ba55 !important;
  border-color: #f1ba55 !important;
  color: #000000 !important;
}

/* Prev / Next chevrons */
.fc .fc-prev-button,
.fc .fc-next-button {
  padding: 0.4rem 0.6rem;
}

/* ── Calendar Container ── */
.fc {
  font-family: 'Poppins', sans-serif;
  border: 2px solid #000000;
  border-radius: 0.75rem;
  overflow: hidden;
}

/* ── Table Borders ── */
.fc .fc-scrollgrid {
  border-color: #e5e7eb !important;
}

.fc td,
.fc th {
  border-color: #e5e7eb !important;
}

/* ── Day Header Row (Mon, Tue…) ── */
.fc .fc-col-header-cell {
  background-color: #000000;
  padding: 0.5rem 0;
}

.fc .fc-col-header-cell-cushion {
  color: #f1ba55;
  font-weight: 700;
  font-size: 0.75rem;
  text-transform: uppercase;
  letter-spacing: 0.08em;
  text-decoration: none !important;
}

/* ── Today Highlight ── */
.fc .fc-day-today {
  background-color: rgba(150, 15, 21, 0.07) !important;
}

.fc .fc-day-today .fc-daygrid-day-number {
  background-color: #960f15;
  color: #ffffff;
  border-radius: 50%;
  width: 1.75rem;
  height: 1.75rem;
  display: flex;
  align-items: center;
  justify-content: center;
  font-weight: 700;
}

/* ── Day Numbers ── */
.fc .fc-daygrid-day-number {
  color: #000000;
  font-weight: 500;
  font-size: 0.85rem;
  text-decoration: none !important;
  padding: 0.35rem 0.5rem;
}

.fc .fc-daygrid-day-number:hover {
  color: #960f15;
}

/* ── Events ── */
.fc .fc-event {
  background-color: #960f15 !important;
  border-color: #960f15 !important;
  color: #ffffff !important;
  border-radius: 0.25rem;
  font-size: 0.7rem;
  font-weight: 600;
  padding: 2px 4px;
  cursor: pointer;
  transition: background-color 0.2s ease;
}

.fc .fc-event:hover {
  background-color: #f1ba55 !important;
  border-color: #f1ba55 !important;
  color: #000000 !important;
}

.fc .fc-event-title {
  font-family: 'Poppins', sans-serif;
}

/* ── More Events Link ("+2 more") ── */
.fc .fc-daygrid-more-link {
  color: #960f15;
  font-weight: 600;
  font-size: 0.7rem;
}

.fc .fc-daygrid-more-link:hover {
  color: #f1ba55;
}

/* ── Popover (when clicking "more") ── */
.fc .fc-popover {
  border: 2px solid #000000;
  border-radius: 0.5rem;
  overflow: hidden;
  box-shadow: 0 10px 30px rgba(0,0,0,0.2);
}

.fc .fc-popover-header {
  background-color: #000000;
  color: #f1ba55;
  font-weight: 700;
  font-size: 0.75rem;
  text-transform: uppercase;
  padding: 0.5rem 0.75rem;
}

.fc .fc-popover-close {
  color: #f1ba55;
  opacity: 1;
}

/* ── List View ── */
.fc .fc-list-day-cushion {
  background-color: #000000 !important;
}

.fc .fc-list-day-text,
.fc .fc-list-day-side-text {
  color: #f1ba55 !important;
  font-weight: 700;
  text-decoration: none !important;
}

.fc .fc-list-event:hover td {
  background-color: rgba(150, 15, 21, 0.08);
}

.fc .fc-list-event-dot {
  border-color: #960f15 !important;
}

/* ── Time Grid (Week/Day views) ── */
.fc .fc-timegrid-slot-label-cushion {
  font-size: 0.7rem;
  color: #64748b;
}

.fc .fc-timegrid-now-indicator-line {
  border-color: #960f15;
}

.fc .fc-timegrid-now-indicator-arrow {
  border-top-color: #960f15;
  border-bottom-color: #960f15;
}

/* ── Scrollbar (optional, WebKit only) ── */
.fc ::-webkit-scrollbar {
  width: 5px;
  height: 5px;
}

.fc ::-webkit-scrollbar-thumb {
  background-color: #960f15;
  border-radius: 9999px;
}

.fc ::-webkit-scrollbar-track {
  background-color: #f3f4f6;
}

@media (max-width: 768px) {
  .fc .fc-view-harness {
    height: 80vh !important;
  }
}
select::-ms-expand {
  display: none;
}
.fc-scrollgrid-sync-inner {
    text-transform: capitalize;
}