body {
    background: linear-gradient(180deg, #3d0c02, #000);
    color: #f8f3e7;
    font-family: 'Gill Sans', 'Gill Sans MT', Calibri, 'Trebuchet MS', sans-serif;
    padding-bottom: 60px;
}

h3,
h5 {
    font-weight: 700;
}

.navbar {
    background: #550000;
    border-bottom: 3px solid gold;
}

.navbar-brand {
    font-size: 1.4rem;
    color: gold !important;
    display: flex;
    align-items: center;
    gap: 10px;
}

.navbar-brand img {
    height: 36px;
}

.footer {
    margin-top: 40px;
    background: #220000;
    padding: 25px 0;
    border-top: 3px solid gold;
    color: #d8c7a1;
    font-size: 0.9rem;
    text-align: center;
}

.seat-image {
    border: 3px solid gold;
    border-radius: 8px;
    padding: 4px;
    background: #2d0000;
    max-width: 100%;
    height: auto;
    display: block;
    margin: 0 auto 15px;
}

.card {
    background: rgba(255, 255, 255, 0.07);
    border: 1px solid #a47c48;
    backdrop-filter: blur(6px);
    -webkit-backdrop-filter: blur(6px);
    box-shadow: 0 0 20px rgba(255, 215, 0, 0.25);
}

#seat-container {
    min-height: 200px;
    padding: 12px 0;
    display: flex;
    justify-content: center;
}

.seat-section {
    display: none;
    /* Hidden by default */
    animation: fadeIn 0.4s ease-out;
    width: 100%;
    overflow-x: auto;
}

.seat-section.active {
    display: block;
}

@keyframes fadeIn {
    from {
        opacity: 0;
        transform: translateY(10px);
    }

    to {
        opacity: 1;
        transform: translateY(0);
    }
}

.seat-row {
    width: max-content;
    margin: 6px auto;
    display: flex;
    align-items: center;
    gap: 4px;
}

.row-label {
    width: 26px;
    text-align: center;
    font-weight: 700;
    color: gold;
    flex-shrink: 0;
}

.seat-btn {
    min-width: 32px;
    padding: 0.2rem 0.35rem;
    font-size: 0.78rem;
    border-radius: 5px;
    font-weight: 600;
}

.btn-vvip {
    background: #16AA60 !important;
    border-color: #006c36ff !important;
    color: white !important;
}

.btn-vip {
    background: #9d0000 !important;
    border-color: #ff4d4d !important;
    color: white !important;
}

.btn-platinum {
    background: #004c8f !important;
    border-color: #64b5f6 !important;
    color: white !important;
}

.btn-gold {
    background: gold !important;
    border-color: #ffeb3b !important;
    color: black !important;
}

.btn-silver {
    background: #555 !important;
    border-color: #888 !important;
    color: white !important;
}

.btn-warning {
    background: #c99700 !important;
    color: black !important;
}

.seat-sold {
    background: #444 !important;
    color: #fff !important;
    border-color: #666 !important;
}

.seat-reserved {
    background: #7a0000 !important;
    color: #fff !important;
    border-color: #ff4d4d !important;
    opacity: 0.8;
}

.seat-gap {
    width: 25px;
    flex-shrink: 0;
}

.nav-controls {
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 8px;
    margin-top: 15px;
    padding: 10px;
    background: rgba(0, 0, 0, 0.3);
    border-radius: 15px;
    border: 1px solid #550000;
}

.nav-row {
    display: flex;
    gap: 15px;
    align-items: center;
}

.nav-btn {
    width: 45px;
    height: 45px;
    border-radius: 50%;
    border: 2px solid gold;
    background: #7a0000;
    color: gold;
    font-size: 1.2rem;
    display: flex;
    align-items: center;
    justify-content: center;
    cursor: pointer;
    transition: all 0.2s;
}

.nav-btn:active {
    background: gold;
    color: #7a0000;
    transform: scale(0.95);
}

.nav-btn:disabled {
    opacity: 0.2;
    border-color: #555;
    background: #333;
    cursor: default;
    transform: none;
}

.section-title {
    color: gold;
    text-transform: uppercase;
    letter-spacing: 2px;
    font-weight: bold;
    margin-bottom: 15px;
    text-align: center;
    border-bottom: 1px solid #555;
    padding-bottom: 5px;
}

.modal-content {
    background: #2b0000;
    color: #f8f3e7;
    border: 2px solid gold;
}

