/* Container Layout */

.tour-page-wrapper {
    max-width: 1000px;
    margin: 0 auto;
    padding: 2rem 1.5rem;
}

/* Typography Redesign */

.tour-header {
    margin-bottom: 2rem;
}

.page-title {
    font-size: 2.25rem;
    font-weight: 700;
    color: #ffffff;
    margin-bottom: 0.5rem;
    letter-spacing: -0.025em;
}

.page-subtitle {
    color: #eab308;
    /* Amber/Yellow warning alert color */
    font-size: 1.1rem;
    max-width: 700px;
    line-height: 1.5;
    font-weight: 500;
}

/* Card & Video Player Framing */

.video-card {
    background-color: #131316;
    /* Dark background matching your sidebar active state */
    border: 1px solid #232329;
    border-radius: 16px;
    overflow: hidden;
    box-shadow: 0 10px 25px -5px rgba(0, 0, 0, 0.4), 0 8px 10px -6px rgba(0, 0, 0, 0.4);
    opacity: 0.7;
    /* Visual indicator that it is under construction */
}

/* Fluid 16:9 Aspect Ratio Container */

.video-ratio {
    position: relative;
    width: 100%;
    padding-top: 56.25%;
    /* 16:9 Aspect Ratio */
    background: #000000;
}

.video-ratio video {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    border: none;
    outline: none;
}

/* Meta Details Section */

.video-details {
    padding: 1.5rem;
}

.badge-row {
    display: flex;
    gap: 0.5rem;
    margin-bottom: 0.75rem;
}

.badge {
    padding: 0.35rem 0.75rem;
    font-size: 0.8rem;
    font-weight: 600;
    border-radius: 50px;
    display: inline-flex;
    align-items: center;
    gap: 0.35rem;
}

.badge-primary {
    background-color: rgba(234, 179, 8, 0.15);
    /* Yellow badge tint */
    color: #eab308;
}

.badge-secondary {
    background-color: rgba(255, 255, 255, 0.08);
    color: #94a3b8;
}

.video-details h3 {
    font-size: 1.35rem;
    color: #ffffff;
    font-weight: 600;
    margin-bottom: 0.5rem;
}

.video-details p {
    color: #94a3b8;
    font-size: 0.95rem;
    line-height: 1.6;
    margin: 0;
}

.btn-theme {
    background: linear-gradient(90deg, rgba(88, 198, 183, 1) 0%, rgba(88, 105, 161, 1) 100%);
    border-radius: 15px;
    padding: 40px;
    margin-bottom: 30px;
    color: white;
}

.top-bar .dropdown ul li a:hover,
.top-bar .dropdown ul li a:focus {
    background: linear-gradient(90deg, rgba(88, 198, 183, 1) 0%, rgba(88, 105, 161, 1) 100%);
    color: #fff;
}
