/* Imports Google Fonts */
@import url('https://fonts.googleapis.com/css2?family=Caveat:wght@600;700&family=Inter:wght@300;400;500;600;700&family=Montserrat:wght@400;500;600;700;800&display=swap');

/* CSS Custom Properties / Design Tokens */
:root {
    --color-primary: #FF6F00;
    /* Warm Orange */
    --color-primary-hover: #E65100;
    --color-primary-light: rgba(255, 111, 0, 0.15);

    --color-success: #2E7D32;
    /* Green for buttons/features */
    --color-success-hover: #1B5E20;

    --color-dark-bg: #0C0F0D;
    /* Deep black-green background */
    --color-dark-card: #151A16;
    /* Dark card background */
    --color-dark-footer: #080A09;
    --color-light-bg: #F4F6F5;
    /* Soft grayish-green background */
    --color-white: #FFFFFF;
    --color-text-dark: #2C3E35;
    /* Dark green-gray text */
    --color-text-light: #F0F4F2;
    /* Light gray-white text */
    --color-text-muted: #83978E;
    /* Muted gray-green */

    --font-heading: 'Montserrat', sans-serif;
    --font-body: 'Inter', sans-serif;
    --font-script: 'Caveat', cursive;

    --shadow-sm: 0 2px 4px rgba(0, 0, 0, 0.05);
    --shadow-md: 0 4px 12px rgba(0, 0, 0, 0.1);
    --shadow-lg: 0 8px 24px rgba(0, 0, 0, 0.15);
    --shadow-glow: 0 0 15px rgba(255, 111, 0, 0.4);

    --transition-fast: 0.2s ease;
    --transition-normal: 0.3s ease;
    --transition-slow: 0.5s ease;

    --border-radius: 8px;
    --border-radius-lg: 16px;
    --border-radius-pill: 50px;
}

/* Reset and Base Styles */
* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

html {
    scroll-behavior: smooth;
    font-size: 16px;
}

body {
    font-family: var(--font-body);
    background-color: var(--color-light-bg);
    color: var(--color-text-dark);
    line-height: 1.6;
    overflow-x: hidden;
    padding-bottom: 75px;
    /* Compenses the sticky audio player bar */
}

a {
    text-decoration: none;
    color: inherit;
    transition: var(--transition-fast);
}

ul {
    list-style: none;
}

button {
    font-family: var(--font-heading);
    border: none;
    background: none;
    cursor: pointer;
    transition: var(--transition-fast);
}

img {
    max-width: 100%;
    display: block;
}

/* Global Typography Utilities */
h1,
h2,
h3,
h4,
h5,
h6 {
    font-family: var(--font-heading);
    font-weight: 700;
}

.script-text {
    font-family: var(--font-script);
}

/* Header Section */
.site-header {
    /* background-color: rgba(12, 15, 13, 0.95); */
    background-color: var(--color-dark-footer);
    backdrop-filter: blur(8px);
    position: sticky;
    top: 0;
    z-index: 100;
    padding: 10px 4%;
    display: flex;
    justify-content: space-between;
    align-items: center;
    border-bottom: 1px solid rgba(255, 255, 255, 0.05);
    height: 140px;
    transition: height var(--transition-normal), background-color var(--transition-normal);
}

.logo-container {
    display: flex;
    align-items: center;
    max-width: 400px;
}

.logo-header-img {
    height: 130px;
    object-fit: contain;
    transition: height var(--transition-normal);
}

/* Scrolled Header State (40% decrease) */
.site-header.scrolled {
    height: 84px;
    background-color: rgba(8, 10, 9, 0.98);
    box-shadow: var(--shadow-md);
}

.site-header.scrolled .logo-header-img {
    height: 78px;
}

/* Mobile Nav Drawer layout styles */
.mobile-nav-drawer {
    position: fixed;
    top: 140px;
    left: 0;
    width: 100%;
    background: rgba(12, 15, 13, 0.98);
    z-index: 99;
    padding: 20px;
    border-bottom: 2px solid var(--color-primary);
    box-shadow: var(--shadow-lg);
    transition: top var(--transition-normal);
}

.nav-menu {
    display: flex;
    align-items: center;
    gap: 25px;
}

