/* ================================
   Events Page Styles
   ================================ */

/* General layout wrappers */
#event-intro {
    padding: 80px 20px 60px;
    text-align: center;
    color: #ffffff;
}

/* Fun background gradient + subtle texture vibe */
#event-intro.fun-bg {
    background: radial-gradient(circle at top, #f9d342 0, #282828 40%, #000000 85%);
    position: relative;
    overflow: hidden;
}

#event-intro.fun-bg::before {
    content: "";
    position: absolute;
    inset: 0;
    background-image:
        radial-gradient(circle at 10% 20%, rgba(255,255,255,0.04) 0, transparent 55%),
        radial-gradient(circle at 80% 0, rgba(249,211,66,0.08) 0, transparent 60%);
    opacity: 0.9;
    pointer-events: none;
}

#event-intro h1 {
    position: relative;
    font-size: 2.4rem;
    letter-spacing: 0.06em;
    text-transform: uppercase;
    margin-bottom: 12px;
    z-index: 1;
}

#event-intro p {
    position: relative;
    max-width: 650px;
    margin: 0 auto;
    font-size: 0.95rem;
    line-height: 1.7;
    color: #f4f4f4;
    z-index: 1;
}

/* ================================
   Tabs
   ================================ */

.tabs {
    display: flex;
    justify-content: center;
    gap: 10px;
    background: #111111;
    padding: 16px 10px 10px;
    border-bottom: 1px solid #333333;
}

.tab-link {
    background: transparent;
    border: 1px solid #444444;
    border-radius: 999px;
    padding: 8px 18px;
    font-size: 0.9rem;
    text-transform: uppercase;
    letter-spacing: 0.08em;
    color: #f0f0f0;
    cursor: pointer;
    transition: all 0.2s ease;
}

.tab-link:hover {
    border-color: #f9d342;
    color: #f9d342;
    background-color: rgba(249, 211, 66, 0.06);
}

.tab-link.active {
    background: #f9d342;
    color: #1a1a1a;
    border-color: #f9d342;
}

/* Section wrapper for tab content */
.tab-content {
    padding: 30px 16px 50px;
    background: #060606;
}

/* ================================
   Events Grid + Cards
   ================================ */

.events-grid {
    max-width: 1200px;
    margin: 0 auto;
    display: grid;
    grid-template-columns: 1fr;
    gap: 22px;
}

/* 2 columns on medium screens */
@media (min-width: 700px) {
    .events-grid {
        grid-template-columns: repeat(2, minmax(0, 1fr));
    }
}

/* 3 columns on larger screens if space allows */
@media (min-width: 1100px) {
    .events-grid {
        grid-template-columns: repeat(3, minmax(0, 1fr));
    }
}

.event-card {
    background: #141414;
    border-radius: 14px;
    overflow: hidden;
    box-shadow: 0 14px 30px rgba(0, 0, 0, 0.7);
    border: 1px solid #252525;
    display: flex;
    flex-direction: column;
    transition: transform 0.18s ease, box-shadow 0.18s ease, border-color 0.18s ease;
}

.event-card.smaller-card {
    /* hook if you want to tweak event cards differently later */
}

.event-card:hover {
    transform: translateY(-3px);
    box-shadow: 0 20px 40px rgba(0, 0, 0, 0.8);
    border-color: rgba(249, 211, 66, 0.6);
}

/* Image at top of card */
.event-image {
    width: 100%;
    background: #000;
}

.event-image img {
    display: block;
    width: 100%;
    height: 220px;
    object-fit: cover;
}

/* Card text area */
.event-details {
    padding: 16px 16px 18px;
    display: flex;
    flex-direction: column;
    gap: 6px;
}

.event-details h3 {
    font-size: 1.15rem;
    margin: 0 0 4px;
    color: #ffffff;
}

.event-details p {
    margin: 0;
    font-size: 0.9rem;
    color: #d6d6d6;
    line-height: 1.55;
}

.event-details p em {
    color: #f9d342;
    font-style: normal;
    font-size: 0.85rem;
}

