/* ============================
   GLOBAL BACKGROUND + TEXT
   ============================ */

body {
    background: #0a0a0f; /* deep futuristic black-blue */
    color: #e5e7eb;
    font-family: "Segoe UI", Arial, sans-serif;
}

/* ============================
   FUTURISTIC BBC-NEON MENU
   ============================ */

.main-nav {
    background: #0d1117;
    padding: 15px 0;
    border-bottom: 2px solid #00aaff;
    box-shadow: 0 0 12px rgba(0, 170, 255, 0.2);
}

.main-nav ul {
    list-style: none;
    display: flex;
    justify-content: center;
    gap: 40px;
    margin: 0;
    padding: 0;
}

.main-nav a {
    color: #e5e7eb;
    text-decoration: none;
    font-size: 18px;
    font-weight: 500;
    letter-spacing: 1px;
    transition: color 0.2s ease, text-shadow 0.2s ease;
}

.main-nav a:hover {
    color: #00aaff;
    text-shadow: 0 0 8px rgba(0, 170, 255, 0.6);
}

.main-nav a.active {
    color: #00aaff;
    text-shadow: 0 0 10px rgba(0, 170, 255, 0.8);
    font-weight: 600;
}

/* ============================
   FUTURISTIC BBC-NEON HEADER
   ============================ */

header {
    background: #0d1117;
    padding: 30px 0 20px 0;
    text-align: center;
    border-bottom: 2px solid #00aaff;
    box-shadow: 0 0 18px rgba(0, 170, 255, 0.25);
}

.station-title {
    font-size: 42px;
    font-weight: 700;
    letter-spacing: 2px;
    margin: 0;
    color: #e5e7eb;
    text-shadow:
        0 0 10px rgba(0, 170, 255, 0.4),
        0 0 20px rgba(0, 170, 255, 0.25);
}

/* ============================
   FUTURISTIC BBC-NEON FOOTER
   ============================ */

.footer {
    background: #0d1117;
    padding: 25px 0;
    text-align: center;
    margin-top: 60px;
    border-top: 2px solid #00aaff;
    box-shadow: 0 0 18px rgba(0, 170, 255, 0.25);
}

.footer p {
    margin: 0;
    color: #e5e7eb;
    font-size: 16px;
    letter-spacing: 1px;
    text-shadow: 0 0 6px rgba(0, 170, 255, 0.3);
}