.nav-link {
    color: rgba(255, 255, 255, 0.8);
    font-family: var(--font-heading);
    font-size: 0.85rem;
    font-weight: 600;
    text-transform: uppercase;
    letter-spacing: 0.5px;
    position: relative;
    padding: 8px 0;
}

.nav-link::after {
    content: '';
    position: absolute;
    bottom: 0;
    left: 0;
    width: 0;
    height: 2px;
    background-color: var(--color-primary);
    transition: var(--transition-normal);
}

.nav-link:hover {
    color: var(--color-white);
}

.nav-link:hover::after,
.nav-link.active::after {
    width: 100%;
}

.nav-link.active {
    color: var(--color-primary);
}

.btn-header-play {
    background-color: var(--color-primary);
    color: var(--color-white);
    padding: 10px 22px;
    border-radius: 10px;
    font-weight: 700;
    font-size: 0.85rem;
    text-transform: uppercase;
    display: flex;
    align-items: center;
    gap: 8px;
    box-shadow: var(--shadow-glow);
}

.btn-header-play:hover {
    background-color: var(--color-primary-hover);
    transform: translateY(-2px);
    box-shadow: 0 0 20px rgba(255, 111, 0, 0.6);
}

.btn-header-play i {
    font-size: 0.95rem;
}

/* Mobile Menu Button */
.menu-toggle {
    display: none;
    color: var(--color-white);
    font-size: 1.5rem;
}

/* Hero / Slider Section */
.hero-slider {
    position: relative;
    height: 525px;
    overflow: hidden;
}

.hero-slide {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background-size: cover;
    background-position: center center;
    display: flex;
    align-items: center;
    padding: 0 6%;
    opacity: 0;
    visibility: hidden;
    transition: opacity 1s ease-in-out, visibility 1s ease-in-out;
    z-index: 1;
}

.hero-slide.active {
    opacity: 1;
    visibility: visible;
    z-index: 2;
}

.hero-overlay {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: linear-gradient(90deg, rgba(12, 15, 13, 0.85) 0%, rgba(12, 15, 13, 0.4) 60%, rgba(12, 15, 13, 0.7) 100%);
    z-index: 1;
}

.hero-content {
    position: relative;
    z-index: 2;
    max-width: 600px;
    color: var(--color-white);
    transform: translateY(20px);
    opacity: 0;
    transition: transform 0.6s ease-out 0.2s, opacity 0.6s ease-out 0.2s;
}

.hero-slide.active .hero-content {
    transform: translateY(0);
    opacity: 1;
}

.hero-tagline {
    color: var(--color-primary);
    font-size: 1.2rem;
    font-weight: 800;
    letter-spacing: 4px;
    text-transform: uppercase;
    margin-bottom: 2px;
}

.hero-title {
    font-size: 3.5rem;
    line-height: 1.1;
    font-weight: 800;
    margin-bottom: 10px;
    text-shadow: 2px 2px 8px rgba(0, 0, 0, 0.5);
    letter-spacing: -0.5px;
}

.hero-script {
    font-family: var(--font-script);
    color: var(--color-primary);
    font-size: 2.2rem;
    margin-bottom: 18px;
    display: block;
    line-height: 1.2;
}

.hero-description {
    font-size: 1.05rem;
    color: rgba(255, 255, 255, 0.9);
    margin-bottom: 30px;
    font-weight: 300;
    line-height: 1.5;
}

.btn-hero-play {
    background-color: var(--color-primary-hover);
    color: var(--color-white);
    padding: 14px 30px;
    border-radius: 10px;
    font-weight: 700;
    font-size: 1rem;
    text-transform: uppercase;
    display: inline-flex;
    align-items: center;
    gap: 10px;
    box-shadow: var(--shadow-glow);
}

.btn-hero-play:hover {
    background-color: var(--color-primary);
    transform: translateY(-3px);
    box-shadow: 0 0 25px rgba(255, 111, 0, 0.7);
}

/* Slider Controls */
.slider-dots {
    position: absolute;
    bottom: 25px;
    left: 50%;
    transform: translateX(-50%);
    z-index: 10;
    display: flex;
    gap: 10px;
}

