/* Full page dark background overrides for welcome page */
body.is-welcome-page,
body.is-welcome-page #eventmie_app,
body.is-welcome-page .bg-light,
body.is-welcome-page .bg-white,
body.is-welcome-page .home-main-how-it-work,
body.is-welcome-page .db-wrapper,
body.is-welcome-page footer,
body.is-welcome-page .footer {
    background-color: #231F20 !important;
    color: #ffffff !important;
}

/* Comedy Clubs Logo Bar CSS styling */
.comedy-clubs-section {
    display: flex;
    justify-content: center;
    background-color: #231F20;
    padding: 20px 20px;
    margin-block: 25px;
    width: 100%;
}

.comedy-clubs-wrapper {
    width: 100%;
    max-width: 1184px;
    box-sizing: border-box;
}

@media (min-width: 768px) {
    .comedy-clubs-wrapper {
        padding: 0;
    }
}

.comedy-clubs-card {
    position: relative;
    overflow: hidden;
    border-radius: 12px;
    min-height: 110px;
    display: flex;
    align-items: center;
    background: #060b19; /* Fallback background color */
}

@media (min-width: 992px) {
    .comedy-clubs-card {
        min-height: 148px;
    }
}

/* Background Images */
.cc-bg {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    object-fit: cover;
    z-index: 1;
    pointer-events: none;
}

.cc-bg-mobile {
    display: block;
}

.cc-bg-desktop {
    display: none;
}

@media (min-width: 768px) {
    .cc-bg-mobile {
        display: none;
    }
    .cc-bg-desktop {
        display: block;
    }
}

/* Logos & Marquee */
.cc-logos-content {
    position: relative;
    z-index: 10;
    width: 100%;
    padding: 16px 0;
}

@media (min-width: 992px) {
    .cc-logos-content {
        padding: 24px 0;
    }
}

.cc-marquee {
    overflow: hidden;
    width: 100%;
    display: flex;
}

.cc-marquee-inner {
    display: flex;
    width: max-content;
}

.cc-marquee-group {
    display: flex;
    align-items: center;
    gap: 40px; /* Mobile gap */
    padding-right: 40px;
    animation: cc-marquee-scroll 10s linear infinite;
}

@media (min-width: 992px) {
    .cc-marquee-group {
        gap: 80px; /* Desktop gap */
        padding-right: 80px;
    }
}

/* Pause animation on hover for nice UX */
.cc-marquee:hover .cc-marquee-group {
    animation-play-state: paused;
}

/* Logo Sizing */
.cc-link {
    display: flex;
    align-items: center;
    justify-content: center;
    transition: opacity 0.3s ease;
}

.cc-link:hover {
    opacity: 0.8;
}

.cc-logo {
    height: 40px; /* Mobile height */
    width: auto;
    max-width: 160px;
    object-fit: contain;
}

@media (min-width: 992px) {
    .cc-logo {
        height: 65px; /* Desktop height */
        max-width: 250px;
    }
}

/* Scroll Animation Keyframes */
@keyframes cc-marquee-scroll {
    0% {
        transform: translateX(0);
    }
    100% {
        transform: translateX(-100%);
    }
}

/* Premium Shows Section Slider CSS Styles */
.premium-shows-container {
    display: flex;
    justify-content: center;
    align-items: center;
    background-color: #231F20;
    width: 100%;
}

.premium-shows-wrapper {
    width: 100%;
    max-width: 1184px;
    box-sizing: border-box;
}

.premium-shows-header {
    display: flex;
    flex-direction: column;
    justify-content: space-between;
    align-items: center;
    gap: 20px;
    width: 100%;
    padding: 24px 24px 16px 24px;
    box-sizing: border-box;
}
@media (min-width: 768px) {
    .premium-shows-header {
        flex-direction: row;
        padding-inline: 0;
    }
}
@media (min-width: 992px) {
    .premium-shows-header {
        padding-top: 16px;
        padding-bottom: 24px;
        gap: 0;
    }
}

.premium-shows-title {
    font-size: 32px;
    font-weight: 500;
    color: #ffffff;
    margin: 0;
    font-family: "JM Poster", "JM Poster Solid", sans-serif;
}