/* Optional: neon colour accents for Rotation / UK / Radio */
.title-rotation { color: #00aaff; }
.title-uk       { color: #66d0ff; }
.title-radio    { color: #e5e7eb; }

/* ============================
   FUTURISTIC BBC-NEON SCHEDULE
   ============================ */

.schedule-wrapper {
    max-width: 1100px;
    margin: 40px auto;
    padding: 20px;
}

.schedule-day {
    background: linear-gradient(145deg, #0f1624, #111827);
    padding: 28px;
    margin-bottom: 40px;
    border-radius: 16px;
    border-left: 6px solid #00aaff;
    box-shadow:
        0 0 20px rgba(0, 170, 255, 0.15),
        inset 0 0 12px rgba(0, 170, 255, 0.05);
    transition: transform 0.25s ease, box-shadow 0.25s ease;
    backdrop-filter: blur(6px);
}

.schedule-day:hover {
    transform: translateY(-6px);
    box-shadow:
        0 0 28px rgba(0, 170, 255, 0.25),
        inset 0 0 18px rgba(0, 170, 255, 0.08);
}

.schedule-day h2 {
    color: #00aaff;
    font-size: 30px;
    margin-bottom: 22px;
    letter-spacing: 1.5px;
    text-shadow:
        0 0 10px rgba(0, 170, 255, 0.5),
        0 0 20px rgba(0, 170, 255, 0.3);
}

.schedule-item {
    display: flex;
    justify-content: space-between;
    padding: 14px 0;
    border-bottom: 1px solid #1f2937;
    transition: color 0.2s ease;
}

.schedule-item:hover {
    color: #66d0ff;
}

.schedule-time {
    font-weight: bold;
    color: #66d0ff;
    text-shadow: 0 0 8px rgba(102, 208, 255, 0.4);
}

.schedule-name {
    color: #e5e7eb;
    font-weight: 500;
}

.now-playing-widget {
    padding: 20px;
    background: #0a0a0a;
    border-radius: 12px;
    margin: 20px auto;
    max-width: 900px;
}

.np-container {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 25px;
}

.np-block {
    background: #111;
    padding: 15px;
    border-radius: 10px;
    text-align: center;
    border: 1px solid #222;
}

.np-block h3 {
    margin-bottom: 10px;
    font-size: 1.2rem;
    color: #0ff; /* neon accent */
}

.np-art {
    width: 120px;
    height: 120px;
    object-fit: cover;
    border-radius: 8px;
    margin: 0 auto 10px;
    display: block;
    box-shadow: 0 0 10px rgba(0,255,255,0.3);
}

.np-title {
    font-size: 1rem;
    font-weight: 600;
    margin-bottom: 4px;
}

.np-time {
    font-size: 0.9rem;
    opacity: 0.7;
}

/* Force player artwork size */
.rukr-artwork {
    width: 50px !important;
    height: 50px !important;
    object-fit: cover;
    border-radius: 6px;
}

/* ===============================
   FIX PLAYER BAR HEIGHT + LAYOUT
   =============================== */

.rukr-player-bar {
    display: flex;
    align-items: center;
    gap: 12px;
    padding: 8px 12px;
    height: 70px; /* reduce overall height */
}

.rukr-player-main {
    flex: 1;
    display: flex;
    flex-direction: column;
    justify-content: center;
}

.rukr-player-controls {
    display: flex;
    align-items: center;
    gap: 10px;
}

.rukr-play-btn {
    font-size: 20px;
    padding: 6px 10px;
}

#rukr-volume-slider {
    width: 80px;
}

#rukr-now-title {
    font-size: 0.75rem;
}

#rukr-upnext {
    font-size: 0.8rem;
    opacity: 0.7;
}

/* ===============================
   SHRINK NOW PLAYING / UP NEXT BOXES
   =============================== */

.now-playing-widget {
    padding: 12px;
    max-width: 650px;
    margin: 15px auto;
}

.np-container {
    gap: 12px;
}

.np-block {
    padding: 10px;
    border-radius: 8px;
}

.np-block h3 {
    font-size: 1rem;
    margin-bottom: 6px;
}

.np-art {
    width: 80px;
    height: 80px;
    margin-bottom: 6px;
}

.np-title {
    font-size: 0.85rem;
}

.np-time {
    font-size: 0.75rem;
}

/* Remove gaps between slider images */
.slider img {
    margin: 0 !important;
    padding: 0 !important;
    display: block;
}

/* Reduce slider width */
.slider {
    max-width: 600px;
    margin: 0 auto;
}

/* Reduce spacing between slides (for libraries like Swiper/Slick) */
.swiper-slide,
.slick-slide,
.owl-item {
    margin-right: 5px !important; /* reduce gap */
}

/* ===============================
   FIX SLIDER GAPS + WIDTH
   =============================== */

.slider {
    max-width: 850px;      /* shrink overall width */
    margin: 0 auto;        /* center it */
    overflow: hidden;      /* hide overflow */
}

.slides {
    display: flex;
    gap: 8px;              /* small spacing between images */
    animation: scroll 40s linear infinite;
}

.slide {
    flex: 0 0 auto;        /* prevent stretching */
    margin: 0;             /* remove default spacing */
    padding: 0;
    text-align: center;
}

.slide img {
    width: 130px;          /* smaller images */
    height: 130px;
    object-fit: cover;
    border-radius: 8px;
    display: block;
    margin: 0 auto;
}

.caption {
    font-size: 0.8rem;
    margin-top: 4px;
    color: #e5e7eb;
}

.slider {
    border: 2px solid #00aaff;
    border-radius: 12px;
    padding: 10px;
    box-shadow: 0 0 18px rgba(0, 170, 255, 0.25);
    background: #0d1117;
}

.slide img:hover {
    transform: scale(1.05);
    box-shadow: 0 0 12px rgba(0, 170, 255, 0.5);
    transition: 0.2s ease;
}

#player-container {
    position: fixed;
    bottom: 0;
    left: 0;
    width: 100%;
    z-index: 9999;
}