.slider-dot {
    width: 10px;
    height: 10px;
    border-radius: 50%;
    background-color: rgba(255, 255, 255, 0.4);
    cursor: pointer;
    transition: var(--transition-fast);
}

.slider-dot.active {
    background-color: var(--color-primary);
    width: 25px;
    border-radius: 5px;
}

/* Features Ribbon */
.features-ribbon {
    background-color: var(--color-dark-bg);
    padding: 20px 4%;
    border-bottom: 4px solid var(--color-primary);
}

.features-container {
    max-width: 1200px;
    margin: 0 auto;
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 20px;
}

.feature-item {
    display: flex;
    align-items: center;
    gap: 15px;
    padding-right: 15px;
    border-right: 1px solid rgba(255, 255, 255, 0.1);
}

.feature-item:last-child {
    border-right: none;
    padding-right: 0;
}

.feature-icon-wrapper {
    width: 50px;
    height: 50px;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    flex-shrink: 0;
    font-size: 1.4rem;
    color: var(--color-white);
    transition: var(--transition-normal);
}

/* Colors for each features icon from layout */
.feature-item:nth-child(1) .feature-icon-wrapper {
    background-color: #2E7D32;
}

/* Green */
.feature-item:nth-child(2) .feature-icon-wrapper {
    background-color: #EF6C00;
}

/* Orange */
.feature-item:nth-child(3) .feature-icon-wrapper {
    background-color: #FBC02D;
}

/* Yellow */
.feature-item:nth-child(4) .feature-icon-wrapper {
    background-color: #4CAF50;
}

/* Light Green */

.feature-item:hover .feature-icon-wrapper {
    transform: rotate(10deg) scale(1.1);
}

.feature-text {
    color: var(--color-white);
}

.feature-title {
    font-family: var(--font-heading);
    font-size: 0.85rem;
    font-weight: 700;
    text-transform: uppercase;
    letter-spacing: 0.5px;
    line-height: 1.2;
    margin-bottom: 2px;
}

.feature-desc {
    font-size: 0.75rem;
    color: var(--color-text-muted);
    font-weight: 400;
    line-height: 1.3;
}

/* Main Content Grid (Programação and Notícias) */
.main-content {
    padding: 60px 4%;
    max-width: 1200px;
    margin: 0 auto;
}

.content-grid {
    display: grid;
    grid-template-columns: 2.3fr 0.7fr;
    gap: 40px;
}

.section-header {
    display: flex;
    justify-content: space-between;
    align-items: center;
    margin-bottom: 30px;
    border-bottom: 2px solid rgba(0, 0, 0, 0.05);
    padding-bottom: 12px;
}

.section-title {
    font-size: 1.5rem;
    font-weight: 800;
    color: var(--color-text-dark);
    display: flex;
    align-items: center;
    gap: 10px;
    text-transform: uppercase;
}

.section-title i {
    color: var(--color-primary);
}

.section-link {
    color: var(--color-primary);
    font-family: var(--font-heading);
    font-weight: 700;
    font-size: 0.8rem;
    text-transform: uppercase;
    letter-spacing: 0.5px;
    display: flex;
    align-items: center;
    gap: 5px;
}

.section-link:hover {
    color: var(--color-primary-hover);
    gap: 8px;
    /* Micro-interaction slide out arrow */
}

/* Programming Grid Section */
.prog-grid {
    display: grid;
    grid-template-columns: repeat(5, 1fr);
    gap: 15px;
}

.prog-card {
    background-color: var(--color-white);
    border-radius: var(--border-radius);
    overflow: hidden;
    box-shadow: var(--shadow-sm);
    display: flex;
    flex-direction: column;
    transition: var(--transition-normal);
    position: relative;
    border: 1px solid rgba(0, 0, 0, 0.03);
    height: 260px;
}

.prog-card:hover {
    transform: translateY(-8px);
    box-shadow: var(--shadow-lg);
    border-color: rgba(255, 111, 0, 0.15);
}

.prog-img-wrapper {
    position: relative;
    height: 60%;
    overflow: hidden;
}

.prog-img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: var(--transition-slow);
}

.prog-card:hover .prog-img {
    transform: scale(1.1);
}