.premium-shows-title span {
    color: #ED1C24;
}
@media (min-width: 992px) {
    .premium-shows-title {
        font-size: 40px;
    }
}

.premium-shows-view-all {
    display: flex;
    align-items: center;
    justify-content: center;
    border-radius: 4px; /* matching red-mic button style */
    font-weight: 500;
    transition: background-color 0.3s, opacity 0.3s;
    background-color: #ED1C24;
    color: #ffffff !important;
    font-family: "JM Poster", sans-serif;
    text-decoration: none;
    box-sizing: border-box;
}
.premium-shows-view-all:hover {
    background-color: #c1131b;
    opacity: 0.9;
    text-decoration: none;
}
.premium-shows-view-all.desktop {
    display: none;
    height: 44px;
    padding: 0 24px;
    font-size: 1.3rem;
}
@media (min-width: 992px) {
    .premium-shows-view-all.desktop {
        display: flex;
    }
}
.premium-shows-view-all.mobile {
    display: flex;
    height: 32px;
    padding: 0 16px;
    font-size: 1rem;
}
@media (min-width: 992px) {
    .premium-shows-view-all.mobile {
        display: none;
    }
}

.premium-shows-slider-relative {
    position: relative;
    width: 100%;
}

.slider-nav-btn {
    position: absolute;
    top: 50%;
    transform: translateY(-50%);
    z-index: 20;
    background: none;
    border: none;
    padding: 0;
    cursor: pointer;
    outline: none;
}
.slider-nav-btn svg {
    display: block;
    transition: opacity 0.3s;
}
.slider-nav-btn:hover svg {
    opacity: 0.85;
}
.slider-nav-btn.nav-left {
    left: 12px;
}
@media (min-width: 1240px) {
    .slider-nav-btn.nav-left {
        left: -24px;
    }
}
.slider-nav-btn.nav-right {
    right: 12px;
}
@media (min-width: 1240px) {
    .slider-nav-btn.nav-right {
        right: -24px;
    }
}

.slider-nav-btn.mobile-btn {
    display: block;
}
@media (min-width: 992px) {
    .slider-nav-btn.mobile-btn {
        display: none;
    }
}
.slider-nav-btn.desktop-btn {
    display: none;
}
@media (min-width: 992px) {
    .slider-nav-btn.desktop-btn {
        display: block;
    }
}

.premium-shows-slider {
    display: flex;
    gap: 12px;
    overflow-x: auto;
    overflow-y: hidden;
    scroll-snap-type: x mandatory;
    -webkit-overflow-scrolling: touch;
    padding-left: 24px;
    padding-right: 24px;
    padding-bottom: 24px;
    box-sizing: border-box;
    scroll-behavior: smooth;
}
@media (min-width: 992px) {
    .premium-shows-slider {
        padding-inline: 0;
    }
}

.premium-shows-slider.no-scrollbar::-webkit-scrollbar {
    display: none;
}
.premium-shows-slider.no-scrollbar {
    -ms-overflow-style: none;
    scrollbar-width: none;
}

.premium-shows-slider-item {
    flex-shrink: 0;
    scroll-snap-align: center;
}

.premium-card-link {
    text-decoration: none;
    display: block;
    border-radius: 12px;
    overflow: hidden;
    height: 100%;
}
.premium-card-link:hover {
    text-decoration: none;
}

/* Small Card Layout */
.premium-card-small {
    display: flex;
    flex-direction: column;
    height: 100%;
}
.premium-card-small-img-wrap {
    position: relative;
    width: 165px;
    height: 165px;
    overflow: hidden;
    border-top-left-radius: 12px;
    border-top-right-radius: 12px;
}
@media (min-width: 992px) {
    .premium-card-small-img-wrap {
        width: 189px;
        height: 150px;
    }
}
.premium-card-small-img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    display: block;
}

.premium-card-small-content {
    display: flex;
    flex-direction: column;
    justify-content: space-between;
    width: 165px;
    height: 120px;
    box-sizing: border-box;
    background-color: #121212;
    border: 1px solid #1f1f1f;
    border-top: none;
    padding: 12px;
    border-bottom-left-radius: 8px;
    border-bottom-right-radius: 8px;
    box-shadow: 0 4px 6px -1px rgba(0, 0, 0, 0.5), 0 2px 4px -1px rgba(0, 0, 0, 0.3);
    font-family: 'Inter', sans-serif;
}
@media (min-width: 992px) {
    .premium-card-small-content {
        width: 189px;
    }
}