#content {
    padding-bottom: 120px;
}

#player-container {
    position: fixed !important;
    bottom: 0 !important;
    left: 0 !important;
    width: 100% !important;
    z-index: 99999 !important;
    background: #0d1117; /* ensures player has a solid background */
}

/* ============================
   HOMEPAGE: NOW PLAYING WIDGET
   ============================ */

.now-playing-widget {
    background: linear-gradient(135deg, #0f172a, #1e293b);
    padding: 25px 0;
    border-bottom: 1px solid rgba(255,255,255,0.08);
    margin-bottom: 30px;
}

.np-container {
    max-width: 1100px;
    margin: 0 auto;
    padding: 0 20px;
    display: flex;
    justify-content: space-between;
    gap: 25px;
}

.np-block {
    flex: 1;
    background: #020617;
    padding: 18px 22px;
    border-radius: 12px;
    border: 1px solid rgba(255,255,255,0.08);
    box-shadow: 0 10px 25px rgba(0,0,0,0.35);
}

.np-block h3 {
    margin: 0 0 6px;
    font-size: 0.85rem;
    text-transform: uppercase;
    letter-spacing: 0.15em;
    color: #f97316;
}

.np-art {
    width: 120px;
    height: 120px;
    object-fit: cover;
    border-radius: 8px;
    display: block;
    margin: 0 auto 10px;
}

.np-title {
    margin: 0;
    font-size: 1.25rem;
    font-weight: 600;
    color: #f1f5f9;
}

@media (max-width: 768px) {
    .np-container {
        flex-direction: column;
    }
}

/* ============================
   HOMEPAGE: SLIDER
   ============================ */

.slider {
    width: 100%;
    overflow: hidden;
    border: 4px solid #3b82f6;
    border-radius: 10px;
}

.slides {
    display: flex;
    animation: slide 100s infinite linear;
}

.slide {
    margin: 0;
    padding: 0;
    width: 100%;
    flex: 0 0 auto;
    position: relative;
}

.slide img {
    width: 35%;
    height: 450px;
    object-fit: cover;
    display: block;
}

.caption {
    position: absolute;
    bottom: 10px;
    left: 15%;
    transform: translateX(-50%);
    max-width: 70%;
    padding: 6px 12px;
    background: rgba(0,0,0,0.6);
    color: #fff;
    font-size: 14px;
    border-radius: 6px;
}

@keyframes slide {
    0% { transform: translateX(0); }
    100% { transform: translateX(-2400%); }
}

/* ============================
   HOMEPAGE: WELCOME BOX
   ============================ */

.welcome-box {
    background: #1f2937;
    border-left: 4px solid #3b82f6;
    padding: 20px;
    margin: 20px auto;
    width: 80%;
    color: white;
    border-radius: 8px;
    box-shadow: 0 0 10px rgba(59,130,246,0.3);
}

.welcome-box h2 {
    margin-top: 0;
    color: #60a5fa;
}

/* ============================
   HOMEPAGE: THREE INFO BOXES
   ============================ */

.three-box-section {
    display: flex;
    justify-content: space-between;
    gap: 20px;
    margin-top: 40px;
}

.info-box {
    flex: 1;
    background: #0f172a;
    border: 3px solid #3b82f6;
    border-radius: 10px;
    padding: 15px;
    text-align: center;
    color: #fff;
    display: flex;
    flex-direction: column;
}

.info-box img {
    width: 100%;
    height: 180px;
    object-fit: cover;
    border-radius: 8px;
    margin-bottom: 10px;
}

.info-box p {
    font-size: 14px;
    line-height: 1.4;
    flex-grow: 1;
}

/* ============================
   FADE SLIDER (BBC STYLE)
   ============================ */

.fade-slider {
    position: relative;
    width: 100%;
    max-width: 900px;
    height: 350px;
    margin: 30px auto;
    overflow: hidden;
    border-radius: 12px;
    border: 3px solid #3b82f6;
    box-shadow: 0 0 18px rgba(0, 170, 255, 0.25);
}

.fade-slide {
    position: absolute;
    inset: 0;
    width: 100%;
    height: 100%;
    object-fit: cover;
    opacity: 0;
    transition: opacity 1.5s ease-in-out;
}

.fade-slide.active {
    opacity: 1;
}

.fade-slide {
    position: absolute;
    inset: 0;
    opacity: 0;
    transition: opacity 1.5s ease-in-out;
}

.fade-slide img {
    width: 100%;
    height: 100%;
    object-fit: cover;
}

.fade-slide.active {
    opacity: 1;
}

/* CAPTION */
.fade-caption {
    position: absolute;
    bottom: 20px;
    left: 50%;
    transform: translateX(-50%);
    background: rgba(0,0,0,0.55);
    padding: 10px 18px;
    border-radius: 8px;
    color: #fff;
    font-size: 1rem;
    letter-spacing: 0.5px;
    text-align: center;
    max-width: 80%;
    box-shadow: 0 0 10px rgba(0,0,0,0.4);
}

/* ============================
   APPLE‑STYLE CAROUSEL
   ============================ */

.carousel {
    display: flex;
    gap: 20px;
    overflow-x: auto;
    scroll-snap-type: x mandatory;
    padding: 20px 10px;
    margin: 20px auto;
    width: 100%;
}

.carousel img {
    width: 220px;
    height: 220px;
    object-fit: cover;
    border-radius: 12px;
    scroll-snap-align: center;
    transition: transform 0.3s ease;
    border: 3px solid #3b82f6;
    box-shadow: 0 0 12px rgba(0, 170, 255, 0.25);
}

.carousel img:hover {
    transform: scale(1.08);
}

/* ============================
   SCHEDULE PAGE STYLING
   ============================ */

.schedule-page {
    background: #111;
    padding: 20px;
    border-radius: 8px;
    color: #fff;
    margin-top: 20px;
}

.schedule-day {
    background: #1a1a1a;
    padding: 15px;
    border-radius: 6px;
    margin-bottom: 20px;
    border-left: 4px solid #0af;
}

.schedule-day h3 {
    margin: 0 0 10px 0;
    font-size: 1.4rem;
    color: #0af;
}

.schedule-day ul {
    list-style: none;
    padding: 0;
    margin: 0;
}

.schedule-day li {
    padding: 8px 0;
    border-bottom: 1px solid #333;
    font-size: 1rem;
}

.schedule-day li:last-child {
    border-bottom: none;
}

.schedule-day strong {
    color: #0af;
    font-weight: 600;
    margin-right: 8px;
}

.live-now {
    background: #0af;
    color: #000;
    font-weight: 700;
    padding: 10px;
    border-radius: 6px;
    border-left: 5px solid #fff;
}

.up-next {
    background: #003366;
    color: #fff;
    padding: 10px;
    border-radius: 6px;
    border-left: 5px solid #0af;
}

.culture-section {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(220px, 1fr));
    gap: 20px;
    margin: 40px auto;
    max-width: 1100px;
}