.prog-card-overlay {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: linear-gradient(to top, rgba(0, 0, 0, 0.6) 0%, rgba(0, 0, 0, 0.1) 100%);
}

.prog-meta-overlay {
    position: absolute;
    bottom: 12px;
    left: 12px;
    display: flex;
    flex-direction: column;
    gap: 4px;
    z-index: 2;
}

.prog-icon {
    color: var(--color-white);
    font-size: 2rem;
    filter: drop-shadow(1px 1px 2px rgba(0, 0, 0, 0.8));
    line-height: 1;
}

.prog-info {
    padding: 12px;
    height: 40%;
    display: flex;
    flex-direction: column;
    text-align: left;
    justify-content: flex-start;
}

.prog-time {
    font-family: var(--font-heading);
    font-size: 0.72rem;
    font-weight: 700;
    color: var(--color-white);
    text-shadow: 1px 1px 3px rgba(0, 0, 0, 0.9);
    text-transform: uppercase;
    line-height: 1.2;
}

.prog-name {
    font-size: 0.85rem;
    font-weight: 700;
    color: var(--color-text-dark);
    margin-bottom: 8px;
    line-height: 1.25;
    text-transform: uppercase;
}

/* Colors matching specific show titles in layout */
.prog-card:nth-child(1) .prog-name {
    color: #1B5E20;
}

/* Bom Dia Brochier - Green */
.prog-card:nth-child(2) .prog-name {
    color: #E65100;
}

/* Manhã Sertaneja - Orange */
.prog-card:nth-child(3) .prog-name {
    color: #1565C0;
}

/* Jornal da Comunidade - Blue (wait, layout shows dark green but let's look: Jornal da Comunidade is dark green #2E4C2E) */
.prog-card:nth-child(3) .prog-name {
    color: #2C5E43;
}

.prog-card:nth-child(4) .prog-name {
    color: #D84315;
}

/* Bandinhas e Tradição - Red/Orange */
.prog-card:nth-child(5) .prog-name {
    color: #1B5E20;
}

/* Noite Campeira - Green */

.prog-desc {
    font-size: 0.72rem;
    color: var(--color-text-muted);
    line-height: 1.35;
    font-weight: 400;
    margin-top: auto;
}

/* News List Section */
.news-list {
    display: flex;
    flex-direction: column;
    gap: 20px;
}

.news-item {
    display: flex;
    gap: 15px;
    background-color: var(--color-white);
    padding: 12px;
    border-radius: var(--border-radius);
    box-shadow: var(--shadow-sm);
    transition: var(--transition-normal);
    border: 1px solid rgba(0, 0, 0, 0.03);
}

.news-item:hover {
    transform: translateX(4px);
    box-shadow: var(--shadow-md);
    border-color: rgba(255, 111, 0, 0.1);
}

.news-img-wrapper {
    width: 96px;
    height: 72px;
    border-radius: 4px;
    overflow: hidden;
    flex-shrink: 0;
}

.news-img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: var(--transition-normal);
}

.news-item:hover .news-img {
    transform: scale(1.08);
}

.news-info {
    display: flex;
    flex-direction: column;
    justify-content: space-between;
}

.news-title {
    font-size: 0.85rem;
    font-weight: 700;
    line-height: 1.3;
    color: var(--color-text-dark);
    margin-bottom: 5px;
    display: -webkit-box;
    -webkit-line-clamp: 2;
    -webkit-box-orient: vertical;
    overflow: hidden;
    transition: var(--transition-fast);
}

.news-item:hover .news-title {
    color: var(--color-primary);
}

.news-date {
    font-size: 0.72rem;
    color: var(--color-text-muted);
    font-weight: 500;
}

/* Nossa História Section */
.history-section {
    position: relative;
    background: url('img/historia-bg.png') no-repeat center center;
    background-size: cover;
    padding: 50px 6%;
    color: var(--color-white);
    overflow: hidden;
}

.history-overlay {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: linear-gradient(90deg, rgba(12, 19, 14, 0.9) 0%, rgba(12, 19, 14, 0.75) 50%, rgba(12, 19, 14, 0.3) 100%);
    z-index: 1;
}