.premium-card-title {
    font-size: 12px;
    font-weight: 700;
    color: #ffffff;
    margin: 0;
    overflow: hidden;
    text-overflow: ellipsis;
    white-space: nowrap;
}
@media (min-width: 992px) {
    .premium-card-title {
        font-size: 16px;
    }
}

.premium-card-city {
    font-size: 12px;
    font-weight: 700;
    color: #ED1C24;
    margin: 0;
}
@media (min-width: 992px) {
    .premium-card-city {
        font-size: 16px;
    }
}

.premium-card-date {
    font-size: 11px;
    font-weight: 400;
    color: #cccccc;
    white-space: nowrap;
}
@media (min-width: 992px) {
    .premium-card-date {
        font-size: 14px;
    }
}

.premium-card-price-row {
    display: flex;
    justify-content: space-between;
    align-items: center;
    font-size: 14px;
    font-weight: 800;
    color: #ffffff;
}

.premium-card-btn {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    border: none;
    outline: none;
    border-radius: 4px;
    font-weight: 600;
    background-color: #ED1C24;
    color: #ffffff;
    cursor: pointer;
    font-size: 14px;
    height: 28px;
    padding: 0 12px;
    transition: background-color 0.2s;
}
.premium-card-btn:hover {
    background-color: #c1131b;
}
@media (min-width: 992px) {
    .premium-card-btn {
        font-size: 15px;
        padding: 0 16px;
    }
}

/* Wide Card Layout */
.premium-card-wide {
    position: relative;
    width: 280px;
    height: 285px;
    border-radius: 12px;
    overflow: hidden;
    box-sizing: border-box;
}
@media (min-width: 992px) {
    .premium-card-wide {
        width: 389px;
        height: 270px;
    }
}

.premium-card-wide-img {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    object-fit: cover;
    z-index: 1;
}

.premium-card-wide-overlay {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: linear-gradient(to top, rgba(0, 0, 0, 0.95) 0%, rgba(0, 0, 0, 0.6) 70%, transparent 100%);
    z-index: 10;
    display: flex;
    flex-direction: column;
    justify-content: flex-end;
    padding: 16px;
    box-sizing: border-box;
}

.premium-card-wide-info {
    position: relative;
    display: flex;
    flex-direction: column;
    gap: 4px;
    font-family: 'Inter', sans-serif;
    color: #ffffff;
    width: 100%;
}

.premium-card-wide-title {
    font-size: 14px;
    font-weight: 700;
    line-height: 1.2;
    margin: 0;
    color: #ffffff;
    padding-right: 70px; /* Leave space for button on desktop/mobile */
}
@media (min-width: 992px) {
    .premium-card-wide-title {
        font-size: 20px;
        padding-right: 90px;
    }
}

.premium-card-wide-city {
    font-size: 12px;
    font-weight: 700;
    color: #ED1C24;
    margin: 0;
}
@media (min-width: 992px) {
    .premium-card-wide-city {
        font-size: 16px;
    }
}

.premium-card-wide-date {
    font-size: 12px;
    font-weight: 400;
    color: #e2e8f0;
}
@media (min-width: 992px) {
    .premium-card-wide-date {
        font-size: 14px;
    }
}

.premium-card-wide-price {
    font-size: 14px;
    font-weight: 700;
    color: #ffffff;
}

.premium-card-wide-btn {
    position: absolute;
    right: 0;
    bottom: 0;
    border: none;
    outline: none;
    border-radius: 4px;
    font-weight: 600;
    background-color: #ffffff;
    color: #ED1C24;
    cursor: pointer;
    font-size: 14px;
    height: 32px;
    padding: 0 12px;
    transition: opacity 0.2s;
}
.premium-card-wide-btn:hover {
    opacity: 0.9;
}
@media (min-width: 992px) {
    .premium-card-wide-btn {
        padding: 0 16px;
    }
}

