/* RESET & BASE */
* {
    box-sizing: border-box;
    margin: 0;
    padding: 0;
}

body {
    font-family: 'Lora', serif;
    background: #141312;
    color: #eee;
    line-height: 1.6;
    scroll-behavior: smooth;
    text-align: center;
    padding-bottom: 100px; /* space for payment bar */
}

a {
    color: inherit;
    text-decoration: none;
    transition: color 0.2s ease;
}

/* HERO */
.hero {
    background: linear-gradient(rgba(20,15,12,0.6), rgba(20,15,12,0.9)),
                url('hero-bg.jpg') center / cover no-repeat;
    padding: 7rem 1rem 6rem;
}

.hero h1 {
    font-family: 'Shrikhand', cursive;
    font-size: clamp(2.8rem, 6vw, 4.2rem);
    margin-bottom: 0.5rem;
}

.tagline {
    font-size: 1.15rem;
    color: #f2d7b6;
    letter-spacing: 1px;
}

/* SOCIAL LINKS */
.social-links {
    margin-top: 1.5rem;
}

.social-links a {
    font-size: 1.6rem;
    margin: 0 0.6rem;
    color: #fff;
    transition: color 0.2s ease, transform 0.2s ease;
}

.social-links a:hover {
    color: #c94a4a;
    transform: translateY(-2px);
}

/* SECTIONS */
.section {
    max-width: 1000px;
    margin: 3rem auto;
    padding: 2.5rem 1.2rem;
    border-radius: 18px;
    background: #181716;
    transition: transform 0.25s ease, box-shadow 0.25s ease;
}

.section:nth-of-type(even) {
    background: #1f1d1c;
}

.section:hover {
    transform: translateY(-2px);
}

.section h2 {
    margin-bottom: 1.5rem;
    letter-spacing: 2px;
    font-size: 1.6rem;
    color: #e6c9a8;
    text-transform: uppercase;
}

.section p {
    max-width: 720px;
    margin: 0.6rem auto 0;
    font-size: 1.05rem;
    color: #ddd;
}

/* DIVIDERS */
hr {
    border: none;
    height: 1px;
    background: #333;
    max-width: 900px;
    margin: 2rem auto;
}

/* SLIDESHOW */
.slideshow-container {
    position: relative;
    max-width: 900px;
    margin: auto;
    aspect-ratio: 16/9;
    overflow: hidden;
}

.slide {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    opacity: 0;
    transition: opacity 0.6s ease;
    z-index: 0;
}

.slide.active {
    opacity: 1;
    z-index: 1;
}

.slide img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    border-radius: 14px;
}

/* SLIDESHOW CONTROLS */
.prev,
.next {
    position: absolute;
    top: 50%;
    transform: translateY(-50%);
    font-size: 2rem;
    padding: 0 12px;
    color: #fff;
    cursor: pointer;
    user-select: none;
    transition: color 0.2s ease;
    z-index: 2;
}

.next { right: 0; }
.prev:hover, .next:hover { color: #c94a4a; }

/* DOTS */
.dots {
    text-align: center;
    margin-top: 1rem;
    position: relative;
    z-index: 2;
}

.dot {
    display: inline-block;
    width: 10px;
    height: 10px;
    margin: 0 4px;
    background: #555;
    border-radius: 50%;
    cursor: pointer;
    transition: background 0.2s ease;
}

.dot.active { background: #c94a4a; }

/* FEATURED VIDEO */
.featured-video { text-align: center; }

.video-wrapper {
    position: relative;
    width: 100%;
    max-width: 420px;
    margin: 1.5rem auto;
    padding-top: 177.78%;
}

.video-wrapper iframe {
    position: absolute;
    inset: 0;
    width: 100%;
    height: 100%;
    border-radius: 14px;
    box-shadow: 0 12px 30px rgba(0,0,0,0.6);
}

/* BUTTONS */
.video-button,
.booking-button {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    gap: 0.5rem;
    padding: 0.75rem 1.6rem;
    background: linear-gradient(135deg, #b33a3a, #7a1f1f);
    color: #fff;
    border-radius: 30px;
    font-weight: 600;
    transition: transform 0.2s ease, box-shadow 0.2s ease;
}

.video-button:hover,
.booking-button:hover {
    transform: translateY(-2px);
    box-shadow: 0 6px 18px rgba(0,0,0,0.5);
}

/* UPCOMING SHOWS */
.shows-container {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(260px, 1fr));
    gap: 1.4rem;
}

.show-card {
    background: linear-gradient(180deg, #262322, #1b1a19);
    border-radius: 16px;
    padding: 1.4rem;
    box-shadow: 0 8px 30px rgba(0,0,0,0.35);
    transition: transform 0.25s ease, box-shadow 0.25s ease;
}

.show-card:hover {
    transform: translateY(-4px);
    box-shadow: 0 10px 28px rgba(0,0,0,0.45);
}

.show-date {
    font-weight: 700;
    margin-bottom: 0.5rem;
}

.show-venue {
    font-size: 0.95rem;
}

.show-venue i {
    margin-right: 0.4rem;
    color: #c94a4a;
}

.show-venue a { color: #ddd; }
.show-venue a:hover { color: #fff; }

/* BOOKING SECTION */
.booking-section { text-align: center; }
.booking-cta { margin-bottom: 1.2rem; }

/* FOOTER */
.footer {
    text-align: center;
    padding: 2.5rem 1rem;
    background: #000;
    font-size: 0.9rem;
}

.footer a { color: #bbb; }
.footer a:hover { color: #fff; }

/* PAYMENT BAR - HIGHLIGHTED SMALLER BUTTONS */
.payment-bar-bottom {
    position: fixed;
    bottom: 0;
    left: 0;
    right: 0;
    background: rgba(0,0,0,0.95);
    display: flex;
    justify-content: center;
    align-items: center;
    gap: 0.5rem;
    padding: 0.4rem;
    z-index: 9999;
    flex-wrap: nowrap; /* horizontal line */
}

.payment-bar-bottom .btn {
    font-size: 0.8rem;       /* smaller text */
    padding: 0.45rem 0.9rem; /* smaller buttons */
    display: inline-flex;
    align-items: center;
    justify-content: center;
    gap: 0.4rem;
    border-radius: 24px;
    background: linear-gradient(135deg, #b33a3a, #7a1f1f);
    color: #fff;
    font-weight: 600;
    box-shadow: 0 4px 12px rgba(0,0,0,0.35);
    transition: transform 0.2s ease, box-shadow 0.2s ease, background 0.2s ease;
}

.payment-bar-bottom .btn:hover {
    transform: translateY(-2px);
    box-shadow: 0 6px 18px rgba(0,0,0,0.5);
    background: linear-gradient(135deg, #c94a4a, #7a1f1f); /* slight highlight on hover */
}

/* MOBILE ADJUSTMENTS */
@media (max-width: 600px) {
    .hero { padding: 5rem 1rem 4rem; }
    .prev, .next { font-size: 1.8rem; }
}

@media (max-width: 500px) {
    .payment-bar-bottom {
        flex-wrap: wrap;
        padding: 0.5rem;
    }
    .payment-bar-bottom .btn {
        width: 45%;           /* two per row */
        justify-content: center;
        margin: 0.2rem 0;
    }
}