/* Birdhill Radio Website - Irish Country Theme */
:root {
    /* Irish Country Radio Colors */
    --primary-green: #228B22;        /* Forest Green */
    --secondary-green: #32CD32;     /* Lime Green */
    --accent-gold: #FFD700;         /* Gold */
    --warm-brown: #8B4513;          /* Saddle Brown */
    --deep-red: #DC143C;            /* Crimson */
    --royal-blue: #4169E1;          /* Royal Blue */
    --cream: #F5F5DC;               /* Beige */
    --dark-brown: #654321;          /* Dark Brown */
    --light-brown: #DEB887;         /* Burlywood */
    
    /* Text Colors */
    --text-primary: #2F4F2F;        /* Dark Forest Green */
    --text-secondary: #556B2F;       /* Dark Olive Green */
    --text-light: #F0F8F0;          /* Light Green */
    
    /* Background Colors */
    --bg-primary: #F5F5DC;          /* Cream */
    --bg-secondary: #FFF8DC;        /* Cornsilk */
    --bg-card: #FFFFFF;             /* White */
    --bg-dark: #2F4F2F;             /* Dark Forest Green */
    
    /* Border Colors */
    --border-primary: #8B4513;      /* Saddle Brown */
    --border-secondary: #DEB887;    /* Burlywood */
    --border-light: #F5DEB3;        /* Wheat */
}

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

body {
    font-family: 'Open Sans', sans-serif;
    background: var(--bg-primary);
    color: var(--text-primary);
    line-height: 1.6;
    overflow-x: hidden;
}

/* Valentine floating hearts */
.floating-hearts {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    pointer-events: none;
    z-index: 5;
    overflow: hidden;
}

.floating-hearts .heart {
    position: absolute;
    display: block;
    font-size: 1.5rem;
    opacity: 0.2;
    animation: float-heart 12s ease-in-out infinite;
    text-shadow: 0 0 20px rgba(233, 30, 99, 0.3);
    filter: drop-shadow(0 0 8px rgba(233, 30, 99, 0.2));
}