.culture-box {
    background: #0f172a;
    border: 3px solid #00aaff;
    border-radius: 12px;
    padding: 15px;
    text-align: center;
    color: #fff;
    box-shadow: 0 0 15px rgba(0, 170, 255, 0.25);
    transition: transform 0.25s ease, box-shadow 0.25s ease;
}

.culture-box:hover {
    transform: translateY(-6px);
    box-shadow: 0 0 25px rgba(0, 170, 255, 0.4);
}

.culture-box h3 {
    margin-bottom: 10px;
    font-size: 1.1rem;
    color: #00aaff;
    text-shadow: 0 0 8px rgba(0, 170, 255, 0.5);
}

.culture-box img {
    width: 100%;
    height: 150px;
    object-fit: cover;
    border-radius: 8px;
    margin-bottom: 10px;
}

.culture-box p {
    font-size: 0.9rem;
    opacity: 0.85;
}

.contact-wrapper {
    max-width: 700px;
    margin: 40px auto;
    padding: 20px;
    color: #fff;
    text-align: left;
}

.contact-wrapper h2 {
    text-align: center;
    color: #00aaff;
    text-shadow: 0 0 10px rgba(0, 170, 255, 0.6);
    margin-bottom: 10px;
}

.contact-wrapper p {
    text-align: center;
    opacity: 0.85;
    margin-bottom: 30px;
}

