.newsletter-section {
    text-align: left;
}
.newsletter-form {
    display: flex;
    gap: 8px;
    margin-top: 10px;
}
.newsletter-form input[type="email"] {
    flex: 1;
    padding: 10px 12px;
    border: 1px solid #ddd;
    border-radius: 4px;
    font-size: 14px;
    outline: none;
    transition: border 0.2s;
}
.newsletter-form input[type="email"]:focus {
    border-color: var(--secondary-color);
}
.newsletter-form button {
    padding: 10px 18px;
    background: var(--secondary-color);
    color: var(--primary-color);
    border: none;
    border-radius: 4px;
    font-weight: 700;
    cursor: pointer;
    transition: background 0.2s;
}
.newsletter-form button:hover {
    background: var(--primary-color);
    color: var(--secondary-color);
}
@media (max-width: 900px) {
    .newsletter-section { text-align: center; }
    .newsletter-form { flex-direction: column; gap: 10px; }
    .newsletter-form button { width: 100%; }
}
/* Welcome and On Air Now Section */
.welcome-onair-section {
    background: #f8f9fa;
    padding: 40px 0 30px 0;
}
.welcome-onair-container {
    display: flex;
    justify-content: space-between;
    align-items: stretch;
    max-width: 1200px;
    margin: 0 auto;
    gap: 40px;
    padding: 0 20px;
}
.welcome-left {
    flex: 1;
    display: flex;
    align-items: center;
    justify-content: flex-start;
}
.welcome-left h2 {
    font-size: 2.2rem;
    color: var(--primary-color);
    font-weight: 700;
    margin: 0;
}
.onair-right {
    flex: 1;
    display: flex;
    align-items: center;
    justify-content: flex-end;
}
.onair-right .player-card {
    margin: 0 auto 0 0;
    min-width: 320px;
    max-width: 400px;
}
@media (max-width: 900px) {
    .welcome-onair-container {
        flex-direction: column;
        gap: 24px;
        align-items: stretch;
    }
    .onair-right, .welcome-left {
        justify-content: center;
        text-align: center;
    }
    .onair-right .player-card {
        margin: 0 auto;
    }
}
/* =====================
   GLOBAL STYLES
   ===================== */
* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

:root {
    --primary-color: #1a3a52;
    --secondary-color: #d4af37;
    --accent-color: #fff;
    --dark-bg: #0f1f2e;
    --light-bg: #f5f5f5;
    --text-dark: #2c3e50;
    --text-light: #ffffff;
    --shadow: 0 4px 15px rgba(0, 0, 0, 0.1);
    --shadow-lg: 0 20px 40px rgba(0, 0, 0, 0.15);
    --shadow-sm: 0 2px 8px rgba(0, 0, 0, 0.08);
    --transition: all 0.3s ease;
    --transition-fast: all 0.15s ease;
    --radius: 8px;
}

body {
    font-family: 'Segoe UI', Tahoma, Geneva, Verdana, sans-serif;
    background-color: #ffffff;
    color: var(--text-dark);
    line-height: 1.6;
}

.container {
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 20px;
}

/* =====================
   NAVBAR
   ===================== */
.navbar {
    background: linear-gradient(90deg, rgba(10,34,50,0.98), rgba(26,58,82,0.98));
    color: var(--text-light);
    padding: 15px 0;
    box-shadow: 0 6px 20px rgba(0, 0, 0, 0.08);
    position: sticky;
    top: 0;
    z-index: 1000;
    border-bottom: 1px solid rgba(255,255,255,0.04);
    backdrop-filter: blur(4px);
}

.navbar .container {
    display: flex;
    justify-content: space-between;
    align-items: center;
}

.logo {
    display: flex;
    align-items: center;
    gap: 12px;
    font-size: 22px;
    font-weight: 700;
    letter-spacing: -0.5px;
    transition: var(--transition-fast);
    color: var(--accent-color);
}

.logo:hover {
    transform: scale(1.03);
    color: var(--secondary-color);
}

.logo i {
    font-size: 28px;
    color: var(--secondary-color);
}

