@import url('https://fonts.googleapis.com/css2?family=Bebas+Neue&family=Source+Sans+Pro:wght@300;400;600;700&display=swap');

:root {
    --radio-red: #E63946;
    --radio-dark: #1D3557;
    --radio-blue: #457B9D;
    --radio-light: #A8DADC;
    --radio-cream: #F1FAEE;
    --radio-orange: #F77F00;
}

* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}


.player-station-logo {
  height: 70px;   /* try 65–75 */
  width: auto;
  object-fit: contain;
  margin-right: 10px;
  filter: drop-shadow(0 4px 12px rgba(255,140,0,0.25));
}

body {
    font-family: 'Source Sans Pro', sans-serif;
    background: linear-gradient(135deg, var(--radio-dark) 0%, #0a1929 100%);
    color: var(--radio-cream);
    min-height: 100vh;
  padding-top: 190px;   /* try 180–210 */
}

/* Static Radio Player - Stays at top */
.static-player {
    position: fixed;
    top: 0;
    left: 0;
    right: 0;
    background: linear-gradient(135deg, rgba(29, 53, 87, 0.98) 0%, rgba(10, 25, 41, 0.98) 100%);
    backdrop-filter: blur(10px);
    border-bottom: 3px solid var(--radio-red);
    z-index: 1000;
    box-shadow: 0 4px 20px rgba(0, 0, 0, 0.3);
}

.player-container {
    max-width: 1400px;
    margin: 0 auto;
    padding: 15px 20px;
    display: flex;
    justify-content: space-between;
    align-items: center;
    gap: 20px;
}

.player-left {
  display: flex;
  align-items: center;
  gap: 10px;
}

.player-album-art {
    width: 60px;
    height: 60px;
    border-radius: 8px;
    object-fit: cover;
    border: 2px solid var(--radio-light);
}

.player-info {
    display: flex;
    flex-direction: column;
    gap: 2px;
}

.player-now-playing {
    font-size: 0.7rem;
    letter-spacing: 2px;
    color: var(--radio-orange);
    text-transform: uppercase;
    font-weight: 600;
}

.player-song {
    font-size: 1.1rem;
    font-weight: 700;
    color: var(--radio-cream);
}

.player-artist {
    font-size: 0.9rem;
    color: var(--radio-light);
}

.player-right {
    display: flex;
    align-items: center;
    gap: 20px;
}

.current-presenter {
    display: flex;
    align-items: center;
    gap: 8px;
}

.presenter-label {
    font-size: 0.75rem;
    letter-spacing: 1px;
    color: var(--radio-orange);
    font-weight: 600;
}

.presenter-name {
    font-size: 1rem;
    color: var(--radio-cream);
    font-weight: 600;
}

.player-controls-compact {
    display: flex;
    align-items: center;
    gap: 15px;
}

.player-btn {
    width: 45px;
    height: 45px;
    border-radius: 50%;
    background: linear-gradient(135deg, var(--radio-red), var(--radio-orange));
    border: none;
    color: white;
    font-size: 18px;
    cursor: pointer;
    display: flex;
    align-items: center;
    justify-content: center;
    transition: all 0.3s ease;
    box-shadow: 0 3px 15px rgba(230, 57, 70, 0.4);
}

.player-btn:hover {
    transform: scale(1.1);
    box-shadow: 0 5px 20px rgba(230, 57, 70, 0.6);
}

.volume-compact {
    display: flex;
    align-items: center;
    gap: 8px;
}

.volume-icon {
    font-size: 1.2rem;
}

.volume-slider-compact {
    width: 100px;
    height: 4px;
    border-radius: 2px;
    background: rgba(168, 218, 220, 0.3);
    outline: none;
    -webkit-appearance: none;
}

.volume-slider-compact::-webkit-slider-thumb {
    -webkit-appearance: none;
    width: 14px;
    height: 14px;
    border-radius: 50%;
    background: var(--radio-red);
    cursor: pointer;
}

.live-badge {
    display: flex;
    align-items: center;
    gap: 6px;
    background: rgba(230, 57, 70, 0.2);
    padding: 6px 12px;
    border-radius: 15px;
    border: 1px solid var(--radio-red);
    font-size: 0.8rem;
    font-weight: 600;
}

.live-dot-small {
    width: 8px;
    height: 8px;
    border-radius: 50%;
    background: var(--radio-red);
    animation: blink 1.5s ease-in-out infinite;
}

@keyframes blink {
    0%, 100% { opacity: 1; }
    50% { opacity: 0.3; }
}

/* Navigation */
.main-nav {
    position: fixed;
    top: 120px;   /* 110–130 is the sweet spot */
    left: 0;
    right: 0;
    background: rgba(29, 53, 87, 0.95);
    backdrop-filter: blur(10px);
    border-bottom: 1px solid rgba(168, 218, 220, 0.2);
    z-index: 999;
}

.nav-container {
    max-width: 1400px;
    margin: 0 auto;
    padding: 0 20px;
    display: flex;
  justify-content: center;
    align-items: center;
}

.nav-logo img {
    height: 50px;
    padding: 10px 0;
}

.nav-menu {
    list-style: none;
    display: flex;
    gap: 30px;
    align-items: center;
}

.nav-menu a {
    color: var(--radio-cream);
    text-decoration: none;
    font-weight: 600;
    font-size: 0.95rem;
    transition: color 0.3s ease;
    position: relative;
}

.nav-menu a:hover,
.nav-menu a.active {
    color: var(--radio-orange);
}

.nav-menu a.active::after {
    content: '';
    position: absolute;
    bottom: -10px;
    left: 0;
    right: 0;
    height: 2px;
    background: var(--radio-orange);
}

.nav-toggle {
    display: none;
    flex-direction: column;
    gap: 5px;
    cursor: pointer;
}

.nav-toggle span {
    width: 25px;
    height: 3px;
    background: var(--radio-cream);
    border-radius: 2px;
    transition: all 0.3s ease;
}

/* Page Container */
.page-container {
    max-width: 1400px;
    margin: 0 auto;
    padding: 20px;
}

/* Hero Section */
.hero {
    text-align: center;
    padding: 60px 20px;
    position: relative;
}

.hero::before {
    content: '';
    position: absolute;
    top: 0;
    left: 50%;
    transform: translateX(-50%);
    width: 500px;
    height: 500px;
    background: radial-gradient(circle, rgba(230, 57, 70, 0.15) 0%, transparent 70%);
    pointer-events: none;
}

.hero-content {
    position: relative;
    z-index: 1;
}

.hero-logo {
    max-width: 400px;
    margin: 0 auto 20px;
    filter: drop-shadow(0 10px 30px rgba(230, 57, 70, 0.3));
}

.hero-title {
    font-family: 'Bebas Neue', sans-serif;
    font-size: 3rem;
    letter-spacing: 4px;
    color: var(--radio-orange);
    margin-bottom: 15px;
}

.hero-subtitle {
    font-size: 1.2rem;
    color: var(--radio-light);
    font-weight: 300;
}

/* Content Grid */
.content-grid {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 20px;
    margin-top: 30px;
}

.content-card {
    background: rgba(29, 53, 87, 0.5);
    backdrop-filter: blur(10px);
    border: 2px solid rgba(168, 218, 220, 0.2);
    border-radius: 15px;
    padding: 30px;
}

.content-card.full-width {
    grid-column: 1 / -1;
}

.card-title {
    font-family: 'Bebas Neue', sans-serif;
    font-size: 2rem;
    letter-spacing: 2px;
    color: var(--radio-orange);
    margin-bottom: 25px;
    display: flex;
    align-items: center;
    gap: 10px;
}

.card-title::before {
    content: '';
    width: 4px;
    height: 35px;
    background: linear-gradient(to bottom, var(--radio-red), var(--radio-orange));
    border-radius: 2px;
}

/* Recently Played */
.recently-played-grid {
    display: grid;
    grid-template-columns: repeat(auto-fill, minmax(150px, 1fr));
    gap: 20px;
}

.track-card {
    background: rgba(10, 25, 41, 0.6);
    border-radius: 10px;
    padding: 15px;
    transition: transform 0.3s ease;
    border: 1px solid rgba(168, 218, 220, 0.1);
}

.track-card:hover {
    transform: translateY(-5px);
    border-color: var(--radio-orange);
}

.track-art {
    width: 100%;
    aspect-ratio: 1;
    border-radius: 8px;
    object-fit: cover;
    margin-bottom: 10px;
    border: 2px solid rgba(168, 218, 220, 0.2);
}

.track-name {
    font-weight: 700;
    font-size: 0.95rem;
    color: var(--radio-cream);
    margin-bottom: 5px;
    overflow: hidden;
    text-overflow: ellipsis;
    white-space: nowrap;
}

.track-artist {
    font-size: 0.85rem;
    color: var(--radio-light);
    overflow: hidden;
    text-overflow: ellipsis;
    white-space: nowrap;
}

.track-time {
    font-size: 0.75rem;
    color: var(--radio-light);
    opacity: 0.6;
    margin-top: 5px;
}

/* Upcoming Shows */
.upcoming-shows-list {
    display: flex;
    flex-direction: column;
    gap: 15px;
}

.show-item {
    background: rgba(10, 25, 41, 0.6);
    border-radius: 10px;
    padding: 20px;
    border-left: 4px solid var(--radio-orange);
    display: flex;
    justify-content: space-between;
    align-items: center;
    transition: all 0.3s ease;
}

.show-item:hover {
    background: rgba(10, 25, 41, 0.8);
    transform: translateX(5px);
}

.show-info h3 {
    font-size: 1.2rem;
    color: var(--radio-cream);
    margin-bottom: 5px;
}

.show-presenter {
    font-size: 0.9rem;
    color: var(--radio-light);
    margin-bottom: 8px;
}

.show-time {
    font-size: 0.85rem;
    color: var(--radio-orange);
    font-weight: 600;
}

/* Quick Info */
.quick-info {
    display: flex;
    flex-direction: column;
    gap: 20px;
}

.info-item {
    display: flex;
    gap: 15px;
    padding: 15px;
    background: rgba(10, 25, 41, 0.6);
    border-radius: 10px;
    border: 1px solid rgba(168, 218, 220, 0.1);
}

.info-icon {
    font-size: 2rem;
    flex-shrink: 0;
}

.info-content h3 {
    font-size: 1.1rem;
    color: var(--radio-cream);
    margin-bottom: 5px;
}

.info-content p {
    font-size: 0.9rem;
    color: var(--radio-light);
    line-height: 1.5;
}

/* Loading */
.loading {
    text-align: center;
    padding: 40px;
    color: var(--radio-light);
    font-style: italic;
}

/* Footer */
.main-footer {
    background: rgba(29, 53, 87, 0.8);
    margin-top: 60px;
    padding: 40px 20px 20px;
    border-top: 2px solid var(--radio-red);
}

.footer-content {
    max-width: 1400px;
    margin: 0 auto;
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(200px, 1fr));
    gap: 30px;
    margin-bottom: 30px;
}

