@import url('https://fonts.googleapis.com/css2?family=Roboto:wght@400;500;700&display=swap');

/* Global font and basic styles */
body {
    font-family: 'Roboto', sans-serif;
    background-color: #f5f7fa;
    color: #333333;
}

a {
    color: #2a5298;
    text-decoration: none;
}

a:hover {
    color: #1e3c72;
    text-decoration: none;
}

/* Override existing theme colour classes to use a light palette */
.site-bg-1,
.site-bg-2,
.site-bg-3,
.site-bg-4,
.site-bg-5,
.site-bg-6,
.site-bg-7,
.site-bg-8 {
    background-color: #f5f7fa !important;
}

.site-color-1,
.site-color-2,
.site-color-3,
.site-color-4,
.site-color-5,
.site-color-6,
.site-color-7,
.site-color-8 {
    background-color: #ffffff !important;
    color: #333333;
}

.site-copyright-1,
.site-copyright-2,
.site-copyright-3,
.site-copyright-4,
.site-copyright-5,
.site-copyright-6,
.site-copyright-7,
.site-copyright-8 {
    background-color: #e8eaf6 !important;
    color: #666666;
}

/* Navbar styling */
.navbar-brand {
    font-weight: 700;
}

.navbar-light .navbar-nav .nav-link {
    color: #333333;
    font-weight: 500;
}

.navbar-light .navbar-nav .nav-link:hover,
.navbar-light .navbar-nav .nav-link:focus {
    color: #2a5298;
}

/* Hero section styling */
.hero-section {
    background: linear-gradient(90deg, #1e3c72 0%, #2a5298 100%);
    color: #ffffff;
}

.hero-section h1 {
    font-weight: 700;
    margin-bottom: 0.5rem;
}

.hero-section p {
    font-size: 1.125rem;
    margin-bottom: 1.5rem;
}

.hero-section .form-control {
    max-width: 300px;
}

.hero-section .btn-primary {
    background-color: #ff7f50;
    border-color: #ff7f50;
}

.hero-section .btn-primary:hover {
    background-color: #ff6633;
    border-color: #ff6633;
}

/* Section titles */
.section-title {
    color: #1e3c72;
    font-weight: 600;
    font-size: 1.5rem;
}

/* Genre and station cards */
.card {
    border: none;
    transition: transform 0.2s ease, box-shadow 0.2s ease;
}

.card:hover {
    transform: translateY(-5px);
    box-shadow: 0 4px 15px rgba(0, 0, 0, 0.15);
}

.card-title {
    color: #1e3c72;
    font-weight: 600;
    font-size: 1rem;
}

/* Override default radio channel thumbnails */
.radio-channels img {
    border: none !important;
    border-radius: 0.5rem;
    background-color: #ffffff;
    box-shadow: 0 4px 8px rgba(0, 0, 0, 0.1);
}

.radio-channels img:hover {
    box-shadow: 0 4px 15px rgba(0, 0, 0, 0.2);
}

/* Footer styling */
.footer-container {
    background-color: #f5f7fa;
    color: #666666;
}

.page-footer a {
    color: #2a5298;
}

.page-footer a:hover {
    color: #1e3c72;
}

.footer-logo {
    height: 32px;
}

.footer-container .section-head {
    color: #1e3c72;
    font-weight: 600;
    font-size: 1rem;
}

/* Sidebar and filter colours */
.filter-title,
.letter {
    color: #1e3c72;
    font-weight: 600;
}

.genre-list a {
    color: #2a5298;
    display: block;
    margin-bottom: 3px;
    font-size: 0.875rem;
}

.genre-list a:hover {
    color: #1e3c72;
}

.alert-no-record {
    color: #666666;
    background-color: #f5f7fa;
    border-color: #e8eaf6;
    font-size: 14px;
}