/* Custom slider item centering and style toggles */
.premium-shows-slider-item {
    transition: all 0.4s ease-in-out;
}
.premium-shows-slider-item:not(.is-featured) .premium-card-wide {
    display: none !important;
}
.premium-shows-slider-item:not(.is-featured) .premium-card-small {
    display: flex !important;
}
.premium-shows-slider-item.is-featured .premium-card-wide {
    display: block !important;
}
.premium-shows-slider-item.is-featured .premium-card-small {
    display: none !important;
}

/* Upcoming Shows Section CSS */
.upcoming-shows-section {
    background-color: #231F20;
    color: #ffffff;
    padding: 80px 0;
    font-family: 'Inter', sans-serif;
}

.upcoming-shows-container {
    max-width: 1184px;
    margin: 0 auto;
    padding: 0 15px;
    box-sizing: border-box;
}

.upcoming-shows-header {
    margin-bottom: 45px;
}

.upcoming-shows-title {
    font-family: "JM Poster", "JM Poster Solid", sans-serif;
    font-size: 2rem;
    font-weight: 600;
    color: #ffffff;
    margin: 0 0 15px 0;
    text-transform: capitalize;
}

.upcoming-shows-title span {
    color: #ED1C24;
}

/* .upcoming-shows-subtitle {
    font-size: 1.1rem;
    font-weight: 400;
    color: #A3A3A3;
    margin: 0;
    line-height: 1.6;
} */

.upcoming-shows-list {
    display: flex;
    flex-direction: column;
    width: 100%;
}

.upcoming-show-row {
    display: flex;
    flex-direction: row;
    justify-content: space-between;
    align-items: center;
    padding: 10px;
    border-bottom: 1px solid #ED1C24;
    box-sizing: border-box;
}

.upcoming-show-col {
    box-sizing: border-box;
}

.upcoming-show-col h3 {
    font-family: "JM Poster", sans-serif;
    margin: 0;
    padding: 0;
    font-size: 1.75rem;
    font-weight: 600;
    color: #ffffff;
    line-height: 1;
}

.red {
    color: #ED1C24 !important;
}

.city-col {
    width: 30%;
}

.date-col {
    width: 20%;
}

.venue-col {
    width: 35%;
}

.action-col {
    width: 15%;
    display: flex;
    justify-content: flex-end;
}

/* Custom Buttons */
.upcoming-btn {
    font-family: "JM Poster", sans-serif;
    font-size: 1.4em;
    font-weight: 600;
    height: 40px;
    padding: 12px;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    border-radius: 4px;
    text-decoration: none !important;
    transition: background-color 0.2s, color 0.2s, opacity 0.2s;
    box-sizing: border-box;
    white-space: nowrap;
}

.buy-btn {
    background-color: #ED1C24;
    color: #ffffff !important;
}

.buy-btn:hover {
    background-color: #c1131b;
    color: #ffffff !important;
}

.sold-out-btn {
    background-color: #ffffff;
    color: #ED1C24 !important;
}

.sold-out-btn:hover {
    background-color: rgba(237, 28, 35, 0.589);
    color: #ED1C24 !important;
}

/* Responsiveness */
@media (max-width: 991px) {
    .upcoming-show-col h3 {
        font-size: 18px;
    }

    .upcoming-btn {
        font-size: 18px;
        height: 42px;
        padding: 0 20px;
    }
}

@media (max-width: 767px) {
    .upcoming-shows-section {
        padding: 50px 0;
    }

    .upcoming-shows-title {
        font-size: 32px;
    }

    /* .upcoming-shows-subtitle {
        font-size: 1rem;
    } */

    .upcoming-show-row {
        flex-direction: column;
        align-items: center;
        text-align: center;
        padding: 10px 15px;
        gap: 12px;
    }

    .upcoming-show-col {
        width: 100% !important;
    }

    .city-col h3 {
        font-size: 20px;
        font-weight: 700;
    }

    .date-col h3 {
        font-size: 16px;
        color: #CCCCCC;
        font-weight: 600;
    }

    .venue-col h3 {
        font-size: 16px;
        color: #A3A3A3;
        font-weight: 500;
    }

    .action-col {
        justify-content: center;
        margin-top: 5px;
    }

    .upcoming-btn {
        width: 100%;
        max-width: 250px;
    }
}

