:root {
    --primary-color: #db1e25;
    --secondary-color: #1cca5a;
    --dark-color: #012093;
    --dark-primary: #9c9dffff;
}

body {
    font-family: 'Segoe UI', Tahoma, Geneva, Verdana, sans-serif;
}

p {
    font-size: 1.2rem;
    line-height: 1.8;
}

/* Navbar */
.navbar {
    padding: 1rem 0;
    background-color: rgba(254, 254, 254) !important;
    box-shadow: 0 2px 10px rgba(0, 0, 0, 0.1);
    /*opacity: 0.9;*/
}

.navbar-brand img {
    height: 50px;
}

.nav-link {
    font-weight: 600;
    margin: 0 10px;
    color: var(--dark-color) !important;
    transition: color 0.3s;
}

.nav-link:hover {
    color: var(--primary-color) !important;
}

/* Hero Section */
.hero-section {
    height: 100vh;
    background: linear-gradient(rgba(0, 0, 0, 0.5), rgba(0, 0, 0, 0.5)),
            url('../hero-image.jpg');
    background-size: cover;
    background-position: center;
    background-attachment: fixed;
    display: flex;
    align-items: center;
    color: white;
    text-align: center;
}

.hero-content h1 {
    font-size: 4rem;
    font-weight: 700;
    margin-bottom: 1.5rem;
}

.hero-content p {
    font-size: 1.5rem;
    margin-bottom: 2rem;
}

.btn-primary-custom {
    background: #ffffff;
    border: none;
    padding: 15px 40px;
    font-size: 1.2rem;
    border-radius: 50px;
    transition: transform 0.3s;
}

.btn-primary-custom:hover {
    transform: translateY(-2px);
    background: var(--dark-color);
}

/* Section Titles */
.section-title {
    font-size: 2.5rem;
    font-weight: 700;
    margin-bottom: 3rem;
    color: var(--dark-color);
    position: relative;
    display: inline-block;
}

.section-title:after {
    content: '';
    position: absolute;
    bottom: -10px;
    left: 50%;
    transform: translateX(-50%);
    width: 80px;
    height: 4px;
    background: var(--primary-color);
}

/* Watch Promo Section */
.watch-promo-section {
    padding: 80px 0;
    background: #f8f9fa;
}

.video-container {
    position: relative;
    padding-bottom: 56.25%;
    height: 0;
    overflow: hidden;
    border-radius: 15px;
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.2);
}

.video-container iframe {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
}

/* Press Release Section */
.press-release-section {
    padding: 80px 0;
    background: var(--dark-color);
    color: white;
}

.press-release-section .section-title {
    color: white;
}

.press-release-section .section-title:after {
    background: white;
}

/* About Section */
.about-section {
    padding: 80px 0;
}

.about-content {
    font-size: 1.2rem;
    line-height: 1.8;
    color: #555;
}

/* Host Section */
.host-section {
    padding: 80px 0;
    background: #f8f9fa;
}

.host-card {
    background: white;
    border-radius: 15px;
    padding: 30px;
    box-shadow: 0 5px 20px rgba(0, 0, 0, 0.1);
    transition: transform 0.3s;
    height: 100%;
}
.host-card p.text-muted {
    font-size: 0.9rem;
}

.host-card:hover {
    transform: translateY(-10px);
}

.host-img {
    width: 150px;
    height: 150px;
    border-radius: 50%;
    object-fit: cover;
    margin-bottom: 20px;
    border: 5px solid var(--dark-color);
}

/* Listen Section */
.listen-section {
    padding: 80px 0;
    background: var(--dark-color);
    color: white;
}

.listen-section img{
    width: 100px;
}

.listen-section .section-title {
    color: white;
}

.listen-section .section-title:after {
    background: var(--primary-color);
}

.platform-icon {
    font-size: 4rem;
    margin: 20px;
    transition: transform 0.3s;
    color: white;
}

.platform-icon:hover {
    transform: scale(1.2);
}


/* Footer */
footer {
    background: #0f172a;
    color: white;
    padding: 10px 0;
}

.social-links a {
    color: white;
    font-size: 1.5rem;
    margin: 0 15px;
    transition: color 0.3s;
}

.social-links a:hover {
    color: var(--primary-color);
}

@media (max-width: 768px) {
    .hero-content h1 {
        font-size: 2.5rem;
    }

    .hero-content p {
        font-size: 1.2rem;
    }
}