.modal-header {
    background: #550000 !important;
    border-bottom: 2px solid gold;
}

.form-control,
textarea {
    background: #1b0000 !important;
    color: #f8f3e7 !important;
    border: 1px solid #8d5d2c;
}

.form-control:focus {
    border-color: gold;
    box-shadow: 0 0 8px gold;
}

.btn-primary {
    background: #7a0000 !important;
    border-color: gold !important;
}

.btn-primary:hover {
    background: #a40000 !important;
}

.btn-success {
    background: #006b1b !important;
    border-color: gold !important;
}

.alert-info {
    background: rgba(255, 255, 255, 0.1);
    color: #f8f3e7;
    border: 1px solid gold;
}

#userPhone::placeholder {
    color: rgb(180, 180, 180);
}

#userPhone:-ms-input-placeholder {
    color: rgb(180, 180, 180);
}

#userPhone::-ms-input-placeholder {
    color: rgb(180, 180, 180);
}

#userPhone::-webkit-input-placeholder {
    color: rgb(180, 180, 180);
}

#userPhone:-moz-placeholder {
    color: rgb(180, 180, 180);
}

#userPhone::-moz-placeholder {
    color: rgb(180, 180, 180);
}
#userEmail::placeholder {
    color: rgb(180, 180, 180);
}

#userEmail:-ms-input-placeholder {
    color: rgb(180, 180, 180);
}

#userEmail::-ms-input-placeholder {
    color: rgb(180, 180, 180);
}

#userEmail::-webkit-input-placeholder {
    color: rgb(180, 180, 180);
}

#userEmail:-moz-placeholder {
    color: rgb(180, 180, 180);
}

#userEmail::-moz-placeholder {
    color: rgb(180, 180, 180);
}

#userName::placeholder {
    color: rgb(180, 180, 180);
}

#userName:-ms-input-placeholder {
    color: rgb(180, 180, 180);
}

#userName::-ms-input-placeholder {
    color: rgb(180, 180, 180);
}

#userName::-webkit-input-placeholder {
    color: rgb(180, 180, 180);
}

#userName:-moz-placeholder {
    color: rgb(180, 180, 180);
}

#userName::-moz-placeholder {
    color: rgb(180, 180, 180);
}

/* Custom CSS for the Success Modal */
#successModal .modal-content {
    /* Set a dark background for the modal content */
    background-color: #343a40; /* Bootstrap's dark gray (similar to bg-dark) */
}

#successModal .modal-body {
    /* Ensure all direct text inside the body defaults to white */
    color: white;
}

/* Override Bootstrap classes applied in the HTML snippet */
#successModal .modal-body p.text-muted {
    /* Target the specific paragraphs with text-muted class that we want to be white */
    color: white !important;
}

/* Ensure the success checkmark is clearly visible (e.g., green on dark) */
#successModal .modal-body .text-success {
    color: #28a745 !important;
}

/* =======================
   HERO SECTION
======================= */

.hero-section {
    position: relative;
    background: radial-gradient(
        circle at top,
        #7a0000 0%,
        #3d0c02 45%,
        #000 100%
    );
    padding: 80px 0 70px;
    overflow: hidden;
}

.hero-overlay {
    position: absolute;
    inset: 0;
    background: linear-gradient(
        180deg,
        rgba(0, 0, 0, 0.25),
        rgba(0, 0, 0, 0.75)
    );
    z-index: 1;
}

.hero-content {
    position: relative;
    z-index: 2;
}

.hero-title {
    font-size: clamp(2.8rem, 6vw, 4.2rem);
    font-weight: 900;
    letter-spacing: 4px;
    color: gold;
    text-shadow:
        0 0 15px rgba(255, 215, 0, 0.6),
        0 0 30px rgba(255, 140, 0, 0.35);
}

.hero-subtitle {
    font-weight: 600;
    letter-spacing: 2px;
    color: #f1d28a;
    text-transform: uppercase;
}

.hero-text {
    max-width: 520px;
    color: #f8f3e7;
    font-size: 1.05rem;
    line-height: 1.7;
}

.hero-poster {
    max-width: 100%;
    height: auto;
    border-radius: 12px;
    border: 3px solid gold;
    box-shadow:
        0 0 25px rgba(255, 215, 0, 0.35),
        0 0 60px rgba(0, 0, 0, 0.7);
}

/* Smooth transition into main content */
.hero-section + .container,
.hero-section + .table-responsive {
    margin-top: 40px;
}