.contact-form {
    display: flex;
    flex-direction: column;
    gap: 15px;
}

.contact-form label {
    font-size: 0.95rem;
    opacity: 0.9;
}

.contact-form input,
.contact-form textarea {
    width: 100%;
    padding: 12px;
    border-radius: 8px;
    border: 2px solid #00aaff;
    background: #0f172a;
    color: #fff;
    font-size: 1rem;
    outline: none;
    box-shadow: 0 0 10px rgba(0, 170, 255, 0.2);
}

.contact-form input:focus,
.contact-form textarea:focus {
    box-shadow: 0 0 15px rgba(0, 170, 255, 0.4);
}

.contact-btn {
    padding: 14px;
    background: #00aaff;
    border: none;
    border-radius: 8px;
    color: #000;
    font-weight: bold;
    font-size: 1rem;
    cursor: pointer;
    transition: 0.25s ease;
    text-transform: uppercase;
    letter-spacing: 1px;
}

.contact-btn:hover {
    background: #0088cc;
    box-shadow: 0 0 20px rgba(0, 170, 255, 0.5);
}

.contact-grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 30px;
    max-width: 1100px;
    margin: 40px auto;
}

.contact-left,
.contact-right {
    background: #0f172a;
    border: 3px solid #00aaff;
    border-radius: 12px;
    padding: 20px;
    color: #fff;
    box-shadow: 0 0 15px rgba(0, 170, 255, 0.25);
}

.station-info-box h3 {
    margin-bottom: 10px;
    text-shadow: 0 0 8px rgba(0, 170, 255, 0.5);
}


.station-info-box p {
    opacity: 0.85;
    margin-bottom: 20px;
}

.station-info-box ul {
    list-style: none;
    padding: 0;
    margin: 0;
}

.station-info-box ul li {
    margin-bottom: 8px;
    padding-left: 20px;
    position: relative;
}

.station-info-box ul li::before {
    content: "•";
    color: #00aaff;
    position: absolute;
    left: 0;
    top: 0;
}

@media (max-width: 768px) {
    .contact-grid {
        grid-template-columns: 1fr;
    }
}

/* CONTACT PAGE HEADINGS */
.contact-left h2,
.contact-right h3 {
    color: #00aaff;
    font-weight: 700;
    letter-spacing: 1px;
    margin-bottom: 12px;
    text-transform: uppercase;
    text-shadow: 0 0 10px rgba(0, 170, 255, 0.6);
}

/* Optional: spacing between sections */
.contact-right h3 {
    margin-top: 20px;
}

/* Neon Gradient Headings */
.contact-right h3,
.station-info-box h3 {
    font-weight: 700;
    text-transform: uppercase;
    letter-spacing: 1px;
    margin-bottom: 12px;

    /* Gradient text */
    background: linear-gradient(90deg, #00aaff, #66e0ff, #00aaff);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;

    /* Glow */
    text-shadow: 0 0 12px rgba(0, 170, 255, 0.6),
                 0 0 20px rgba(0, 170, 255, 0.4);
}

.contact-left h2 {
    background: linear-gradient(90deg, #00aaff, #66e0ff, #00aaff);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    text-shadow: 0 0 12px rgba(0, 170, 255, 0.6),
                 0 0 20px rgba(0, 170, 255, 0.4);
}