.nav-links {
    display: flex;
    gap: 35px;
    position: relative;
    transition: var(--transition);
    align-items: center;
}

.nav-links:hover {
    animation: soundWaveNav 0.8s ease-out;
}

.nav-links a {
    color: var(--text-dark);
    text-decoration: none;
    font-weight: 500;
    font-size: 13px;
    transition: var(--transition);
    padding: 8px 0;
    border-bottom: 2px solid transparent;
    position: relative;
    letter-spacing: 0.5px;
}

.nav-links a:hover {
    color: var(--secondary-color);
    border-bottom-color: var(--secondary-color);
}

@keyframes soundWaveNav {
    0% {
        text-shadow: 0 0 0 rgba(212, 175, 55, 0);
        filter: drop-shadow(0 0 0px rgba(212, 175, 55, 0.5));
    }
    50% {
        text-shadow: 0 0 8px rgba(212, 175, 55, 0.4);
        filter: drop-shadow(0 0 15px rgba(212, 175, 55, 0.6));
    }
    100% {
        text-shadow: 0 0 0 rgba(212, 175, 55, 0);
        filter: drop-shadow(0 0 0px rgba(212, 175, 55, 0));
    }
}

/* =====================
   HERO SECTION
   ===================== */
.hero {
    background: var(--primary-color);
    color: var(--text-light);
    padding: 0;
    text-align: center;
    position: relative;
    overflow: hidden;
    min-height: 360px;
    border: none;
    box-shadow: var(--shadow-sm);
}

.hero-slideshow-container {
    position: relative;
    width: 100%;
    height: 360px;
    background: var(--primary-color);
    border: none;
    box-sizing: border-box;
    box-shadow: 0 8px 30px rgba(10,20,30,0.08);
}

.hero-slide {
    display: none;
    width: 100%;
    height: 100%;
    position: relative;
}

.hero-slide.active {
    display: block;
}

.hero-slide img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    animation: fade 1s;
}

/* Keep logo in hero centered and proportional */
.hero-slide img.hero-logo {
    width: 100%;
    height: 100%;
    object-fit: cover;
    display: block;
}

.hero-content {
    position: absolute;
    top: 50%;
    left: 0;
    transform: translateY(-50%);
    z-index: 10;
    width: 100%;
    padding: 0 40px;
    text-align: left;
}

.hero-text-left {
    max-width: 500px;
}

.hero-content h1 {
    font-size: 48px;
    margin-bottom: 15px;
    font-weight: 700;
    letter-spacing: -1px;
    color: #ffffff;
    text-shadow: 4px 4px 12px rgba(0, 0, 0, 0.8), 2px 2px 6px rgba(0, 0, 0, 0.8);
    margin: 0;
}

.hero-content p {
    font-size: 18px;
    font-weight: 300;
    letter-spacing: 2px;
    color: #ffffff;
    text-shadow: 3px 3px 10px rgba(0, 0, 0, 0.8), 1px 1px 4px rgba(0, 0, 0, 0.8);
    margin: 10px 0 0 0;
}

@keyframes slideInDown {
    from {
        opacity: 0;
        transform: translate(-50%, -60%);
    }
    to {
        opacity: 1;
        transform: translate(-50%, -50%);
    }
}

@keyframes fade {
    from {
        opacity: 0.7;
    }
    to {
        opacity: 1;
    }
}

.hero-prev, .hero-next {
    cursor: pointer;
    position: absolute;
    top: 50%;
    width: auto;
    margin-top: -22px;
    padding: 16px;
    color: white;
    font-weight: bold;
    font-size: 18px;
    transition: 0.3s ease;
    border-radius: 3px;
    background-color: rgba(0, 0, 0, 0.5);
    user-select: none;
    z-index: 20;
}

.hero-next {
    right: 0;
}

.hero-prev {
    left: 0;
}

.hero-prev:hover, .hero-next:hover {
    background-color: var(--secondary-color);
    color: var(--primary-color);
}

.hero-dots-container {
    position: absolute;
    bottom: 15px;
    left: 50%;
    transform: translateX(-50%);
    z-index: 20;
    display: flex;
    justify-content: center;
    gap: 10px;
}