.event-details p strong {
    color: #f9d342;
}

/* "Walk-ins welcome" text */
.no-res-text {
    font-size: 0.85rem;
    margin-top: 6px;
    opacity: 0.85;
    color: #bfbfbf;
}

/* ================================
   CTA / Buttons
   ================================ */

.cta-button {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    padding: 9px 18px;
    border-radius: 999px;
    font-size: 0.9rem;
    font-weight: 600;
    text-decoration: none;
    border: none;
    cursor: pointer;
    transition: all 0.18s ease;
    margin-top: 10px;
}

.book-btn {
    background: #f9d342;
    color: #282828;
    box-shadow: 0 8px 18px rgba(249, 211, 66, 0.3);
}

.book-btn:hover {
    background: #ffffff;
    color: #282828;
    box-shadow: 0 10px 22px rgba(0, 0, 0, 0.6);
    transform: translateY(-1px);
}

/* Floating CTA at bottom right */
.floating-cta {
    position: fixed;
    bottom: 20px;
    right: 20px;
    background-color: #f9d342;
    color: #282828;
    padding: 12px 20px;
    font-weight: bold;
    border-radius: 50px;
    z-index: 9999;
    text-decoration: none;
    box-shadow: 0 2px 8px rgba(0, 0, 0, 0.3);
}

.floating-cta:hover {
    background-color: #ffffff;
    color: #282828;
}

/* ================================
   Book Event Section (bottom)
   ================================ */

#book-event {
    padding: 50px 16px 60px;
    text-align: center;
    background: radial-gradient(circle at top, #1f1f1f 0, #050505 60%);
    color: #f5f5f5;
    border-top: 1px solid #202020;
    border-bottom: 1px solid #202020;
}

#book-event h2 {
    font-size: 1.7rem;
    margin-bottom: 10px;
}

#book-event p {
    max-width: 600px;
    margin: 0 auto 18px;
    font-size: 0.95rem;
    line-height: 1.6;
}

/* buttons inside book-event use .cta-button.book-btn */

/* ================================
   Event Reviews Section
   ================================ */

.center-content {
    padding: 40px 16px 60px;
    background: #050505;
    color: #f8f8f8;
    text-align: center;
}

.center-content h2 {
    font-size: 1.5rem;
    margin-bottom: 10px;
}

.center-content ul {
    list-style: none;
    padding: 0;
    margin: 10px auto 0;
    max-width: 480px;
}

.center-content li {
    margin-bottom: 6px;
    font-size: 0.95rem;
    color: #e0e0e0;
}

/* ================================
   Calendar View
   ================================ */

#calendar {
    background: #050505;
}

#calendar-container {
    max-width: 1000px;
    margin: 0 auto;
    background: #101010;
    border-radius: 12px;
    padding: 18px;
    border: 1px solid #262626;
    box-shadow: 0 12px 26px rgba(0, 0, 0, 0.7);
}

/* FullCalendar overrides (light touch) */
.fc .fc-toolbar-title {
    color: #fefefe;
}

.fc .fc-button-primary {
    background-color: #f9d342;
    border-color: #f9d342;
    color: #222222;
}

.fc .fc-button-primary:hover {
    background-color: #ffffff;
    border-color: #ffffff;
    color: #111111;
}

.fc-theme-standard .fc-scrollgrid,
.fc-theme-standard td,
.fc-theme-standard th {
    border-color: #333333;
}

.fc-theme-standard .fc-daygrid-day-number {
    color: #eaeaea;
}

.fc-theme-standard .fc-day-today {
    background: rgba(249, 211, 66, 0.08);
}

/* ================================
   Responsive tweaks
   ================================ */

@media (max-width: 600px) {
    #event-intro {
        padding: 60px 16px 40px;
    }

    #event-intro h1 {
        font-size: 1.8rem;
    }

    .floating-cta {
        bottom: 16px;
        right: 16px;
        padding: 10px 16px;
        font-size: 0.85rem;
    }

    .event-image img {
        height: 190px;
    }
}