.history-content {
    position: relative;
    z-index: 2;
    max-width: 500px;
}

.history-title {
    font-size: 2.2rem;
    line-height: 1.1;
    margin-bottom: 15px;
    font-weight: 800;
    text-transform: uppercase;
}

.history-title span {
    display: block;
    font-family: var(--font-script);
    color: #FFD54F;
    /* Golden yellow matching layout script color */
    font-size: 2.6rem;
    text-transform: none;
    margin-bottom: -5px;
}

.history-desc {
    font-size: 0.9rem;
    line-height: 1.5;
    color: rgba(255, 255, 255, 0.85);
    font-weight: 300;
    margin-bottom: 15px;
}

.history-desc-script {
    font-family: var(--font-script);
    color: #FFD54F;
    font-size: 1.8rem;
    margin-bottom: 22px;
    font-weight: 500;
}

.btn-history {
    background-color: var(--color-success);
    color: var(--color-white);
    padding: 12px 25px;
    border-radius: var(--border-radius);
    font-size: 0.85rem;
    font-weight: 700;
    text-transform: uppercase;
    display: inline-flex;
    align-items: center;
    gap: 8px;
    transition: var(--transition-normal);
}

.btn-history:hover {
    background-color: var(--color-success-hover);
    transform: translateY(-2px);
    box-shadow: 0 5px 15px rgba(27, 94, 32, 0.4);
}

/* Glowing Music Note vector trace overlay (Simulated via SVG overlay in HTML, styled here) */
.note-vector-overlay {
    position: absolute;
    right: 5%;
    top: 50%;
    transform: translateY(-50%);
    height: 90%;
    width: auto;
    opacity: 0.15;
    z-index: 1;
    pointer-events: none;
}

/* Sponsors Slider Section inside Footer (Option 2) */
.sponsors-section {
    padding: 10px 0 35px 0;
    border-bottom: 1px solid rgba(255, 255, 255, 0.05);
    margin-bottom: 30px;
    width: 100%;
}

.sponsors-header {
    margin-bottom: 20px;
}

.sponsors-title {
    font-size: 0.95rem;
    font-weight: 700;
    color: var(--color-primary);
    text-transform: uppercase;
    letter-spacing: 0.5px;
    display: flex;
    align-items: center;
    gap: 8px;
}

.sponsors-title .hands-icon {
    font-size: 1.2rem;
}

.sponsors-slider-wrapper {
    display: flex;
    align-items: center;
    position: relative;
    gap: 15px;
}

.sponsors-track-container {
    overflow: hidden;
    width: 100%;
    border-radius: var(--border-radius);
}

.sponsors-track {
    display: flex;
    transition: transform 0.5s cubic-bezier(0.25, 0.46, 0.45, 0.94);
    width: 100%;
}

.sponsor-slide {
    flex: 0 0 20%; /* 5 cards visible by default on desktop */
    padding: 0 8px;
    box-sizing: border-box;
    display: flex;
    justify-content: center;
    align-items: center;
}

.sponsor-slide img {
    width: 100%;
    height: auto;
    object-fit: contain;
    border-radius: var(--border-radius);
    background-color: #f6f6f4;
    border: 1px solid rgba(0,0,0,0.05);
    box-shadow: 0 2px 8px rgba(0,0,0,0.15);
    transition: transform var(--transition-fast), box-shadow var(--transition-fast);
}

.sponsor-slide:hover img {
    transform: scale(1.05);
    box-shadow: 0 6px 15px rgba(255, 111, 0, 0.25), 0 0 8px rgba(255, 111, 0, 0.15);
    border-color: rgba(255, 111, 0, 0.3);
}

.sponsors-arrow {
    background-color: rgba(255, 255, 255, 0.05);
    border: 1px solid rgba(255, 255, 255, 0.1);
    color: var(--color-white);
    width: 36px;
    height: 36px;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    cursor: pointer;
    transition: var(--transition-fast);
    flex-shrink: 0;
    z-index: 10;
}

.sponsors-arrow:hover {
    background-color: var(--color-primary);
    border-color: var(--color-primary);
    transform: scale(1.1);
    box-shadow: var(--shadow-glow);
}

.sponsors-arrow i {
    font-size: 0.9rem;
}

