/* Enhanced styling for better front page appearance */
body {
    margin: 0;
    padding: 0;
    font-family: 'Arial', sans-serif;
    /* Match contact page background for consistent UX across the site */
    background: linear-gradient(135deg, #1a1a1a 0%, #2d2d2d 100%);
    min-height: 100vh;
    color: #fff;
}

.hero-section {
    background-image: linear-gradient(rgba(0,0,0,0.5), rgba(0,0,0,0.5)), url('../img/hero-banner-new.PNG?v=2');
    background-position: center;
    background-size: cover;
    height: 60vh;
    display: flex;
    justify-content: center;
    align-items: center;
    position: relative;
    margin-top: 0px;
    padding-top: 20px;
}

.hero-content {
    text-align: center;
    color: white;
    z-index: 2;
}

.hero-title {
    font-size: 4rem;
    font-weight: bold;
    margin-bottom: 1rem;
    text-shadow: 2px 2px 4px rgba(0,0,0,0.8);
    animation: glow 2s ease-in-out infinite alternate;
}

@keyframes glow {
    from { text-shadow: 2px 2px 4px rgba(0,0,0,0.8), 0 0 10px #FFD700; }
    to { text-shadow: 2px 2px 4px rgba(0,0,0,0.8), 0 0 20px #FFD700, 0 0 30px #FFA500; }
}

.hero-subtitle {
    font-size: 1.5rem;
    margin-bottom: 2rem;
    text-shadow: 1px 1px 2px rgba(0,0,0,0.8);
}

.hero-cta {
    background: linear-gradient(45deg, #FFD700, #FFA500);
    color: black;
    padding: 15px 30px;
    font-size: 1.2rem;
    border: none;
    border-radius: 25px;
    cursor: pointer;
    text-decoration: none;
    display: inline-block;
    font-weight: bold;
    transition: all 0.5s ease, opacity 0.5s ease, visibility 0.5s ease;
    box-shadow: 0 4px 15px rgba(255,215,0,0.3);
    animation: heroPulse 2s infinite;
}

.hero-cta:hover {
    transform: translateY(-2px);
    box-shadow: 0 6px 20px rgba(255,215,0,0.4);
}

@keyframes heroPulse {
    0% { box-shadow: 0 4px 15px rgba(255,215,0,0.3); }
    50% { box-shadow: 0 6px 25px rgba(255,215,0,0.6); }
    100% { box-shadow: 0 4px 15px rgba(255,215,0,0.3); }
}

.carousel {
    background: linear-gradient(135deg, #1a1a1a, #333);
    padding: 0 0 0 0;
    text-align: center;
    margin: 0;
}

.mySlides h2 {
    color: #FFD700;
    font-weight: bold;
    text-shadow: 2px 2px 4px rgba(0,0,0,0.8);
    margin: 0px auto;
    text-align: center;
    max-width: 90%;
    padding: 0;
    font-size: clamp(1rem, 4vw, 2rem);
    white-space: nowrap;
    overflow: hidden;
}

.im-stp-a {
    display: flex;
    flex-direction: row;
    align-items: center;
    justify-content: center;
    margin: 20px 0;
}

.im-stp-a img {
    box-shadow: 0 8px 25px rgba(255,215,0,0.3);
    border-radius: 10px;
    max-width: 100%;
    height: 80vh; /* Set height to 80vh */
    width: auto; /* Maintain aspect ratio */
    object-fit: contain; /* Ensure image fits properly */
}

/* Hero CTA Logo Styling */
.hero-cta img {
    height: 1.2em;
    vertical-align: middle;
}

.hero-cta img.logo-left {
    margin-right: 8px;
}

.hero-cta img.logo-right {
    margin-left: 8px;
}

/* Promotional Banner */
.promo-banner {
    background: linear-gradient(45deg, #FF6B47, #FF4500);
    color: white;
    text-align: center;
    padding: 15px 20px;
    font-weight: bold;
    font-size: clamp(1.1rem, 3vw, 1.6rem);
    animation: promoPulse 3s infinite;
    box-shadow: 0 2px 10px rgba(255,75,0,0.3);
}

.promo-content {
    max-width: 1000px;
    margin: 0 auto;
}

@keyframes promoPulse {
    0% { box-shadow: 0 2px 10px rgba(255,75,0,0.3); }
    50% { box-shadow: 0 4px 20px rgba(255,75,0,0.6); }
    100% { box-shadow: 0 2px 10px rgba(255,75,0,0.3); }
}

/* Weekend Shows Section */
.weekend-shows-container {
    text-align: center;
    margin: 30px auto;
    max-width: 1000px;
    width: 100%;
    padding: 0 30px;
}

.weekend-shows-card {
    background: linear-gradient(145deg, #2d2d2d, #1a1a1a);
    border-radius: 15px;
    padding: 30px;
    box-shadow: 0 10px 30px rgba(255,215,0,0.3);
    border: 2px solid #FFD700;
    position: relative;
    overflow: hidden;
}

.weekend-shows-overlay {
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: linear-gradient(45deg, transparent 30%, rgba(255,215,0,0.1) 50%, transparent 70%);
    pointer-events: none;
}

.weekend-shows-content {
    position: relative;
    z-index: 2;
}

.weekend-shows-title {
    color: #FFD700;
    font-size: 2.2rem;
    font-weight: bold;
    margin-bottom: 15px;
    text-shadow: 2px 2px 4px rgba(0,0,0,0.7);
}

.weekend-schedule {
    color: #ffffff;
    font-size: 1.4rem;
    margin-bottom: 10px;
    text-shadow: 1px 1px 2px rgba(0,0,0,0.5);
}

.weekend-slots {
    color: #FFFF00;
    font-size: 1.2rem;
    margin-bottom: 25px;
    font-weight: bold;
}

.pricing-divider {
    border-top: 2px solid #FFD700;
    margin: 20px 0;
    opacity: 0.7;
}

.pricing-title {
    color: #FFD700;
    font-size: 1.8rem;
    font-weight: bold;
    margin-bottom: 15px;
    text-shadow: 2px 2px 4px rgba(0,0,0,0.7);
}

.pricing-container {
    display: flex;
    justify-content: space-between;
    gap: 20px;
    flex-wrap: wrap;
}

.pricing-card {
    background: linear-gradient(135deg, #FFD700, #FFFF00);
    color: #1a1a1a;
    padding: 20px;
    border-radius: 10px;
    font-weight: bold;
    box-shadow: 0 5px 15px rgba(255,215,0,0.4);
    text-align: center;
    flex: 1;
    min-width: 250px;
}

.service-name {
    font-size: 1.5rem;
}

.guest-count {
    margin: 10px 0;
    font-size: 1.1rem;
}

.price-value {
    font-size: 2.2rem;
    font-weight: bold;
}

.static-text1 {
    background: transparent;
    padding: 0 30px 30px 30px;
    margin: 0 auto !important;
    border-radius: 15px;
}

.experience-banner {
    background: linear-gradient(145deg, #FFFF00, #FFD700);
    color: #1a1a1a;
    padding: 25px 40px;
    margin: 0 auto 30px auto;
    border-radius: 0;
    text-align: center;
    font-weight: bold;
    font-size: 1.3rem;
    text-shadow: 1px 1px 2px rgba(255,255,255,0.3);
    position: relative;
    width: 100%;
    max-width: 100%;
    overflow: hidden;
}

.wrestler-animation {
    position: absolute;
    top: 50%;
    transform: translateY(-50%);
    font-size: 1.5rem;
    z-index: 1;
    font-weight: bold;
    font-family: monospace;
    text-shadow: 2px 2px 4px rgba(0,0,0,0.3);
    line-height: 1;
}

.wrestler-blue {
    left: -4rem;
    color: #0066FF;
    animation: wrestlerWalkRight1 12s ease-in-out infinite;
}

.wrestler-purple {
    right: -4rem;
    color: #8A2BE2;
    animation: wrestlerWalkLeft1 12s ease-in-out infinite;
}

@keyframes wrestlerWalkRight1 {
    0% { 
        left: -4rem; 
        transform: translateY(-50%);
        opacity: 1;
    }
    20% { 
        left: calc(30% - 2rem); 
        transform: translateY(-50%);
        opacity: 1;
    }
    40% { 
        left: calc(50% - 1rem); 
        transform: translateY(-50%);
        opacity: 1;
    }
    45% { 
        left: calc(50% - 0.5rem); 
        transform: translateY(-50%) rotate(-10deg) scale(1.1);
        opacity: 1;
    }
    50% { 
        left: calc(50%); 
        transform: translateY(-80%) rotate(180deg) scale(1.3);
        opacity: 1;
    }
    55% { 
        left: calc(50% + 0.5rem); 
        transform: translateY(-20%) rotate(270deg) scale(0.9);
        opacity: 1;
    }
    60% { 
        left: calc(50% + 1rem); 
        transform: translateY(-50%) rotate(360deg) scale(1.0);
        opacity: 1;
    }
    62% { 
        left: calc(50% + 0.5rem); 
        transform: translateY(-40%) rotate(45deg) scale(1.2);
        opacity: 1;
    }
    65% { 
        left: calc(50%); 
        transform: translateY(-60%) rotate(90deg) scale(1.4);
        opacity: 1;
    }
    68% { 
        left: calc(50% - 0.5rem); 
        transform: translateY(-30%) rotate(180deg) scale(1.1);
        opacity: 1;
    }
    70% { 
        left: calc(50%); 
        transform: translateY(-50%) rotate(0deg) scale(1.0);
        opacity: 1;
    }
    72% { 
        left: calc(50%); 
        transform: translateY(-70%) rotate(0deg) scale(1.5);
        opacity: 1;
    }
    75% { 
        left: calc(50%); 
        transform: translateY(-70%) rotate(0deg) scale(1.5);
        opacity: 1;
    }
    78% { 
        left: calc(50%); 
        transform: translateY(-50%) rotate(0deg) scale(1.2);
        opacity: 1;
    }
    80% { 
        left: calc(50% + 2rem); 
        transform: translateY(-50%);
        opacity: 0.5;
    }
    85% { 
        left: calc(50% + 4rem); 
        transform: translateY(-50%);
        opacity: 0;
    }
    90% { 
        left: -4rem; 
        transform: translateY(-50%);
        opacity: 0;
    }
    95% { 
        left: -4rem; 
        transform: translateY(-50%);
        opacity: 1;
    }
    100% { 
        left: -4rem; 
        transform: translateY(-50%);
        opacity: 1;
    }
}

@keyframes wrestlerWalkLeft1 {
    0% { 
        right: -4rem; 
        transform: translateY(-50%) scaleX(-1);
        opacity: 1;
    }
    20% { 
        right: calc(30% - 2rem); 
        transform: translateY(-50%) scaleX(-1);
        opacity: 1;
    }
    40% { 
        right: calc(50% - 1rem); 
        transform: translateY(-50%) scaleX(-1);
        opacity: 1;
    }
    45% { 
        right: calc(50% - 0.5rem); 
        transform: translateY(-50%) scaleX(-1) rotate(-10deg) scale(1.3);
        opacity: 1;
    }
    50% { 
        right: calc(50%); 
        transform: translateY(-30%) scaleX(-1) rotate(0deg) scale(1.5);
        opacity: 1;
    }
    55% { 
        right: calc(50% + 0.5rem); 
        transform: translateY(-50%) scaleX(-1) rotate(10deg) scale(1.3);
        opacity: 1;
    }
    60% { 
        right: calc(50% + 1rem); 
        transform: translateY(-50%) scaleX(-1) rotate(0deg) scale(1.0);
        opacity: 1;
    }
    62% { 
        right: calc(50% + 0.5rem); 
        transform: translateY(-60%) scaleX(-1) rotate(-45deg) scale(0.8);
        opacity: 1;
    }
    65% { 
        right: calc(50%); 
        transform: translateY(-80%) scaleX(-1) rotate(-180deg) scale(1.2);
        opacity: 1;
    }
    68% { 
        right: calc(50% - 0.5rem); 
        transform: translateY(-20%) scaleX(-1) rotate(-270deg) scale(0.9);
        opacity: 1;
    }
    70% { 
        right: calc(50% + 1rem); 
        transform: translateY(-30%) scaleX(-1) rotate(90deg) scale(0.7);
        opacity: 1;
    }
    72% { 
        right: calc(50% + 1rem); 
        transform: translateY(-30%) scaleX(-1) rotate(90deg) scale(0.7);
        opacity: 0.9;
    }
    75% { 
        right: calc(50% + 1rem); 
        transform: translateY(-30%) scaleX(-1) rotate(90deg) scale(0.7);
        opacity: 0.9;
    }
    78% { 
        right: calc(50% + 1rem); 
        transform: translateY(-30%) scaleX(-1) rotate(90deg) scale(0.7);
        opacity: 0.8;
    }
    82% { 
        right: calc(50% + 1rem); 
        transform: translateY(-30%) scaleX(-1) rotate(90deg) scale(0.7);
        opacity: 0.8;
    }
    85% { 
        right: calc(50% + 1rem); 
        transform: translateY(-30%) scaleX(-1) rotate(90deg) scale(0.7);
        opacity: 0.7;
    }
    88% { 
        right: calc(50% + 1rem); 
        transform: translateY(-30%) scaleX(-1) rotate(90deg) scale(0.7);
        opacity: 0.6;
    }
    92% { 
        right: calc(50% + 1rem); 
        transform: translateY(-30%) scaleX(-1) rotate(90deg) scale(0.7);
        opacity: 0.5;
    }
    95% { 
        right: calc(50% + 2rem); 
        transform: translateY(-50%) scaleX(-1);
        opacity: 0.3;
    }
    96% { 
        right: -4rem; 
        transform: translateY(-50%) scaleX(-1);
        opacity: 0;
    }
    98% { 
        right: -4rem; 
        transform: translateY(-50%) scaleX(-1);
        opacity: 1;
    }
    100% { 
        right: -4rem; 
        transform: translateY(-50%) scaleX(-1);
        opacity: 1;
    }
}

/* Alternative wrestler scenarios */
@keyframes wrestlerWalkRight2 {
    0% { left: -4rem; transform: translateY(-50%); opacity: 1; }
    20% { left: calc(30% - 2rem); transform: translateY(-50%); opacity: 1; }
    40% { left: calc(50% - 1rem); transform: translateY(-50%); opacity: 1; }
    45% { left: calc(50% - 0.5rem); transform: translateY(-60%) rotate(-45deg) scale(0.8); opacity: 1; }
    50% { left: calc(50%); transform: translateY(-80%) rotate(-180deg) scale(1.2); opacity: 1; }
    55% { left: calc(50% + 0.5rem); transform: translateY(-20%) rotate(-270deg) scale(0.9); opacity: 1; }
    60% { left: calc(50% + 1rem); transform: translateY(-30%) rotate(-360deg) scale(0.7); opacity: 1; }
    70% { left: calc(50% + 1rem); transform: translateY(-30%) rotate(90deg) scale(0.7); opacity: 0.8; }
    85% { left: calc(50% + 1rem); transform: translateY(-30%) rotate(90deg) scale(0.7); opacity: 0.5; }
    90% { left: calc(50% + 4rem); transform: translateY(-50%); opacity: 0; }
    95% { left: -4rem; transform: translateY(-50%); opacity: 0; }
    100% { left: -4rem; transform: translateY(-50%); opacity: 1; }
}

@keyframes wrestlerWalkLeft2 {
    0% { right: -4rem; transform: translateY(-50%) scaleX(-1); opacity: 1; }
    20% { right: calc(30% - 2rem); transform: translateY(-50%) scaleX(-1); opacity: 1; }
    40% { right: calc(50% - 1rem); transform: translateY(-50%) scaleX(-1); opacity: 1; }
    45% { right: calc(50% - 0.5rem); transform: translateY(-50%) scaleX(-1) rotate(-10deg) scale(1.3); opacity: 1; }
    50% { right: calc(50%); transform: translateY(-30%) scaleX(-1) rotate(0deg) scale(1.5); opacity: 1; }
    55% { right: calc(50% + 0.5rem); transform: translateY(-50%) scaleX(-1) rotate(10deg) scale(1.3); opacity: 1; }
    60% { right: calc(50% + 1rem); transform: translateY(-40%) scaleX(-1) scale(1.2); opacity: 1; }
    70% { right: calc(50%); transform: translateY(-70%) scaleX(-1) scale(1.8); opacity: 1; }
    75% { right: calc(50%); transform: translateY(-70%) scaleX(-1) scale(1.8); opacity: 1; }
    80% { right: calc(50% + 2rem); transform: translateY(-50%) scaleX(-1); opacity: 0.5; }
    90% { right: -4rem; transform: translateY(-50%) scaleX(-1); opacity: 0; }
    95% { right: -4rem; transform: translateY(-50%) scaleX(-1); opacity: 1; }
    100% { right: -4rem; transform: translateY(-50%) scaleX(-1); opacity: 1; }
}

@keyframes wrestlerWalkRight3 {
    0% { left: -4rem; transform: translateY(-50%); opacity: 1; }
    20% { left: calc(30% - 2rem); transform: translateY(-50%); opacity: 1; }
    40% { left: calc(50% - 1rem); transform: translateY(-50%); opacity: 1; }
    50% { left: calc(50%); transform: translateY(-80%) rotate(180deg) scale(1.2); opacity: 1; }
    55% { left: calc(50% - 1rem); transform: translateY(-20%) rotate(90deg) scale(0.8); opacity: 1; }
    65% { left: calc(50% - 1rem); transform: translateY(-20%) rotate(90deg) scale(0.8); opacity: 0.7; }
    75% { left: calc(50% - 1rem); transform: translateY(-20%) rotate(90deg) scale(0.8); opacity: 0.5; }
    85% { left: calc(50% + 4rem); transform: translateY(-50%); opacity: 0; }
    90% { left: -4rem; transform: translateY(-50%); opacity: 0; }
    95% { left: -4rem; transform: translateY(-50%); opacity: 1; }
    100% { left: -4rem; transform: translateY(-50%); opacity: 1; }
}

@keyframes wrestlerWalkLeft3 {
    0% { right: -4rem; transform: translateY(-50%) scaleX(-1); opacity: 1; }
    20% { right: calc(30% - 2rem); transform: translateY(-50%) scaleX(-1); opacity: 1; }
    40% { right: calc(50% - 1rem); transform: translateY(-50%) scaleX(-1); opacity: 1; }
    50% { right: calc(50%); transform: translateY(-80%) scaleX(-1) rotate(-180deg) scale(1.2); opacity: 1; }
    55% { right: calc(50% - 1rem); transform: translateY(-20%) scaleX(-1) rotate(90deg) scale(0.8); opacity: 1; }
    65% { right: calc(50% - 1rem); transform: translateY(-20%) scaleX(-1) rotate(90deg) scale(0.8); opacity: 0.7; }
    75% { right: calc(50% - 1rem); transform: translateY(-20%) scaleX(-1) rotate(90deg) scale(0.8); opacity: 0.5; }
    85% { right: calc(50% + 4rem); transform: translateY(-50%) scaleX(-1); opacity: 0; }
    90% { right: -4rem; transform: translateY(-50%) scaleX(-1); opacity: 0; }
    95% { right: -4rem; transform: translateY(-50%) scaleX(-1); opacity: 1; }
    100% { right: -4rem; transform: translateY(-50%) scaleX(-1); opacity: 1; }
}

.experience-banner::before {
    content: '';
    position: absolute;
    top: -3px;
    left: -3px;
    right: -3px;
    bottom: -3px;
    background: linear-gradient(145deg, #FFFF33, #FFDD00);
    border-radius: 23px;
    z-index: -1;
    opacity: 0.7;
}

.crowd-member {
    position: absolute;
    color: #333;
    font-size: 0.8rem;
    font-family: monospace;
    line-height: 1;
    opacity: 0;
    animation: crowdCheer 12s infinite;
    top: 20%;
}

.crowd-1 { left: 10%; animation-delay: 0.2s; }
.crowd-2 { left: 15%; animation-delay: 0.4s; }
.crowd-3 { left: 20%; animation-delay: 0.1s; }
.crowd-4 { right: 10%; animation-delay: 0.3s; }
.crowd-5 { right: 15%; animation-delay: 0.5s; }
.crowd-6 { right: 20%; animation-delay: 0.2s; }

@keyframes crowdCheer {
    0% { opacity: 0; transform: scale(0.8); }
    70% { opacity: 0; transform: scale(0.8); }
    72% { opacity: 1; transform: scale(1.0) translateY(-5px); }
    74% { opacity: 1; transform: scale(1.2) translateY(-10px); }
    76% { opacity: 1; transform: scale(1.0) translateY(-5px); }
    78% { opacity: 1; transform: scale(1.2) translateY(-10px); }
    80% { opacity: 1; transform: scale(1.0) translateY(-5px); }
    82% { opacity: 1; transform: scale(1.2) translateY(-10px); }
    84% { opacity: 1; transform: scale(1.0) translateY(-5px); }
    86% { opacity: 1; transform: scale(0.9); }
    90% { opacity: 0.5; transform: scale(0.8); }
    100% { opacity: 0; transform: scale(0.8); }
}

@keyframes bannerGlow {
    0% { 
        box-shadow: 
            0 8px 16px rgba(0,0,0,0.3),
            0 4px 8px rgba(0,0,0,0.2),
            inset 0 2px 4px rgba(255,255,255,0.4),
            inset 0 -2px 4px rgba(0,0,0,0.1),
            0 0 20px rgba(255,255,0,0.3);
    }
    100% { 
        box-shadow: 
            0 8px 16px rgba(0,0,0,0.3),
            0 4px 8px rgba(0,0,0,0.2),
            inset 0 2px 4px rgba(255,255,255,0.4),
            inset 0 -2px 4px rgba(0,0,0,0.1),
            0 0 30px rgba(255,255,0,0.6);
    }
}

.venue-section {
    text-align: center;
    margin: 30px auto;
    max-width: 1000px;
    width: 100%;
    padding: 0 30px;
}

.venue-header {
    background: linear-gradient(135deg, #8A2BE2, #0066FF, #FF6B00);
    color: white;
    padding: 15px 25px;
    border-radius: 10px;
    margin-bottom: 20px;
    box-shadow: 0 4px 8px rgba(0,0,0,0.2);
    text-shadow: 2px 2px 4px rgba(0,0,0,0.5);
}

.venue-name {
    font-size: 1.4rem;
    font-weight: bold;
    margin-bottom: 5px;
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 10px;
}

.venue-address {
    font-size: 1.1rem;
    margin: 0;
}

.map-container {
    border-radius: 10px;
    overflow: hidden;
    box-shadow: 0 8px 16px rgba(0,0,0,0.3);
    margin: 20px 0;
    background: #f0f0f0;
}

.map-container iframe {
    width: 100%;
    height: 350px;
    border: none;
    filter: contrast(1.1) saturate(1.2);
}

.map-link {
    display: inline-block;
    background: linear-gradient(135deg, #0066FF, #004499);
    color: white;
    padding: 12px 20px;
    text-decoration: none;
    border-radius: 25px;
    margin-top: 10px;
    font-weight: bold;
    transition: all 0.3s ease;
    box-shadow: 0 4px 8px rgba(0,0,0,0.2);
}

.map-link:hover {
    background: linear-gradient(135deg, #0080FF, #0066CC);
    transform: translateY(-2px);
    box-shadow: 0 6px 12px rgba(0,0,0,0.3);
}

.event-highlight {
    background: linear-gradient(135deg, #1a1a1a, #2d2d2d);
    color: white;
    padding: 20px;
    margin: 20px 0;
    border-radius: 10px;
}

.weekend-shows-title {
    color: #FFD700;
    font-size: 2.2rem;
    font-weight: bold;
    margin-bottom: 15px;
    text-shadow: 2px 2px 4px rgba(0,0,0,0.7);
}

.weekend-schedule {
    color: #ffffff;
    font-size: 1.4rem;
    margin-bottom: 10px;
    text-shadow: 1px 1px 2px rgba(0,0,0,0.5);
}

.weekend-slots {
    color: #FFFF00;
    font-size: 1.2rem;
    margin-bottom: 25px;
    font-weight: bold;
}

.pricing-title {
    color: #FFD700;
    font-size: 1.8rem;
    font-weight: bold;
    margin-bottom: 15px;
    text-shadow: 2px 2px 4px rgba(0,0,0,0.7);
}

.service-name {
    font-size: 1.5rem;
}

.guest-count {
    margin: 10px 0;
    font-size: 1.1rem;
}

.price-value {
    font-size: 2.2rem;
    font-weight: bold;
}

/* Mobile responsive design */
@media (max-width: 768px) {
    .static-text1 {
        padding: 0 !important;
        margin: 0 !important;
        width: 100% !important;
    }
    
    .carousel {
        padding: 0;
        margin: 0;
    }
    
    .mySlides h2 { 
        line-height: 1.4;
        text-align: center;
        margin: 0px auto;
        max-width: 98%;
        padding: 0;
        white-space: nowrap;
        overflow: hidden;
    }
    
    .experience-banner {
        font-size: 1rem;
        padding: 20px 15px;
        margin: 20px 10px !important;
        border-radius: 10px;
        width: calc(100% - 20px) !important;
        max-width: calc(100% - 20px) !important;
        line-height: 1.5;
    }
    
    .venue-section {
        padding: 15px !important;
        margin: 20px 10px !important;
        width: calc(100% - 20px) !important;
        max-width: calc(100% - 20px) !important;
        border-radius: 10px;
    }
    
    .venue-header {
        margin: 0;
        border-radius: 10px;
        padding: 15px;
    }
    
    .venue-name {
        font-size: 1.3rem;
        margin-bottom: 10px;
    }
    
    .venue-address {
        font-size: 1rem;
        line-height: 1.4;
    }
    
    .map-container {
        margin: 15px 0;
    }
    
    .map-container iframe {
        height: 250px;
        border-radius: 10px;
    }
    
    .hero-title { font-size: 2.5rem; }
    .hero-subtitle { font-size: 1.2rem; }
    .hero-cta { 
        padding: 12px 24px; 
        font-size: 1rem; 
    }
    
    .weekend-shows-title { font-size: 1.8rem !important; }
    .weekend-schedule { font-size: 1.1rem !important; }
    .weekend-slots { font-size: 1rem !important; }
    
    .image {
        margin: 20px 10px !important;
        padding: 0 10px !important;
        max-width: calc(100% - 20px) !important;
    }
    
    .im-stp-a img {
        width: 100%;
        height: auto;
        max-height: none;
    }
    .pricing-title { font-size: 1.4rem !important; }
    .service-name { font-size: 1.2rem !important; }
    .guest-count { font-size: 0.95rem !important; }
    .price-value { font-size: 1.6rem !important; }
}

@media (max-width: 480px) {
    .hero-title { font-size: 1.8rem; }
    .hero-subtitle { font-size: 0.9rem; }
    .hero-cta { 
        padding: 10px 20px; 
        font-size: 0.9rem; 
    }
    
    .mySlides h2 { 
        line-height: 1.3;
        text-align: center;
        margin: 0px auto;
        max-width: 99%;
        padding: 0;
        white-space: nowrap;
        overflow: hidden;
    }
    
    .carousel {
        padding: 0;
        margin: 0;
    }
    
    .experience-banner {
        font-size: 0.9rem;
        padding: 15px 10px;
        margin: 15px 5px !important;
        width: calc(100% - 10px) !important;
        max-width: calc(100% - 10px) !important;
    }
    
    .venue-section {
        padding: 10px !important;
        margin: 15px 5px !important;
        width: calc(100% - 10px) !important;
        max-width: calc(100% - 10px) !important;
    }
    
    .venue-header {
        padding: 10px;
    }
    
    .venue-name {
        font-size: 1.1rem;
    }
    
    .venue-address {
        font-size: 0.9rem;
    }
    
    .map-container iframe {
        height: 200px;
    }
    
    .weekend-shows-title { font-size: 1.5rem !important; }
    .weekend-schedule { font-size: 1rem !important; }
    .weekend-slots { font-size: 0.9rem !important; }
    .pricing-title { font-size: 1.2rem !important; }
    .service-name { font-size: 1.1rem !important; }
    .guest-count { font-size: 0.9rem !important; }
    .price-value { font-size: 1.4rem !important; }
    
    .image {
        margin: 15px 5px !important;
        padding: 0 5px !important;
        max-width: calc(100% - 10px) !important;
    }
    
    .im-stp-a img {
        width: 100%;
        height: auto;
        max-height: none;
    }
}

/* Weekend Shows Section - additional styles */
.weekend-shows-title {
    color: #FFD700;
    font-size: 2.2rem;
    font-weight: bold;
    margin-bottom: 15px;
    text-shadow: 2px 2px 4px rgba(0,0,0,0.7);
}

.weekend-schedule {
    color: #ffffff;
    font-size: 1.4rem;
    margin-bottom: 10px;
    text-shadow: 1px 1px 2px rgba(0,0,0,0.5);
}

.weekend-slots {
    color: #FFFF00;
    font-size: 1.2rem;
    margin-bottom: 25px;
    font-weight: bold;
}

.weekend-divider {
    border-top: 2px solid #FFD700;
    margin: 20px 0;
    opacity: 0.7;
}

.weekend-shows-content {
    position: relative;
    z-index: 2;
}

/* Pricing Title Style */
.pricing-title {
    color: #FFD700;
    font-size: 1.8rem;
    font-weight: bold;
    margin-bottom: 15px;
    text-shadow: 2px 2px 4px rgba(0,0,0,0.7);
}

/* Promo Images */
.promo-image {
    width: 100% !important;
    height: auto !important;
    max-width: 100% !important;
    border-radius: 10px;
    box-shadow: 0 5px 15px rgba(0,0,0,0.3);
    object-fit: contain;
}

/* Image Containers - Base Desktop Styling */
.image {
    text-align: center;
    margin: 30px auto;
    max-width: 1000px;
    width: 100%;
    padding: 0 30px;
}

/* Testimonials Section */
.testimonials-section {
    background: black;
    margin: 30px auto;
    padding: 20px 0;
    padding-bottom: 30px;
    border-radius: 15px;
    max-width: 1000px;
    width: calc(100% - 60px);
}

.testimonials-header {
    text-align: center;
    margin-bottom: 30px;
}

.testimonials-title {
    color: #FFD700;
    font-size: clamp(2rem, 4vw, 3rem);
    font-weight: bold;
    margin-bottom: 10px;
    text-shadow: 2px 2px 4px rgba(0,0,0,0.7);
}

.testimonials-subtitle {
    color: #ffffff;
    font-size: 1.2rem;
    margin: 0;
}

.testimonials-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: 20px;
    padding: 0 30px;
    max-width: 1000px;
    margin: 0 auto;
}

.testimonial-card {
    background: linear-gradient(145deg, #FFD700, #FFFF00);
    color: #1a1a1a;
    padding: 25px;
    border-radius: 10px;
    box-shadow: 0 5px 15px rgba(255,215,0,0.4);
    position: relative;
}

.testimonial-stars {
    font-size: 2rem;
    margin-bottom: 10px;
}

.testimonial-text {
    font-size: 1.1rem;
    font-style: italic;
    margin-bottom: 15px;
    line-height: 1.5;
}

.testimonial-author {
    font-weight: bold;
    text-align: right;
    font-size: 0.9rem;
}

.testimonials-cta {
    text-align: center;
    margin-top: 30px;
}

.testimonials-cta-button {
    background: linear-gradient(45deg, #FF6B00, #FF8C00);
    color: white;
    padding: 15px 30px;
    text-decoration: none;
    border-radius: 25px;
    font-weight: bold;
    font-size: 1.1rem;
    display: inline-block;
    transition: all 0.3s ease;
    box-shadow: 0 4px 15px rgba(255,107,0,0.3);
}

.testimonials-cta-button:hover {
    transform: translateY(-2px);
    box-shadow: 0 6px 20px rgba(255,107,0,0.4);
}

/* Pricing Image Section */
.pricing-image-container {
    text-align: center;
    margin: 30px auto;
    max-width: 1000px;
    width: 100%;
    padding: 0 30px;
    display: flex;
    flex-direction: column;
    align-items: center;
}

.pricing-image {
    width: 100%;
    max-width: 900px;
    height: auto;
    border-radius: 10px;
    background: black;
    padding: 20px;
    box-shadow: 0 5px 15px rgba(0,0,0,0.3);
    margin-bottom: 30px;
    display: block;
}

/* Footer Spacer */
.footer-spacer {
    height: 2vh;
}

/* Footer Copyright */
.footer-copyright {
    font-size: x-small;
}