.hero-dot {
    cursor: pointer;
    height: 12px;
    width: 12px;
    background-color: rgba(255, 255, 255, 0.5);
    border-radius: 50%;
    display: inline-block;
    transition: background-color 0.3s ease;
}

.hero-dot.active {
    background-color: var(--secondary-color);
}


/* =====================
   MAIN CONTENT
   ===================== */
main {
    padding: 60px 0;
    background-color: #ffffff;
}

/* =====================
   PLAYER SECTION
   ===================== */
.player-section {
    margin-bottom: 80px;
}

.player-top {
    display: flex;
    justify-content: flex-end;
    gap: 20px;
    align-items: flex-start;
}

.stream-link {
    flex: 1;
}

.listen-btn {
    display: inline-block;
    background: var(--secondary-color);
    color: var(--primary-color);
    padding: 12px 25px;
    border-radius: var(--radius);
    text-decoration: none;
    font-weight: 700;
    font-size: 13px;
    letter-spacing: 1px;
    transition: var(--transition);
    box-shadow: var(--shadow);
}

.listen-btn:hover {
    transform: translateY(-2px);
    box-shadow: var(--shadow-lg);
}

.listen-btn i {
    margin-right: 8px;
}

.player-card {
    background: white;
    border-radius: var(--radius);
    padding: 30px 25px;
    box-shadow: var(--shadow-lg);
    max-width: 350px;
    border-top: 4px solid var(--secondary-color);
}

.now-playing {
    display: flex;
    align-items: center;
    gap: 15px;
    margin-bottom: 0;
}

.album-art {
    width: 60px;
    height: 60px;
    background: var(--primary-color);
    border-radius: 4px;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 32px;
    color: var(--secondary-color);
    flex-shrink: 0;
    box-shadow: var(--shadow);
}

.track-info h3 {
    color: var(--secondary-color);
    font-size: 11px;
    font-weight: 600;
    text-transform: uppercase;
    letter-spacing: 1px;
    margin-bottom: 8px;
}

.station-name {
    font-size: 14px;
    font-weight: 700;
    color: var(--primary-color);
    margin-bottom: 3px;
}

.track-title {
    font-size: 12px;
    color: #666;
}

/* =====================
   SLIDESHOW STYLES
   ===================== */
.slideshow-container {
    position: relative;
    width: 100%;
    background-color: #f1f1f1;
    border-radius: var(--radius);
    margin-top: 30px;
    overflow: hidden;
}

.slide {
    display: none;
    width: 100%;
    animation: fade 1s;
}

.slide img {
    width: 100%;
    height: auto;
    display: block;
    border-radius: var(--radius);
}

.slide.active {
    display: block;
}

@keyframes fade {
    from {
        opacity: 0.4;
    }
    to {
        opacity: 1;
    }
}

.prev, .next {
    cursor: pointer;
    position: absolute;
    top: 50%;
    width: auto;
    margin-top: -22px;
    padding: 16px;
    color: white;
    font-weight: bold;
    font-size: 18px;
    transition: 0.3s ease;
    border-radius: 3px;
    background-color: rgba(0, 0, 0, 0.5);
    user-select: none;
}

.next {
    right: 0;
}

.prev {
    left: 0;
}

.prev:hover, .next:hover {
    background-color: var(--secondary-color);
    color: var(--primary-color);
}

.dots-container {
    text-align: center;
    padding: 15px;
    background: white;
}

.dot {
    cursor: pointer;
    height: 12px;
    width: 12px;
    margin: 0 5px;
    background-color: #bbb;
    border-radius: 50%;
    display: inline-block;
    transition: background-color 0.3s ease;
}

.dot.active {
    background-color: var(--secondary-color);
}

.player-controls {
    margin-bottom: 30px;
    padding: 30px 0;
    border-top: 1px solid #eee;
    border-bottom: 1px solid #eee;
}

.player-controls audio {
    width: 100%;
    height: 50px;
    border-radius: 4px;
}

.stream-input {
    display: flex;
    gap: 12px;
}