/* About RED MIC Section Styles */
.about-rm-section {
    background-color: #231F20;
    color: #ffffff;
    padding: 80px 0;
    font-family: 'Inter', sans-serif;
    width: 100%;
}

.about-rm-container {
    max-width: 1184px;
    margin: 0 auto;
    padding: 0 24px;
    box-sizing: border-box;
}

.about-rm-row {
    display: flex;
    flex-direction: row;
    align-items: center;
    justify-content: space-between;
    gap: 48px;
}

.about-rm-text-col {
    flex: 1;
    max-width: 50%;
}

.about-rm-img-col {
    flex: 1;
    max-width: 50%;
    display: flex;
    justify-content: center;
}

.about-rm-title {
    font-family: "JM Poster", "JM Poster Solid", sans-serif;
    font-size: 2rem;
    font-weight: 600;
    color: #ffffff;
    margin: 0 0 20px 0;
    line-height: 1.2;
}

.about-rm-title span.red,
.about-rm-description span.red {
    color: #ED1C24 !important;
}

.about-rm-description p {
    font-family: 'Inter', sans-serif;
    font-size: 1.1em;
    font-weight: 400;
    line-height: 1.6;
    color: #FFFFFF;
    margin: 0 0 18px 0;
    line-height: 1.5;
}

.about-rm-description p strong {
    font-weight: 700;
    color: #ffffff;
}

.about-rm-img {
    width: 100%;
    height: auto;
    object-fit: cover;
    display: block;
}

/* Responsiveness for About RED MIC section */
@media (max-width: 991px) {
    .about-rm-section {
        padding: 60px 0;
    }

    .about-rm-title {
        font-size: 32px;
        margin-bottom: 20px;
    }

    .about-rm-description p {
        font-size: 16px;
        font-weight: 400;
        line-height: 1.5;
    }

    .about-rm-row {
        gap: 32px;
    }
}

@media (max-width: 767px) {
    .about-rm-section {
        padding: 50px 0;
    }

    .about-rm-row {
        flex-direction: column;
        align-items: stretch;
        gap: 32px;
    }

    .about-rm-text-col,
    .about-rm-img-col {
        max-width: 100%;
    }

    .about-rm-title {
        text-align: left;
    }

    .about-rm-img {
        max-width: 100%;
    }
}

/* Join the RED LIST Section Styles */
.redlist-section {
    background-color: #ED1C24;
    color: #ffffff;
    padding: 20px 0;
    font-family: 'Inter', sans-serif;
    width: 100%;
}

.redlist-container {
    max-width: 1184px;
    margin: 0 auto;
    padding: 0 24px;
    box-sizing: border-box;
}

.redlist-row {
    display: flex;
    flex-direction: row;
    justify-content: space-between;
    gap: 48px;
}

.redlist-text-col {
    flex: 1;
    max-width: 50%;
}

.redlist-form-col {
    flex: 1;
    max-width: 50%;
    width: 100%;
}

.redlist-title {
    font-family: "JM Poster", "JM Poster Solid", sans-serif;
    font-size: 2rem;
    font-weight: 600;
    color: #ffffff;
    margin: 0 0 20px 0;
    line-height: 1;
    text-transform: uppercase;
}

.redlist-description p {
    font-family: 'Inter', sans-serif;
    font-size: 1.1em;
    font-weight: 400;
    line-height: 1.5;
    color: #ffffff;
    margin: 0;
}

/* Custom RED LIST Form Styles */
.redlist-form-wrapper {
    max-width: 400px;
    padding-block: 20px;
    width: 100%;
    margin: 0 0 0 60px !important;
}

@media (min-width: 768px) {
    .redlist-form-wrapper {
        margin-left: auto;
    }
}

.redlist-form {
    width: 100%;
    margin: 0;
}

.redlist-field-row {
    margin: 0 0 10px 0;
    width: 100%;
}