.footer-logo {
    max-width: 150px;
    margin-bottom: 15px;
}

.footer-section h3 {
    font-family: 'Bebas Neue', sans-serif;
    font-size: 1.3rem;
    color: var(--radio-orange);
    margin-bottom: 15px;
    letter-spacing: 1px;
}

.footer-section ul {
    list-style: none;
}

.footer-section ul li {
    margin-bottom: 8px;
}

.footer-section a {
    color: var(--radio-light);
    text-decoration: none;
    transition: color 0.3s ease;
}

.footer-section a:hover {
    color: var(--radio-orange);
}

.footer-section p {
    color: var(--radio-light);
    margin-bottom: 8px;
    font-size: 0.95rem;
}

.footer-bottom {
    text-align: center;
    padding-top: 20px;
    border-top: 1px solid rgba(168, 218, 220, 0.2);
    color: var(--radio-light);
    font-size: 0.9rem;
}

/* Schedule Page */
.schedule-grid {
    display: grid;
    gap: 15px;
}

.day-schedule {
    background: rgba(10, 25, 41, 0.6);
    border-radius: 10px;
    padding: 20px;
    border: 2px solid rgba(168, 218, 220, 0.1);
}

.day-title {
    font-family: 'Bebas Neue', sans-serif;
    font-size: 1.5rem;
    color: var(--radio-orange);
    margin-bottom: 15px;
    letter-spacing: 2px;
}