.stream-input input {
    flex: 1;
    padding: 12px 16px;
    border: 1px solid #ddd;
    border-radius: 4px;
    font-size: 14px;
    transition: var(--transition);
}

.stream-input input:focus {
    outline: none;
    border-color: var(--secondary-color);
    box-shadow: 0 0 0 3px rgba(212, 175, 55, 0.1);
}

.stream-input button {
    padding: 12px 24px;
    background: var(--primary-color);
    color: white;
    border: none;
    border-radius: 4px;
    font-weight: 700;
    cursor: pointer;
    transition: var(--transition);
    box-shadow: var(--shadow-sm);
}

.stream-input button:hover {
    background: var(--dark-bg);
    transform: translateY(-2px);
    box-shadow: var(--shadow);
}

/* =====================
   SCHEDULE SECTION
   ===================== */
.schedule-section {
    margin-bottom: 80px;
    background-color: var(--light-bg);
    padding: 60px 20px;
}

.schedule-section h2 {
    text-align: center;
    font-size: 36px;
    margin-bottom: 50px;
    color: var(--primary-color);
    font-weight: 700;
}

.schedule-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
    gap: 25px;
}

.schedule-card {
    background: white;
    border-radius: var(--radius);
    padding: 30px;
    box-shadow: var(--shadow);
    transition: var(--transition);
    border-left: 4px solid var(--secondary-color);
    cursor: pointer;
}

.schedule-card:hover {
    transform: translateY(-8px);
    box-shadow: var(--shadow-lg);
}

.schedule-card .time {
    font-size: 16px;
    font-weight: 700;
    color: var(--secondary-color);
    margin-bottom: 10px;
    text-transform: uppercase;
    letter-spacing: 1px;
}

.schedule-card .program-name {
    font-size: 18px;
    font-weight: 700;
    color: var(--primary-color);
    margin-bottom: 8px;
}

.schedule-card .program-desc {
    font-size: 14px;
    color: #666;
    line-height: 1.5;
}

/* =====================
   ABOUT SECTION
   ===================== */
.about-section {
    background: #ffffff;
    padding: 60px 20px;
    margin-bottom: 60px;
}

.about-section h2 {
    font-size: 36px;
    margin-bottom: 40px;
    color: var(--primary-color);
    text-align: center;
    font-weight: 700;
}

.about-content {
    max-width: 750px;
    margin: 0 auto 50px;
    text-align: center;
    color: var(--text-dark);
    line-height: 1.8;
    font-size: 15px;
}

.about-features {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
    gap: 30px;
    margin-top: 40px;
}

.feature {
    background: var(--light-bg);
    padding: 35px 25px;
    border-radius: var(--radius);
    text-align: center;
    transition: var(--transition);
}

.feature:hover {
    background: white;
    box-shadow: var(--shadow);
    transform: translateY(-5px);
}

.feature i {
    font-size: 40px;
    color: var(--secondary-color);
    margin-bottom: 20px;
    display: inline-block;
}

.feature h3 {
    font-size: 18px;
    margin-bottom: 10px;
    color: var(--primary-color);
    font-weight: 700;
}

.feature p {
    font-size: 14px;
    color: #666;
    line-height: 1.6;
}

/* =====================
   FOOTER
   ===================== */

   h4{
    text-align: center;
   }
.footer {
    background: var(--primary-color);
    color: var(--text-light);
    padding: 50px 0 20px;
    margin-top: 60px;
}
 .footer-bottom {
    text-align: center;
    padding-top: 20px;
    border-top: 1px solid rgba(255, 255, 255, 0.1);
    color: rgba(255, 255, 255, 0.7);
 }
    .footer-bottom p {
        margin: 0;
        font-weight: 600;
        color: rgba(255, 255, 255, 0.95);
        font-size: 14px;
    }
    .footer-bottom a {
        color: rgba(255, 255, 255, 0.95);
        text-decoration: none;
    }
    .footer-bottom a:hover {
        color: var(--secondary-color);
    }

.footer-content {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
    gap: 40px;
    margin-bottom: 30px;
}

.footer-section h4 {
    font-size: 15px;
    margin-bottom: 15px;
    color: var(--secondary-color);
    text-transform: uppercase;
    letter-spacing: 1px;
    font-weight: 700;
}