.redlist-field-row input.form-control {
    background-color: #ffffff !important;
    color: #333333 !important;
    border-color: #cccccc !important;
    border-radius: 4px !important;
    border-style: solid !important;
    border-width: 1px !important;
    font-family: 'Open Sans', Arial, Helvetica, sans-serif !important;
    font-size: 14px !important;
    height: auto !important;
    line-height: 21px !important;
    padding: 10px 10px !important;
    width: 100% !important;
    box-sizing: border-box !important;
    outline: none !important;
}

.redlist-field-row input.form-control:focus {
    box-shadow: inset 0 0 0 1px #000000 !important;
    outline: none !important;
}

.redlist-field-row input.form-control::placeholder {
    color: #333333 !important;
    opacity: 1 !important;
}

.redlist-submit-row {
    margin: 0;
    width: 100%;
}

.redlist-btn-submit {
    background-color: #231f20 !important;
    border: none !important;
    border-radius: 4px !important;
    box-shadow: none !important;
    color: #ffffff !important;
    cursor: pointer;
    font-family: 'Inter', sans-serif !important;
    font-size: 18px !important;
    font-weight: 700 !important;
    line-height: 21px !important;
    height: auto !important;
    padding: 10px !important;
    width: 100% !important;
    box-sizing: border-box !important;
    transition: background-color 0.2s ease !important;
}

.redlist-btn-submit:hover {
    background-color: #000000 !important;
}

.redlist-success-msg p {
    color: #ffffff !important;
    font-family: 'Inter', sans-serif !important;
    font-size: 18px !important;
    font-weight: 400 !important;
    line-height: 24px !important;
    margin: 0 !important;
    text-align: left !important;
}

/* Responsiveness for Join the RED LIST section */
@media (max-width: 991px) {
    .redlist-section {
        padding: 60px 0;
    }

    .redlist-row {
        gap: 32px;
    }
}

@media (max-width: 767px) {
    .redlist-section {
        padding: 50px 0;
    }

    .redlist-row {
        flex-direction: column;
        align-items: stretch;
        gap: 32px;
    }

    .redlist-text-col,
    .redlist-form-col {
        max-width: 100%;
    }

    .redlist-title {
        text-align: left;
    }

    .redlist-form-wrapper {
        margin: 0 auto !important;
    }
}

/* =============================================
   Contact RED MIC Section
   ============================================= */

.contact-rm-section {
    background-color: #231F20;
    width: 100%;
    padding: 0;
    overflow: hidden;
}

.contact-rm-container {
    width: 100%;
    max-width: 1140px;
    margin: 0 auto;
    padding: 0;
    box-sizing: border-box;
}

.contact-rm-row {
    display: flex;
    flex-direction: row-reverse; /* Form on right, image on left on desktop */
    align-items: stretch;
    gap: 0;
    min-height: 500px;
}

/* Left: Image Column (Second in HTML order) */
.contact-rm-img-col {
    flex: 0 0 45%;
    width: 45%;
    max-width: 45%;
    display: flex;
    align-items: flex-start; /* Align image from the top */
    justify-content: center;
    overflow: hidden;
    position: relative;
    box-sizing: border-box;
    padding: 40px 10px 10px 10px; /* Top padding matches form column */
}

.contact-rm-img {
    width: 100%;
    height: auto; /* Natural height, no cropping */
    display: block;
}

/* Right: Form Column (First in HTML order) */
.contact-rm-form-col {
    flex: 0 0 55%;
    width: 55%;
    max-width: 55%;
    display: flex;
    flex-direction: column;
    justify-content: flex-start; /* Align content from the top */
    padding: 40px 40px 60px 60px;
    box-sizing: border-box;
}

/* Title — JM Poster, same as original site heading font */
.contact-rm-title {
    font-family: "JM Poster", sans-serif;
    font-size: 2rem;
    font-weight: 600;
    color: #ffffff;
    letter-spacing: 0.5px;
    line-height: 1.1;
    margin: 0 0 15px 0;
    text-transform: none;
}

.contact-rm-red {
    color: #ED1C24;
}

/* Description */
.contact-rm-desc {
    font-family: 'Inter', sans-serif;
    font-size: 1.1em;
    font-weight: 400;
    color: #ffffff;
    line-height: 1.5;
    margin: 0 0 30px 0;
    max-width: 500px;
}

/* Form */
.contact-rm-form {
    width: 100%;
    max-width: 500px;
    display: flex;
    flex-direction: column;
}