/* Responsiveness of Sponsors Slider */
@media (max-width: 1024px) {
    .sponsor-slide {
        flex: 0 0 33.333%; /* 3 cards visible on tablets */
    }
}

@media (max-width: 768px) {
    .sponsor-slide {
        flex: 0 0 50%; /* 2 cards visible on mobile landscape */
    }
    .sponsors-section {
        padding-bottom: 25px;
    }
}

@media (max-width: 480px) {
    .sponsor-slide {
        flex: 0 0 100%; /* 1 card visible on mobile portrait */
    }
    .sponsors-slider-wrapper {
        gap: 8px;
    }
    .sponsors-arrow {
        width: 32px;
        height: 32px;
    }
}

/* Footer Section */
.site-footer {
    background-color: var(--color-dark-footer);
    color: rgba(255, 255, 255, 0.7);
    padding: 30px 4% 10px;
    border-top: 1px solid rgba(255, 255, 255, 0.05);
}

.footer-grid {
    max-width: 1200px;
    margin: 0 auto;
    display: grid;
    grid-template-columns: 1fr 1fr 1fr 1fr;
    gap: 30px;
    margin-bottom: 0;
}

.footer-column-title {
    font-size: 0.9rem;
    font-weight: 700;
    color: var(--color-white);
    text-transform: uppercase;
    margin-bottom: 20px;
    letter-spacing: 0.5px;
    position: relative;
    padding-bottom: 8px;
}

.footer-column-title::after {
    content: '';
    position: absolute;
    bottom: 0;
    left: 0;
    width: 30px;
    height: 2px;
    background-color: var(--color-primary);
}

/* Footer Col 1: About */
.footer-about-logo {
    height: 130px;
    object-fit: contain;
    margin-bottom: 15px;
}

.footer-about-text {
    font-size: 0.8rem;
    line-height: 1.5;
    color: var(--color-text-muted);
}

/* Footer Col 2: Contact */
.footer-contact-list {
    display: flex;
    flex-direction: column;
    gap: 12px;
}

.footer-contact-item {
    display: flex;
    align-items: center;
    gap: 12px;
    font-size: 0.82rem;
}

.footer-contact-item i {
    color: var(--color-primary);
    width: 16px;
    text-align: center;
}

.footer-contact-item a:hover {
    color: var(--color-primary);
}

/* Footer Col 3: Address */
.footer-address {
    font-size: 0.82rem;
    line-height: 1.5;
    display: flex;
    flex-direction: column;
    gap: 12px;
}

.footer-address-text {
    display: flex;
    gap: 10px;
}

.footer-address-text i {
    color: var(--color-primary);
    margin-top: 3px;
}

.btn-footer-map {
    border: 1px solid rgba(255, 255, 255, 0.2);
    color: var(--color-white);
    padding: 10px 15px;
    border-radius: var(--border-radius);
    font-size: 0.75rem;
    font-weight: 700;
    text-transform: uppercase;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    gap: 8px;
    width: max-content;
}

.btn-footer-map:hover {
    background-color: rgba(255, 255, 255, 0.05);
    border-color: var(--color-primary);
    color: var(--color-primary);
}

/* Footer Col 4: Siga a Rádio & App */
.footer-social-title {
    font-size: 0.85rem;
    font-weight: 700;
    color: var(--color-white);
    margin-bottom: 12px;
    text-transform: uppercase;
}

.footer-social-links {
    display: flex;
    gap: 10px;
    margin-bottom: 25px;
}

.social-circle {
    width: 36px;
    height: 36px;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    color: var(--color-white);
    font-size: 1rem;
    transition: var(--transition-fast);
}

/* Social media colors from layout mockup */
.social-circle.facebook {
    background-color: #1877F2;
}