.floating-hearts .heart-1 { left: 5%; top: 10%; animation-delay: 0s; font-size: 1.2rem; color: #e91e63; }
.floating-hearts .heart-2 { left: 15%; top: 70%; animation-delay: 1s; font-size: 2rem; color: #f06292; }
.floating-hearts .heart-3 { left: 25%; top: 40%; animation-delay: 2s; font-size: 1.5rem; color: #c2185b; }
.floating-hearts .heart-4 { left: 40%; top: 85%; animation-delay: 0.5s; font-size: 1rem; color: #f8bbd9; }
.floating-hearts .heart-5 { left: 55%; top: 15%; animation-delay: 3s; font-size: 2.2rem; color: #e91e63; }
.floating-hearts .heart-6 { left: 65%; top: 55%; animation-delay: 1.5s; font-size: 1.3rem; color: #f48fb1; }
.floating-hearts .heart-7 { left: 75%; top: 30%; animation-delay: 2.5s; font-size: 1.8rem; color: #ad1457; }
.floating-hearts .heart-8 { left: 85%; top: 75%; animation-delay: 0.8s; font-size: 1.1rem; color: #f8bbd9; }
.floating-hearts .heart-9 { left: 92%; top: 45%; animation-delay: 3.5s; font-size: 1.6rem; color: #e91e63; }
.floating-hearts .heart-10 { left: 8%; top: 50%; animation-delay: 2.2s; font-size: 1.4rem; color: #f48fb1; }
.floating-hearts .heart-11 { left: 50%; top: 90%; animation-delay: 1.2s; font-size: 1.7rem; color: #c2185b; }
.floating-hearts .heart-12 { left: 33%; top: 25%; animation-delay: 2.8s; font-size: 1.9rem; color: #f06292; }

@keyframes float-heart {
    0%, 100% {
        transform: translate(0, 0) rotate(0deg) scale(1);
        opacity: 0.15;
    }
    25% {
        transform: translate(15px, -20px) rotate(5deg) scale(1.05);
        opacity: 0.25;
    }
    50% {
        transform: translate(-10px, 15px) rotate(-5deg) scale(0.95);
        opacity: 0.2;
    }
    75% {
        transform: translate(20px, 10px) rotate(3deg) scale(1.02);
        opacity: 0.22;
    }
}

/* Background Pattern */
body::before {
    content: '';
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: 
        radial-gradient(circle at 20% 20%, rgba(34, 139, 34, 0.05) 0%, transparent 50%),
        radial-gradient(circle at 80% 80%, rgba(255, 215, 0, 0.05) 0%, transparent 50%),
        radial-gradient(circle at 40% 60%, rgba(139, 69, 19, 0.05) 0%, transparent 50%);
    z-index: -1;
    pointer-events: none;
}

/* Navigation */
.navbar {
    background: var(--bg-card);
    border-bottom: 3px solid var(--border-primary);
    box-shadow: 0 2px 10px rgba(0, 0, 0, 0.1);
    position: fixed;
    top: 0;
    left: 0;
    right: 0;
    z-index: 1000;
    height: 80px;
}

.nav-container {
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 2rem;
    display: flex;
    justify-content: space-between;
    align-items: center;
    height: 100%;
}

.nav-logo {
    display: flex;
    align-items: center;
    gap: 1rem;
}

.nav-logo .logo-img {
    height: 60px;
    width: auto;
    object-fit: contain;
}

.nav-logo .logo-text {
    display: flex;
    flex-direction: column;
}

.nav-logo h1,
.nav-logo .nav-logo-title {
    font-family: 'Merriweather', serif;
    color: var(--primary-green);
    font-size: 1.5rem;
    font-weight: 700;
    margin-bottom: 0.2rem;
}

.nav-tagline {
    font-size: 0.85rem;
    color: var(--text-secondary);
    font-style: italic;
}

/* Hide logo on non-home pages */
body:not(.page-home) .nav-logo {
    display: none;
}

/* Nav player (replaces logo on non-home pages) */
.nav-player {
    display: none;
    align-items: center;
    gap: 1rem;
}

body:not(.page-home) .nav-player {
    display: flex;
}

.nav-player-artwork {
    flex-shrink: 0;
}

.nav-player-artwork img {
    width: 75px;
    height: 75px;
    border-radius: 5px;
    object-fit: cover;
    border: 2px solid var(--border-primary);
}

.nav-player-info {
    flex: 1;
    min-width: 0;
    max-width: 400px;
    overflow: hidden;
}

.nav-player-station {
    white-space: nowrap;
    overflow: hidden;
    text-overflow: ellipsis;
}

.nav-player-station {
    font-family: 'Merriweather', serif;
    color: var(--primary-green);
    font-weight: 600;
    font-size: 1rem;
    display: flex;
    align-items: center;
    gap: 0.5rem;
    white-space: nowrap;
    overflow: hidden;
}

.nav-player-station img {
    height: 30px;
    width: auto;
}

.nav-player-track {
    color: var(--text-secondary);
    font-size: 0.85rem;
    white-space: nowrap;
    overflow: hidden;
    text-overflow: ellipsis;
    max-width: 100%;
}

/* Scrolling text animation for long titles on mobile */
@media (max-width: 768px) {
    .nav-player-info {
        max-width: 150px;
        position: relative;
        overflow: hidden;
    }
    
    .nav-player-track {
        animation: none;
        text-overflow: ellipsis;
        display: inline-block;
        white-space: nowrap;
        max-width: 100%;
    }
    
    .nav-player-track.scrolling {
        animation: scrollText 15s linear infinite;
        text-overflow: clip;
        max-width: none;
        width: auto;
    }
    
    @keyframes scrollText {
        0% {
            transform: translateX(0);
        }
        100% {
            transform: translateX(-50%);
        }
    }
    
    .nav-player-artwork img {
        width: 50px;
        height: 50px;
    }
}

.nav-player-btn {
    background: var(--primary-green);
    color: #FFFFFF;
    border: 2px solid var(--secondary-green);
    border-radius: 50%;
    width: 40px;
    height: 40px;
    font-size: 0.9rem;
    cursor: pointer;
    transition: all 0.3s ease;
    display: flex;
    align-items: center;
    justify-content: center;
    font-family: Arial, sans-serif;
    line-height: 1;
    padding: 0;
}

.nav-player-btn:hover {
    background: var(--secondary-green);
    transform: scale(1.1);
}

#navPlayStopBtn {
    font-size: 0.9rem;
    padding: 0;
    font-family: Arial, sans-serif;
    flex-shrink: 0;
}

/* Logo Images */
.hero-logo {
    height: 125px;
    width: auto;
    vertical-align: middle;
    margin-right: 10px;
}

.player-logo {
    height: 75px;
    width: auto;
    vertical-align: middle;
    margin-right: 8px;
}

.footer-logo {
    height: 75px;
    width: auto;
    vertical-align: middle;
    margin-right: 8px;
}

.nav-menu {
    display: flex;
    gap: 0.15rem;
}

.nav-link {
    text-decoration: none;
    color: var(--text-primary);
    font-weight: 600;
    padding: 0.5rem 0.5rem;
    border-radius: 20px;
    transition: all 0.3s ease;
    position: relative;
}

.nav-link:hover,
.nav-link.active {
    background: var(--primary-green);
    color: var(--text-light);
    transform: translateY(-2px);
}

.nav-toggle {
    display: none;
    flex-direction: column;
    cursor: pointer;
    gap: 4px;
}

.nav-toggle .bar {
    width: 25px;
    height: 3px;
    background: var(--primary-green);
    border-radius: 2px;
    transition: all 0.3s ease;
}

/* Main Content */
.main-content {
    position: relative;
    z-index: 1;
    margin-top: 80px;
    min-height: calc(100vh - 80px);
}

.page-section {
    display: none;
    padding: 2rem 0;
}

.page-section.active {
    display: block;
}

/* Hero Section */
.hero-section {
    background: linear-gradient(135deg, var(--bg-primary) 0%, var(--bg-secondary) 100%);
    padding: 4rem 2rem;
    display: flex;
    align-items: center;
    justify-content: space-between;
    max-width: 1200px;
    margin: 0 auto;
    border-radius: 20px;
    margin-top: 2rem;
    box-shadow: 0 8px 32px rgba(0, 0, 0, 0.1);
}

.hero-content {
    flex: 1;
    padding-right: 2rem;
}

.hero-title {
    font-family: 'Merriweather', serif;
    font-size: 3rem;
    color: var(--primary-green);
    margin-bottom: 1rem;
    text-shadow: 2px 2px 4px rgba(0, 0, 0, 0.1);
}

.hero-subtitle {
    font-size: 1.5rem;
    color: var(--text-secondary);
    margin-bottom: 1.5rem;
    font-weight: 600;
}

.hero-description {
    font-size: 1.1rem;
    color: var(--text-primary);
    margin-bottom: 2rem;
    line-height: 1.8;
}

.hero-buttons {
    display: flex;
    gap: 1rem;
}

.btn {
    padding: 1rem 2rem;
    border: none;
    border-radius: 25px;
    font-size: 1.1rem;
    font-weight: 600;
    cursor: pointer;
    transition: all 0.3s ease;
    text-decoration: none;
    display: inline-block;
    text-align: center;
}

.btn-primary {
    background: var(--primary-green);
    color: var(--text-light);
    border: 2px solid var(--secondary-green);
}

.btn-primary:hover {
    background: var(--secondary-green);
    transform: translateY(-2px);
    box-shadow: 0 4px 12px rgba(0, 0, 0, 0.2);
}

.btn-secondary {
    background: var(--accent-gold);
    color: var(--text-primary);
    border: 2px solid var(--warm-brown);
}

.btn-secondary:hover {
    background: var(--warm-brown);
    color: var(--text-light);
    transform: translateY(-2px);
    box-shadow: 0 4px 12px rgba(0, 0, 0, 0.2);
}

.hero-image {
    flex: 0 0 200px;
    text-align: center;
}

.radio-icon {
    font-size: 8rem;
    color: var(--primary-green);
    text-shadow: 2px 2px 4px rgba(0, 0, 0, 0.1);
}

/* Radio Player */
.radio-player {
    background: var(--bg-card);
    border: 3px solid var(--border-primary);
    border-radius: 15px;
    padding: 2rem;
    margin: 2rem auto;
    max-width: 1200px;
    box-shadow: 0 8px 32px rgba(0, 0, 0, 0.1);
}

.player-info {
    display: flex;
    justify-content: space-between;
    align-items: center;
    margin-bottom: 1rem;
    gap: 2rem;
}

.player-artwork {
    flex-shrink: 0;
}

.player-artwork img {
    width: 235px;
    height: 235px;
    border-radius: 10px;
    object-fit: cover;
    border: 2px solid var(--border-primary);
    box-shadow: 0 4px 12px rgba(0, 0, 0, 0.2);
}

.station-info {
    flex: 1;
}

.station-info h3,
.station-info h2.station-info-title {
    font-family: 'Merriweather', serif;
    color: var(--primary-green);
    font-size: 1.5rem;
    margin-bottom: 0.5rem;
}

.station-info .current-track {
    font-size: 1.1rem;
    color: var(--text-secondary);
}

.station-info .playlist-event {
    font-size: 1rem;
    color: var(--primary-green);
    font-weight: 600;
    margin-bottom: 0.25rem;
}

.station-info .track-song {
    color: var(--text-secondary);
}

.station-info .track-song strong {
    color: var(--text-primary);
    font-weight: 600;
}

.player-controls {
    display: flex;
    align-items: center;
    gap: 1rem;
}

.control-btn {
    background: var(--primary-green);
    color: #FFFFFF;
    border: 2px solid var(--secondary-green);
    border-radius: 50%;
    width: 50px;
    height: 50px;
    font-size: 1.2rem;
    cursor: pointer;
    transition: all 0.3s ease;
    display: flex;
    align-items: center;
    justify-content: center;
    font-family: Arial, sans-serif;
    line-height: 1;
    padding: 0;
}

.control-btn:hover {
    background: var(--secondary-green);
    transform: scale(1.1);
}

/* Fix stop button alignment */
#stopBtn,
#stickyStopBtn {
    font-size: 1.3rem;
    padding-bottom: 4px;
}

.volume-control {
    display: flex;
    align-items: center;
    gap: 0.5rem;
}

.volume-control input {
    width: 100px;
}

.player-status {
    text-align: center;
}

.status-indicator {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 0.5rem;
}

.status-dot {
    width: 10px;
    height: 10px;
    background: var(--accent-gold);
    border-radius: 50%;
    animation: pulse 2s infinite;
}

@keyframes pulse {
    0%, 100% { opacity: 1; }
    50% { opacity: 0.5; }
}

/* Content Sections */
.content-section {
    max-width: 1200px;
    margin: 0 auto;
    padding: 2rem;
}

.content-section h2 {
    font-family: 'Merriweather', serif;
    color: var(--primary-green);
    font-size: 2.5rem;
    text-align: center;
    margin-bottom: 2rem;
}

.about-content {
    display: grid;
    grid-template-columns: 2fr 1fr;
    gap: 3rem;
    align-items: start;
}

.about-text h3 {
    color: var(--primary-green);
    font-size: 1.5rem;
    margin: 2rem 0 1rem 0;
}

.about-text ul {
    list-style: none;
    padding-left: 0;
}

.about-text li {
    padding: 0.5rem 0;
    font-size: 1.1rem;
}

.about-image {
    text-align: center;
}

.image-placeholder {
    background: var(--bg-secondary);
    border: 2px solid var(--border-secondary);
    border-radius: 15px;
    padding: 3rem;
    font-size: 4rem;
    color: var(--primary-green);
}

.image-placeholder p {
    font-size: 1rem;
    margin-top: 1rem;
    color: var(--text-secondary);
}

/* Schedule */
.schedule-note {
    background: var(--bg-secondary);
    border: 2px solid var(--border-secondary);
    border-radius: 10px;
    padding: 1rem;
    margin-bottom: 2rem;
    text-align: center;
}

.schedule-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: 1.5rem;
}

.schedule-day {
    background: var(--bg-card);
    border: 2px solid var(--border-secondary);
    border-radius: 15px;
    padding: 1.5rem;
    box-shadow: 0 4px 12px rgba(0, 0, 0, 0.1);
}

.schedule-day h3 {
    color: var(--primary-green);
    font-size: 1.3rem;
    margin-bottom: 1rem;
    text-align: center;
    border-bottom: 2px solid var(--border-secondary);
    padding-bottom: 0.5rem;
}

.schedule-show {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 0.8rem 0;
    border-bottom: 1px solid var(--border-light);
}

.schedule-show:last-child {
    border-bottom: none;
}

.show-time {
    font-weight: 600;
    color: var(--primary-green);
    font-size: 1.1rem;
}

.show-name {
    color: var(--text-primary);
    font-size: 0.95rem;
}

/* Contact */
.contact-content {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 3rem;
}

.contact-methods {
    margin-top: 2rem;
}

.contact-method {
    display: flex;
    align-items: center;
    gap: 1rem;
    margin-bottom: 1.5rem;
    padding: 1rem;
    background: var(--bg-secondary);
    border-radius: 10px;
    border: 2px solid var(--border-light);
}

.contact-icon {
    font-size: 2rem;
}

.contact-details h4 {
    color: var(--primary-green);
    margin-bottom: 0.5rem;
}

.contact-donate {
    justify-content: center;
}

/* Guestbook */
.guestbook-intro {
    font-size: 1.15rem;
    color: var(--text-secondary);
    margin-bottom: 1.5rem;
    max-width: 700px;
}

.guestbook-form-container {
    background: var(--bg-secondary);
    border: 2px solid var(--border-secondary);
    border-radius: 15px;
    padding: 2rem;
    margin: 1.5rem 0;
}

.guestbook-form .form-group {
    margin-bottom: 1rem;
}

.guestbook-form input,
.guestbook-form textarea {
    width: 100%;
    padding: 0.75rem 1rem;
    border: 2px solid var(--border-light);
    border-radius: 10px;
    font-family: inherit;
}

.guestbook-form input:focus,
.guestbook-form textarea:focus {
    outline: none;
    border-color: var(--primary-green);
}

.guestbook-note {
    margin-top: 1rem;
    color: var(--text-secondary);
    font-size: 0.9rem;
}

.guestbook-entries-title {
    color: var(--primary-green);
    font-family: 'Merriweather', serif;
    margin: 2rem 0 1rem;
    font-size: 1.35rem;
}

.guestbook-entries {
    margin-top: 1rem;
}

.guestbook-entry {
    background: var(--bg-card);
    border: 2px solid var(--border-secondary);
    border-radius: 15px;
    padding: 1.25rem;
    margin: 1rem 0;
    box-shadow: 0 4px 12px rgba(0, 0, 0, 0.08);
}

.guestbook-entry h4 {
    color: var(--primary-green);
    font-size: 1.1rem;
    margin-bottom: 0.75rem;
}

.guestbook-date {
    font-weight: 400;
    color: var(--text-secondary);
}

.guestbook-message {
    background: var(--bg-secondary);
    border-radius: 10px;
    padding: 1rem;
    margin: 0.75rem 0;
    color: var(--text-primary);
}

.guestbook-location {
    font-size: 0.85rem;
    color: var(--text-secondary);
}

.guestbook-loading,
.guestbook-empty,
.guestbook-error {
    color: var(--text-secondary);
    font-style: italic;
}

/* Ways to Listen */
.listen-intro {
    font-size: 1.15rem;
    color: var(--text-secondary);
    margin-bottom: 2rem;
    max-width: 700px;
}

.listen-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: 1.5rem;
    margin-bottom: 2rem;
}

.listen-card {
    background: var(--bg-card);
    border: 2px solid var(--border-secondary);
    border-radius: 15px;
    padding: 1.5rem;
    box-shadow: 0 4px 12px rgba(0, 0, 0, 0.1);
    display: flex;
    flex-direction: column;
    transition: transform 0.2s ease, box-shadow 0.2s ease;
}

.listen-card:hover {
    transform: translateY(-2px);
    box-shadow: 0 6px 20px rgba(0, 0, 0, 0.12);
}

.listen-card-featured {
    border-color: var(--primary-green);
    background: linear-gradient(135deg, var(--bg-card) 0%, var(--bg-secondary) 100%);
}

.listen-card-wide {
    grid-column: 1 / -1;
}

.listen-card-icon {
    font-size: 2.5rem;
    margin-bottom: 0.75rem;
}

.listen-card h3 {
    color: var(--primary-green);
    font-size: 1.35rem;
    margin-bottom: 0.75rem;
    font-family: 'Merriweather', serif;
}

.listen-card p {
    color: var(--text-secondary);
    font-size: 0.95rem;
    margin-bottom: 1rem;
    flex: 1;
}

.listen-voice-cmd {
    display: block;
    background: var(--bg-secondary);
    border: 1px dashed var(--border-primary);
    border-radius: 8px;
    padding: 0.75rem 1rem;
    font-family: monospace;
    font-size: 0.9rem;
    color: var(--text-primary);
    margin-top: auto;
}

.listen-stream-url {
    display: block;
    background: var(--bg-secondary);
    border: 1px solid var(--border-light);
    border-radius: 8px;
    padding: 0.75rem;
    font-size: 0.8rem;
    word-break: break-all;
    margin: 0.5rem 0;
}

.listen-link {
    font-size: 0.9rem;
    color: var(--primary-green);
    text-decoration: none;
    font-weight: 600;
}

.listen-link:hover {
    text-decoration: underline;
}

.listen-formats {
    display: flex;
    gap: 0.75rem;
    margin: 0.75rem 0;
    flex-wrap: wrap;
}

.listen-format-btn {
    display: inline-block;
    padding: 0.5rem 1rem;
    background: var(--primary-green);
    color: white;
    border-radius: 8px;
    text-decoration: none;
    font-weight: 600;
    font-size: 0.9rem;
    transition: background 0.2s ease;
}

.listen-format-btn:hover {
    background: var(--secondary-green);
    color: white;
}

.listen-formats-desc {
    display: flex;
    flex-wrap: wrap;
    gap: 1rem;
    font-size: 0.85rem;
    color: var(--text-secondary);
}

.listen-formats-desc span {
    white-space: nowrap;
}

.listen-tips {
    background: var(--bg-secondary);
    border: 2px solid var(--border-secondary);
    border-radius: 15px;
    padding: 2rem;
}

.listen-tips h3 {
    color: var(--primary-green);
    margin-bottom: 1rem;
    font-family: 'Merriweather', serif;
}

.listen-tips ul {
    list-style: none;
    padding-left: 0;
}

.listen-tips li {
    padding: 0.5rem 0;
    padding-left: 1.5rem;
    position: relative;
    color: var(--text-secondary);
}

.listen-tips li::before {
    content: '•';
    color: var(--primary-green);
    font-weight: bold;
    position: absolute;
    left: 0;
}

.listen-card .btn {
    align-self: flex-start;
    margin-top: auto;
}

.contact-form {
    background: var(--bg-card);
    border: 2px solid var(--border-secondary);
    border-radius: 15px;
    padding: 2rem;
    box-shadow: 0 4px 12px rgba(0, 0, 0, 0.1);
}

.form-group {
    margin-bottom: 1.5rem;
}

.form-group label {
    display: block;
    color: var(--text-secondary);
    font-weight: 600;
    margin-bottom: 0.5rem;
}

.form-group input,
.form-group select,
.form-group textarea {
    width: 100%;
    padding: 0.8rem;
    border: 2px solid var(--border-secondary);
    border-radius: 8px;
    font-size: 1rem;
    background: var(--bg-secondary);
    color: var(--text-primary);
    transition: border-color 0.3s ease;
}

.form-group input:focus,
.form-group select:focus,
.form-group textarea:focus {
    outline: none;
    border-color: var(--primary-green);
    box-shadow: 0 0 0 3px rgba(34, 139, 34, 0.1);
}

/* Chat Page */
#chat.page-section {
    padding: 0;
}

.chat-page-container {
    min-height: calc(100vh - 80px);
    background: var(--bg-card);
    border-radius: 0;
    overflow: hidden;
    box-shadow: none;
}

/* Footer */
.footer {
    background: var(--bg-dark);
    color: var(--text-light);
    padding: 3rem 0 1rem;
    margin-top: 0;
}

.footer-content {
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 2rem;
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
    gap: 2rem;
}

.footer-section h3,
.footer-section h4 {
    color: var(--accent-gold);
    margin-bottom: 1rem;
}

.footer-section ul {
    list-style: none;
}

.footer-section li {
    margin-bottom: 0.5rem;
}

.footer-section a {
    color: var(--text-light);
    text-decoration: none;
    transition: color 0.3s ease;
}

.footer-section a:hover {
    color: var(--accent-gold);
}

.footer-bottom {
    text-align: center;
    margin-top: 2rem;
    padding-top: 2rem;
    border-top: 1px solid var(--border-primary);
    color: var(--text-light);
    opacity: 0.8;
}

.footer-widget {
    display: flex;
    justify-content: center;
    align-items: center;
    padding: 1.5rem 0;
    min-height: 80px;
}


/* Collapsed menu - 960px and below */
@media (max-width: 960px) {
    .nav-menu {
        position: fixed;
        top: 80px;
        left: -100%;
        width: 100%;
        height: calc(100vh - 80px);
        background: var(--bg-card);
        flex-direction: column;
        justify-content: flex-start;
        align-items: center;
        padding-top: 2rem;
        transition: left 0.3s ease;
        box-shadow: 0 4px 12px rgba(0, 0, 0, 0.1);
    }

    .nav-menu.active {
        left: 0;
    }

    .nav-toggle {
        display: flex;
    }

    .nav-toggle.active .bar:nth-child(1) {
        transform: rotate(45deg) translate(5px, 5px);
    }

    .nav-toggle.active .bar:nth-child(2) {
        opacity: 0;
    }

    .nav-toggle.active .bar:nth-child(3) {
        transform: rotate(-45deg) translate(7px, -6px);
    }
}

/* Mobile Responsive - 768px and below */
@media (max-width: 768px) {
    .hero-section {
        flex-direction: column;
        text-align: center;
        padding: 2rem 1rem;
    }

    .hero-content {
        padding-right: 0;
        margin-bottom: 2rem;
    }

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

    .hero-subtitle {
        font-size: 1.2rem;
    }

    .hero-buttons {
        justify-content: center;
        flex-wrap: wrap;
    }

    .radio-icon {
        font-size: 4rem;
    }

    .player-info {
        flex-direction: column;
        gap: 1rem;
        text-align: center;
    }

    .about-content,
    .contact-content {
        grid-template-columns: 1fr;
        gap: 2rem;
    }

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

}

@media (max-width: 480px) {
    .nav-container {
        padding: 0 1rem;
    }

    .nav-logo h1 {
        font-size: 1.5rem;
    }

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

    .hero-subtitle {
        font-size: 1rem;
    }

    .btn {
        padding: 0.8rem 1.5rem;
        font-size: 1rem;
    }

    .content-section {
        padding: 1rem;
    }

    .content-section h2 {
        font-size: 2rem;
    }

    .radio-player {
        padding: 1rem;
        margin: 1rem;
    }

    .control-btn {
        width: 40px;
        height: 40px;
        font-size: 1rem;
    }
}