.footer-section:nth-child(1) {
    text-align: left;
}

.footer-section:nth-child(1) h4 {
    text-align: left;
}

.footer-section:has(.social-links) h4 {
    text-align: center;
}

.footer-section:nth-child(3) {
    text-align: right;
}

.footer-section:nth-child(3) h4 {
    text-align: right;
}

.footer-section ul {
    list-style: none;
}

.footer-section ul li {
    margin-bottom: 10px;
}

.footer-section a {
    color: var(--text-light);
    text-decoration: none;
    transition: var(--transition);
    font-size: 14px;
}

.footer-section a:hover {
    color: var(--secondary-color);
}
.social-links {
    display: flex;
    gap: 15px;
    font-size: 20px;
    justify-content: center;
}

.nav-links a {
    color: rgba(255,255,255,0.92);
    text-decoration: none;
    font-weight: 600;
    font-size: 13px;
    transition: var(--transition);
    padding: 8px 0;
    border-bottom: 2px solid transparent;
    position: relative;
    letter-spacing: 0.5px;
}
.nav-links a:hover {
    color: var(--secondary-color);
    border-bottom-color: var(--secondary-color);
}

/* =====================
   RESPONSIVE DESIGN
   ===================== */

/* Tablet Design (768px and below) */
@media (max-width: 768px) {
    .container {
        padding: 0 15px;
    }

    .navbar .container {
        padding: 0 15px;
    }

    .nav-links {
        gap: 12px;
        font-size: 13px;
    }

    .nav-links a {
        padding: 6px 10px;
    }

    .hero {
        padding: 70px 20px;
    }

    .hero-content h1 {
        font-size: 40px;
        margin-bottom: 15px;
    }

    .hero-content p {
        font-size: 16px;
    }

    .player-section {
        margin-bottom: 60px;
    }

    .player-card {
        padding: 35px 25px;
        max-width: 100%;
    }

    .now-playing {
        flex-direction: column;
        text-align: center;
        gap: 20px;
        margin-bottom: 30px;
    }

    .album-art {
        width: 90px;
        height: 90px;
        font-size: 40px;
    }

    .track-info h3 {
        font-size: 11px;
    }

    .station-name {
        font-size: 18px;
    }

    .track-title {
        font-size: 13px;
    }

    .stream-input {
        gap: 10px;
    }

    .stream-input button {
        padding: 10px 20px;
        font-size: 13px;
    }

    .schedule-section {
        padding: 50px 15px;
    }

    .schedule-section h2 {
        font-size: 30px;
        margin-bottom: 35px;
    }

    .schedule-grid {
        grid-template-columns: repeat(2, 1fr);
        gap: 20px;
    }

    .schedule-card {
        padding: 25px;
    }

    .schedule-card .time {
        font-size: 14px;
    }

    .schedule-card .program-name {
        font-size: 16px;
    }

    .schedule-card .program-desc {
        font-size: 13px;
    }

    .about-section {
        padding: 50px 15px;
    }

    .about-section h2 {
        font-size: 30px;
        margin-bottom: 30px;
    }

    .about-content {
        font-size: 14px;
        margin-bottom: 40px;
    }

    .about-features {
        grid-template-columns: repeat(2, 1fr);
        gap: 20px;
    }

    .feature {
        padding: 30px 20px;
    }

    .feature i {
        font-size: 35px;
    }

    .feature h3 {
        font-size: 16px;
    }

    .feature p {
        font-size: 13px;
    }

    .footer-content {
        grid-template-columns: 1fr;
        gap: 30px;
    }

    .footer-section h4 {
        font-size: 13px;
    }

    .footer-section a {
        font-size: 13px;
    }

    .social-links {
        font-size: 18px;
        gap: 12px;
    }

    .social-links a {
        width: 40px;
        height: 40px;
    }
}