.social-circle.instagram {
    background: linear-gradient(45deg, #f09433 0%, #e6683c 25%, #dc2743 50%, #cc2366 75%, #bc1888 100%);
}

.social-circle.youtube {
    background-color: #FF0000;
}

.social-circle.whatsapp {
    background-color: #25D366;
}

.social-circle:hover {
    transform: scale(1.15) translateY(-2px);
    box-shadow: 0 4px 10px rgba(0, 0, 0, 0.3);
}

.footer-app-badges {
    display: flex;
    flex-direction: column;
    gap: 10px;
}

.app-badge-link {
    display: inline-block;
    max-width: 140px;
    transition: var(--transition-fast);
}

.app-badge-link:hover {
    transform: scale(1.05);
    filter: brightness(1.1);
}

/* Footer Bottom copyright */
.footer-bottom {
    max-width: 1200px;
    margin: 0 auto;
    border-top: 1px solid rgba(255, 255, 255, 0.05);
    padding-top: 20px;
    display: flex;
    justify-content: space-between;
    font-size: 0.72rem;
    color: var(--color-text-muted);
}

.footer-bottom-links {
    display: flex;
    gap: 15px;
}

.footer-bottom-links a:hover {
    color: var(--color-white);
}

/* Sticky Bottom Audio Player Bar */
.sticky-player {
    position: fixed;
    bottom: 0;
    left: 0;
    width: 100%;
    height: 75px;
    background-color: rgba(12, 14, 13, 0.92);
    backdrop-filter: blur(15px);
    border-top: 2px solid var(--color-primary);
    z-index: 999;
    padding: 0 4%;
    display: flex;
    align-items: center;
    justify-content: space-between;
    box-shadow: 0 -4px 20px rgba(0, 0, 0, 0.5);
}

/* Player Left side: Info */
.player-info-container {
    display: flex;
    align-items: center;
    gap: 15px;
    width: 30%;
}

.player-status-badge {
    background-color: #E65100;
    /* Darker orange for the badge */
    color: var(--color-white);
    padding: 6px 12px;
    border-radius: 4px;
    font-size: 0.65rem;
    font-weight: 800;
    text-transform: uppercase;
    letter-spacing: 0.5px;
    display: flex;
    align-items: center;
    gap: 6px;
    flex-shrink: 0;
}

/* Blinking dot for live indicator */
.live-dot {
    width: 6px;
    height: 6px;
    background-color: var(--color-white);
    border-radius: 50%;
    animation: blink 1.2s infinite;
}

.player-album-wrapper {
    width: 44px;
    height: 44px;
    border-radius: 4px;
    overflow: hidden;
    box-shadow: 0 2px 5px rgba(0, 0, 0, 0.3);
    flex-shrink: 0;
}

.player-album-art {
    width: 100%;
    height: 100%;
    object-fit: cover;
}

.player-track-details {
    display: flex;
    flex-direction: column;
    overflow: hidden;
}

.player-label-now {
    font-size: 0.62rem;
    text-transform: uppercase;
    color: var(--color-primary);
    font-weight: 700;
    margin-bottom: 2px;
}

.player-track-title {
    font-size: 0.85rem;
    font-weight: 700;
    color: var(--color-white);
    white-space: nowrap;
    overflow: hidden;
    text-overflow: ellipsis;
}

.player-track-artist {
    font-size: 0.72rem;
    color: var(--color-text-muted);
    white-space: nowrap;
    overflow: hidden;
    text-overflow: ellipsis;
}

/* Player Center side: Controls */
.player-controls-container {
    display: flex;
    align-items: center;
    gap: 20px;
    justify-content: center;
    width: 40%;
}

.btn-player-control {
    color: rgba(255, 255, 255, 0.7);
    font-size: 1.1rem;
}

.btn-player-control:hover {
    color: var(--color-white);
    transform: scale(1.1);
}

.btn-player-play-pause {
    width: 50px;
    height: 50px;
    border-radius: 50%;
    background-color: var(--color-primary);
    color: var(--color-white);
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 1.3rem;
    box-shadow: var(--shadow-glow);
}

.btn-player-play-pause:hover {
    background-color: var(--color-primary-hover);
    transform: scale(1.08);
    box-shadow: 0 0 20px rgba(255, 111, 0, 0.6);
}

.player-volume-wrapper {
    display: flex;
    align-items: center;
    gap: 8px;
    color: rgba(255, 255, 255, 0.7);
}

.volume-slider {
    width: 70px;
    height: 4px;
    -webkit-appearance: none;
    background: rgba(255, 255, 255, 0.2);
    border-radius: 2px;
    outline: none;
    cursor: pointer;
}

.volume-slider::-webkit-slider-thumb {
    -webkit-appearance: none;
    width: 10px;
    height: 10px;
    border-radius: 50%;
    background: var(--color-primary);
    cursor: pointer;
}

/* Player Right side: Show info */
.player-show-container {
    display: flex;
    align-items: center;
    justify-content: flex-end;
    gap: 20px;
    width: 30%;
}

.player-show-details {
    text-align: right;
}

.player-show-label {
    font-size: 0.62rem;
    text-transform: uppercase;
    color: var(--color-text-muted);
    font-weight: 700;
    margin-bottom: 2px;
}

.player-show-name {
    font-size: 0.8rem;
    font-weight: 700;
    color: var(--color-white);
}

.btn-player-menu {
    color: var(--color-white);
    font-size: 1.2rem;
}

.btn-player-menu:hover {
    color: var(--color-primary);
    transform: scale(1.1);
}

/* Keyframes Animations */
@keyframes blink {
    0% {
        opacity: 0.2;
    }

    50% {
        opacity: 1;
    }

    100% {
        opacity: 0.2;
    }
}

/* Responsive Media Queries */
@media (max-width: 1024px) {
    .features-container {
        grid-template-columns: repeat(2, 1fr);
        gap: 20px;
    }

    .feature-item {
        border-right: none;
    }

    .feature-item:nth-child(odd) {
        border-right: 1px solid rgba(255, 255, 255, 0.1);
    }

    .prog-grid {
        grid-template-columns: repeat(3, 1fr);
    }
}

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

    .prog-grid {
        grid-template-columns: repeat(5, 1fr);
    }

    .footer-grid {
        grid-template-columns: repeat(2, 1fr);
    }
}