.time-slot {
    display: flex;
    align-items: center;
    padding: 15px;
    margin-bottom: 10px;
    background: rgba(29, 53, 87, 0.5);
    border-radius: 8px;
    border-left: 3px solid var(--radio-red);
}

.time-slot-time {
    font-weight: 700;
    color: var(--radio-orange);
    min-width: 120px;
}

.time-slot-show {
    flex: 1;
    font-weight: 600;
    color: var(--radio-cream);
}

.time-slot-presenter {
    color: var(--radio-light);
    font-size: 0.9rem;
}

/* Team Page */
.team-grid {
    display: grid;
    grid-template-columns: repeat(auto-fill, minmax(250px, 1fr));
    gap: 25px;
}

.team-member {
    background: rgba(10, 25, 41, 0.6);
    border-radius: 15px;
    padding: 25px;
    text-align: center;
    border: 2px solid rgba(168, 218, 220, 0.1);
    transition: all 0.3s ease;
}

.team-member:hover {
    transform: translateY(-5px);
    border-color: var(--radio-orange);
}

.member-photo {
    width: 120px;
    height: 120px;
    border-radius: 50%;
    margin: 0 auto 15px;
    border: 3px solid var(--radio-orange);
    object-fit: cover;
}

.member-name {
    font-size: 1.3rem;
    font-weight: 700;
    color: var(--radio-cream);
    margin-bottom: 5px;
}

.member-role {
    font-size: 0.95rem;
    color: var(--radio-orange);
    margin-bottom: 15px;
    font-weight: 600;
}

.member-bio {
    font-size: 0.9rem;
    color: var(--radio-light);
    line-height: 1.6;
}