/* Mobile Design (480px and below) */
@media (max-width: 480px) {
    .container {
        padding: 0 12px;
    }

    .navbar {
        padding: 15px 0;
    }

    .navbar .container {
        flex-direction: column;
        gap: 12px;
        padding: 0 12px;
    }

    .logo {
        font-size: 18px;
        gap: 8px;
    }

    .logo i {
        font-size: 24px;
    }

    .nav-links {
        width: 100%;
        justify-content: center;
        gap: 8px;
        font-size: 11px;
        flex-wrap: wrap;
    }

    

    .nav-links a {
        padding: 5px 8px;
        font-size: 11px;
    }

    .hero {
        padding: 50px 15px;
    }

    .hero-content h1 {
        font-size: 28px;
        margin-bottom: 12px;
    }

    .hero-content p {
        font-size: 14px;
        letter-spacing: 0.5px;
    }

    .player-section {
        margin-bottom: 50px;
    }

    .player-card {
        padding: 20px 15px;
        max-width: 100%;
    }

    .now-playing {
        flex-direction: column;
        text-align: center;
        gap: 15px;
        margin-bottom: 20px;
    }

    .album-art {
        width: 70px;
        height: 70px;
        font-size: 32px;
    }

    .track-info h3 {
        font-size: 10px;
        margin-bottom: 5px;
    }

    .station-name {
        font-size: 16px;
        margin-bottom: 3px;
    }

    .track-title {
        font-size: 12px;
    }

    .player-controls {
        margin-bottom: 20px;
        padding: 20px 0;
    }

    .player-controls audio {
        height: 40px;
    }

    .stream-input {
        flex-direction: column;
        gap: 10px;
    }

    .stream-input input {
        padding: 10px 12px;
        font-size: 13px;
    }

    .stream-input button {
        padding: 10px 16px;
        font-size: 12px;
        font-weight: 600;
    }

    .schedule-section {
        padding: 40px 12px;
        margin-bottom: 60px;
    }

    .schedule-section h2 {
        font-size: 24px;
        margin-bottom: 25px;
    }

    .schedule-grid {
        grid-template-columns: 1fr;
        gap: 15px;
    }

    .schedule-card {
        padding: 20px;
        border-left: 3px solid var(--secondary-color);
    }

    .schedule-card .time {
        font-size: 13px;
        margin-bottom: 8px;
    }

    .schedule-card .program-name {
        font-size: 15px;
        margin-bottom: 6px;
    }

    .schedule-card .program-desc {
        font-size: 12px;
        line-height: 1.4;
    }

    .about-section {
        padding: 40px 12px;
        margin-bottom: 50px;
    }

    .about-section h2 {
        font-size: 24px;
        margin-bottom: 25px;
    }

    .about-content {
        font-size: 13px;
        margin-bottom: 30px;
        line-height: 1.6;
    }

    .about-features {
        grid-template-columns: 1fr;
        gap: 15px;
    }

    .feature {
        padding: 25px 15px;
    }

    .feature i {
        font-size: 32px;
        margin-bottom: 15px;
    }

    .feature h3 {
        font-size: 15px;
        margin-bottom: 8px;
    }

    .feature p {
        font-size: 12px;
        line-height: 1.5;
    }

    .footer {
        padding: 40px 0 15px;
        margin-top: 50px;
    }

    .footer-content {
        grid-template-columns: 1fr;
        gap: 25px;
        margin-bottom: 20px;
    }

    .footer-section h4 {
        font-size: 12px;
        margin-bottom: 12px;
    }

    .footer-section ul li {
        margin-bottom: 8px;
    }

    .footer-section a {
        font-size: 12px;
    }

    .social-links {
        font-size: 18px;
        gap: 10px;
    }

    .social-links a {
        width: 35px;
        height: 35px;
    }

    .footer-bottom {
        padding-top: 15px;
        font-size: 11px;
    }

    main {
        padding: 30px 0;
    }
}

/* Large Desktop (1200px and above) */
@media (min-width: 1200px) {
    .container {
        max-width: 1200px;
    }

    .schedule-grid {
        grid-template-columns: repeat(3, 1fr);
    }

    .about-features {
        grid-template-columns: repeat(3, 1fr);
    }

    .footer-content {
        grid-template-columns: repeat(3, 1fr);
    }
}