@media (max-width: 768px) {
    .site-header {
        height: 110px;
    }

    .logo-header-img {
        height: 90px;
    }

    /* Mobile Scrolled State (40% decrease) */
    .site-header.scrolled {
        height: 66px;
    }

    .site-header.scrolled .logo-header-img {
        height: 54px;
    }

    /* Reposition mobile drawer when scrolled on mobile */
    .mobile-nav-drawer {
        top: 110px;
    }

    .site-header.scrolled~.mobile-nav-drawer {
        top: 66px;
    }

    .nav-menu {
        display: none;
        /* Hide default nav, toggleable on mobile */
    }

    .menu-toggle {
        display: block;
    }

    .hero-slider {
        height: 450px;
        padding: 0 4%;
    }

    .hero-title {
        font-size: 2.5rem;
    }

    .hero-script {
        font-size: 1.8rem;
    }

    .prog-grid {
        grid-template-columns: repeat(3, 1fr);
    }

    .history-section {
        padding: 40px 4%;
    }

    .history-title {
        font-size: 1.8rem;
    }

    .history-title span {
        font-size: 2.2rem;
    }

    .footer-bottom {
        flex-direction: column;
        gap: 10px;
        text-align: center;
    }

    .footer-bottom-links {
        justify-content: center;
    }

    /* Sticky player on small screens - optimize layout spacing */
    .player-show-container {
        display: none;
        /* Hide program details on mobile screens to save space */
    }

    .player-info-container {
        width: 50%;
    }

    .player-controls-container {
        width: 50%;
        justify-content: flex-end;
    }

    .player-volume-wrapper {
        display: none;
        /* Hide volume bar on small mobile screens */
    }
}

@media (max-width: 560px) {
    .features-container {
        grid-template-columns: 1fr;
    }

    .feature-item:nth-child(odd) {
        border-right: none;
    }

    .prog-grid {
        grid-template-columns: repeat(2, 1fr);
    }

    .footer-grid {
        grid-template-columns: 1fr;
    }

    .player-status-badge {
        display: none;
        /* Hide live badge on very small screens to fit text */
    }

    .player-info-container {
        width: 60%;
    }

    .player-controls-container {
        width: 40%;
    }

    .btn-player-play-pause {
        width: 40px;
        height: 40px;
        font-size: 1.1rem;
    }

    .btn-player-control {
        display: none;
        /* Hide prev/next controls on small phone widths */
    }
}