/* Request Form */
.request-form {
    max-width: 600px;
    margin: 0 auto;
}

.form-group {
    margin-bottom: 20px;
}

.form-group label {
    display: block;
    margin-bottom: 8px;
    color: var(--radio-cream);
    font-weight: 600;
}

.form-group input,
.form-group textarea,
.form-group select {
    width: 100%;
    padding: 12px;
    border-radius: 8px;
    border: 2px solid rgba(168, 218, 220, 0.2);
    background: rgba(10, 25, 41, 0.6);
    color: var(--radio-cream);
    font-family: 'Source Sans Pro', sans-serif;
    font-size: 1rem;
}

.form-group textarea {
    resize: vertical;
    min-height: 100px;
}

.form-group input:focus,
.form-group textarea:focus,
.form-group select:focus {
    outline: none;
    border-color: var(--radio-orange);
}

.submit-btn {
    background: linear-gradient(135deg, var(--radio-red), var(--radio-orange));
    color: white;
    border: none;
    padding: 15px 40px;
    border-radius: 25px;
    font-size: 1.1rem;
    font-weight: 700;
    cursor: pointer;
    transition: all 0.3s ease;
    box-shadow: 0 5px 20px rgba(230, 57, 70, 0.4);
}

.submit-btn:hover {
    transform: translateY(-2px);
    box-shadow: 0 8px 30px rgba(230, 57, 70, 0.6);
}

/* News/Traffic Items */
.news-item,
.traffic-item {
    background: rgba(10, 25, 41, 0.6);
    border-radius: 10px;
    padding: 20px;
    margin-bottom: 15px;
    border-left: 4px solid var(--radio-orange);
}

.news-headline {
    font-size: 1.2rem;
    font-weight: 700;
    color: var(--radio-cream);
    margin-bottom: 8px;
}

.news-time,
.traffic-time {
    font-size: 0.85rem;
    color: var(--radio-light);
    opacity: 0.7;
    margin-bottom: 10px;
}

.news-summary {
    font-size: 1rem;
    color: var(--radio-light);
    line-height: 1.6;
}

.traffic-status {
    display: inline-block;
    padding: 5px 15px;
    border-radius: 15px;
    font-size: 0.8rem;
    font-weight: 700;
    text-transform: uppercase;
    letter-spacing: 1px;
    margin-bottom: 10px;
}

.status-clear {
    background: rgba(39, 174, 96, 0.2);
    color: #2ecc71;
    border: 1px solid #2ecc71;
}

.status-moderate {
    background: rgba(243, 156, 18, 0.2);
    color: #f39c12;
    border: 1px solid #f39c12;
}

.status-heavy {
    background: rgba(230, 57, 70, 0.2);
    color: var(--radio-red);
    border: 1px solid var(--radio-red);
}

.traffic-location {
    font-size: 1.1rem;
    font-weight: 700;
    color: var(--radio-cream);
    margin-bottom: 8px;
}

.traffic-description {
    font-size: 0.95rem;
    color: var(--radio-light);
    line-height: 1.6;
}

/* About Page */
.about-section {
    margin-bottom: 40px;
}

.about-section h2 {
    font-family: 'Bebas Neue', sans-serif;
    font-size: 2.5rem;
    color: var(--radio-orange);
    margin-bottom: 20px;
    letter-spacing: 2px;
}

.about-section p {
    font-size: 1.1rem;
    color: var(--radio-light);
    line-height: 1.8;
    margin-bottom: 15px;
}

/* Responsive */
@media (max-width: 1024px) {
    .content-grid {
        grid-template-columns: 1fr;
    }
    
    .recently-played-grid {
        grid-template-columns: repeat(auto-fill, minmax(120px, 1fr));
    }
}

@media (max-width: 768px) {
    body {
        padding-top: 200px;
    }
    
    .player-container {
        flex-direction: column;
        gap: 15px;
    }
    
    .player-right {
        flex-direction: column;
        width: 100%;
        gap: 10px;
    }
    
    .player-controls-compact {
        width: 100%;
        justify-content: center;
    }
    
    .nav-menu {
        display: none;
        position: absolute;
        top: 70px;
        left: 0;
        right: 0;
        background: rgba(29, 53, 87, 0.98);
        flex-direction: column;
        padding: 20px;
        gap: 15px;
    }
    
    .nav-menu.active {
        display: flex;
    }
    
    .nav-toggle {
        display: flex;
    }
    
    .hero-logo {
        max-width: 300px;
    }
    
    .hero-title {
        font-size: 2rem;
    }
    
    .recently-played-grid {
        grid-template-columns: repeat(auto-fill, minmax(100px, 1fr));
    }
    
    .team-grid {
        grid-template-columns: 1fr;
    }
}