.contact-rm-form label {
    display: inline-block;
    font-family: 'Inter', sans-serif;
    font-size: 16px;
    font-weight: 400;
    color: #ffffff;
    line-height: 1.5;
    margin-top: 7px;
}

.contact-rm-form label:first-of-type {
    margin-top: 0;
}

.contact-rm-form input[type=text],
.contact-rm-form input[type=email],
.contact-rm-form textarea {
    width: 100%;
    background-color: #ffffff !important;
    color: #333333 !important;
    border: 1px solid #666666 !important;
    border-radius: 3px !important;
    font-family: 'Inter', sans-serif !important;
    font-size: 16px !important;
    font-weight: 400 !important;
    line-height: 1.5 !important;
    padding: 8px 16px !important;
    box-sizing: border-box !important;
    outline: none !important;
    box-shadow: none !important;
    transition: border-color 0.3s ease, all 0.3s !important;
    display: block !important;
}

.contact-rm-form input[type=text],
.contact-rm-form input[type=email] {
    height: 42px !important;
}

.contact-rm-form textarea {
    height: 60px !important;
    resize: vertical !important;
}

.contact-rm-form input[type=text]:focus,
.contact-rm-form input[type=email]:focus,
.contact-rm-form textarea:focus {
    box-shadow: inset 0 0 0 1px #000000 !important;
    outline: none !important;
}

/* Submit Button */
.contact-rm-submit-row {
    margin-top: 5px;
    text-align: left;
}

.contact-rm-form button[type=submit] {
    display: inline-block;
    background-color: transparent !important;
    color: #c36 !important;
    border: 1px solid #c36 !important;
    border-radius: 3px !important;
    font-family: 'Inter', sans-serif !important;
    font-size: 16px !important;
    font-weight: 400 !important;
    line-height: 1.5 !important;
    padding: 8px 16px !important;
    cursor: pointer !important;
    letter-spacing: 0 !important;
    transition: background-color 0.3s ease, color 0.3s ease !important;
    box-shadow: none !important;
    text-decoration: none !important;
    white-space: nowrap !important;
    width: auto !important;
}

.contact-rm-form button[type=submit]:hover {
    background-color: #c36 !important;
    color: #ffffff !important;
}

/* Success Message */
.contact-rm-success p {
    font-family: 'Inter', sans-serif;
    font-size: 15px;
    color: #ffffff;
    margin: 0;
    line-height: 1.6;
}

/* Responsive — tablet */
@media (max-width: 1024px) {
    .contact-rm-container {
        padding: 0;
    }

    .contact-rm-form-col {
        padding: 50px 30px 50px 40px;
    }
}

@media (max-width: 991px) {
    .contact-rm-row {
        min-height: 440px;
    }

    .contact-rm-img-col {
        flex: 0 0 45%;
        width: 45%;
        max-width: 45%;
        padding: 10px;
    }

    .contact-rm-form-col {
        flex: 0 0 55%;
        width: 55%;
        max-width: 55%;
        padding: 40px 20px 40px 30px;
    }

    .contact-rm-title {
        font-size: 32px;
    }
}

/* Responsive — mobile */
@media (max-width: 767px) {
    .contact-rm-row {
        flex-direction: column; /* Form on top, image at bottom */
        gap: 0;
        min-height: auto;
    }

    .contact-rm-form-col {
        flex: 0 0 100%;
        width: 100%;
        max-width: 100%;
        padding: 50px 20px;
    }

    .contact-rm-img-col {
        flex: 0 0 auto;
        width: 100%;
        max-width: 100%;
        height: auto;
        padding: 10px;
    }

    .contact-rm-title {
        font-size: 30px;
    }

    .contact-rm-form,
    .contact-rm-desc {
        max-width: 100%;
    }
}

/* =============================================
   Footer Border
   ============================================= */

.footer {
    border-top: 1px solid #ED1C24 !important;
}

/* =============================================
   Scroll offset for fixed navbar
   Prevents sections from hiding behind navbar on anchor click
   ============================================= */

#upcomingshows,
#about-rm,
#redlist-rm,
#contact-rm {
    scroll-margin-top: 70px;
}
