/* Spirit Radio 94.3 FM - Professional Christian Radio Design */

* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

:root {
    /* Clean Professional Color Palette */
    --primary-blue: #0066cc;
    --dark-blue: #003d7a;
    --light-blue: #e6f2ff;
    --gold: #ffc107;
    --white: #ffffff;
    --off-white: #f8f9fa;
    --light-gray: #e9ecef;
    --text-dark: #212529;
    --text-gray: #6c757d;
    --shadow: rgba(0, 0, 0, 0.1);
}

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

body {
    font-family: 'Poppins', -apple-system, BlinkMacSystemFont, 'Segoe UI', sans-serif;
    line-height: 1.6;
    color: var(--text-dark);
    background: var(--white);
}

.container {
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 20px;
}

/* Navigation */
.navbar {
    position: fixed;
    top: 0;
    left: 0;
    right: 0;
    background: rgba(15, 23, 42, 0.98);
    backdrop-filter: blur(10px);
    padding: 1rem 0;
    z-index: 1000;
    box-shadow: 0 4px 12px rgba(0, 0, 0, 0.2);
    border-bottom: 3px solid var(--primary-blue);
}

.navbar .container {
    display: flex;
    justify-content: space-between;
    align-items: center;
}

.navbar-logo {
    display: flex;
    align-items: center;
    text-decoration: none;
}

.navbar-logo img {
    height: 80px;
    width: auto;
    transition: transform 0.3s ease;
}

.navbar-logo:hover img {
    transform: scale(1.05);
}

.nav-menu {
    display: flex;
    list-style: none;
    gap: 1rem;
    align-items: center;
}

.nav-link {
    color: var(--white);
    text-decoration: none;
    font-weight: 600;
    transition: all 0.3s ease;
    font-size: 0.95rem;
    padding: 0.5rem 1rem;
    border-radius: 6px;
}

.nav-link:hover {
    background: var(--primary-blue);
}

.mobile-menu-toggle {
    display: none;
    background: none;
    border: none;
    color: var(--white);
    font-size: 1.5rem;
    cursor: pointer;
}

/* Hero Section */
.hero {
    background: url('/static/img/earth.png') center center / cover no-repeat fixed;
    background-color: #001f3f;
    padding: 140px 0 80px;
    position: relative;
    overflow: hidden;
}

.hero::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: linear-gradient(135deg, rgba(0, 102, 204, 0.70) 0%, rgba(0, 61, 122, 0.75) 100%);
    z-index: 1;
}

.hero-overlay {
    display: none;
}

.hero-content {
    text-align: center;
    color: var(--white);
    position: relative;
    z-index: 2;
}

.hero .container {
    position: relative;
    z-index: 2;
}

.station-logo {
    margin-bottom: 2rem;
}

.logo-image {
    max-width: 350px;
    width: 100%;
    height: auto;
    margin: 0 auto;
    filter: drop-shadow(0 4px 20px rgba(0, 0, 0, 0.2));
}

.tagline {
    font-size: 2.5rem;
    font-weight: 600;
    margin: 1.5rem 0 1rem;
    letter-spacing: -0.5px;
    text-shadow: 0 3px 12px rgba(0, 0, 0, 0.6);
}

.hero-subtitle {
    font-size: 1.2rem;
    margin-bottom: 0.5rem;
    font-weight: 400;
    text-shadow: 0 2px 8px rgba(0, 0, 0, 0.5);
}

.location {
    font-size: 1rem;
    margin-bottom: 3rem;
    text-shadow: 0 2px 8px rgba(0, 0, 0, 0.5);
}

/* Player Section */
.player-section {
    background: rgba(255, 255, 255, 0.15);
    backdrop-filter: blur(10px);
    border-radius: 15px;
    padding: 2rem;
    max-width: 600px;
    margin: 0 auto;
    border: 1px solid rgba(255, 255, 255, 0.2);
}

.now-playing {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 1rem;
    margin-bottom: 1.5rem;
    font-size: 1rem;
}

.live-indicator {
    color: var(--gold);
    font-weight: 700;
    animation: pulse 2s infinite;
}

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

.now-playing-text {
    font-weight: 500;
}

.play-button {
    background: var(--gold);
    color: var(--dark-blue);
    border: none;
    padding: 1.1rem 2.5rem;
    font-size: 1.1rem;
    font-weight: 700;
    border-radius: 50px;
    cursor: pointer;
    display: inline-flex;
    align-items: center;
    gap: 10px;
    transition: all 0.3s ease;
    box-shadow: 0 4px 15px rgba(0, 0, 0, 0.2);
}

.play-button:hover {
    transform: translateY(-2px);
    box-shadow: 0 6px 20px rgba(0, 0, 0, 0.3);
}

.play-icon {
    font-size: 1.3rem;
}

.scroll-indicator {
    display: none;
}

/* Section Styles */
section {
    padding: 80px 0;
}

.section-title {
    font-size: 2.5rem;
    text-align: center;
    margin-bottom: 1rem;
    color: var(--primary-blue);
    font-weight: 700;
    letter-spacing: -0.5px;
}

.hero .section-title {
    color: var(--white);
    text-shadow: 0 3px 12px rgba(0, 0, 0, 0.6);
}

.section-subtitle {
    text-align: center;
    font-size: 1.1rem;
    color: var(--text-gray);
    margin-bottom: 4rem;
    max-width: 700px;
    margin-left: auto;
    margin-right: auto;
}

/* Mission Section within Hero */
.mission-section {
    margin-top: 4rem;
    position: relative;
    z-index: 2;
}

.about-intro {
    text-align: center;
    max-width: 900px;
    margin: 0 auto 4rem;
}

.lead-text {
    font-size: 1.3rem;
    line-height: 1.7;
    color: var(--white);
    text-shadow: 0 2px 8px rgba(0, 0, 0, 0.5);
    font-weight: 600;
    margin-bottom: 2rem;
}

.mission-verse {
    font-size: 1.1rem;
    font-style: italic;
    color: var(--white);
    text-shadow: 0 2px 8px rgba(0, 0, 0, 0.5);
    font-weight: 600;
    padding: 1.5rem 2rem;
    background: rgba(255, 255, 255, 0.2);
    backdrop-filter: blur(10px);
    border: 2px solid rgba(255, 255, 255, 0.4);
    box-shadow: 0 8px 24px rgba(0, 0, 0, 0.4);
    border-radius: 10px;
    display: inline-block;
}

.about-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: 2.5rem;
    margin-top: 4rem;
}

.about-card {
    background: var(--white);
    padding: 2.5rem;
    border-radius: 15px;
    text-align: center;
    box-shadow: 0 4px 20px var(--shadow);
    transition: all 0.3s ease;
    border: 1px solid var(--light-gray);
}

.about-card {
    background: rgba(255, 255, 255, 0.95);
    backdrop-filter: blur(10px);
    border: 1px solid rgba(255, 255, 255, 0.3);
    box-shadow: 0 8px 30px rgba(0, 0, 0, 0.2);
}

.about-card:hover {
    transform: translateY(-12px);
    box-shadow: 0 12px 40px rgba(0, 0, 0, 0.3);
    background: rgba(255, 255, 255, 1);
}

.about-card .icon {
    font-size: 3.5rem;
    margin-bottom: 1.5rem;
}

.about-card h3 {
    font-size: 1.5rem;
    margin-bottom: 1rem;
    color: var(--dark-blue);
    font-weight: 600;
}

.about-card p {
    color: var(--text-gray);
    line-height: 1.7;
    font-size: 1rem;
}

/* Station Info Section */
.station-info-section {
    background: var(--off-white);
    border-top: 1px solid var(--light-gray);
    border-bottom: 1px solid var(--light-gray);
}

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

.info-box {
    text-align: center;
    padding: 2rem;
    background: var(--white);
    border-radius: 10px;
    box-shadow: 0 2px 10px var(--shadow);
}

.info-box h3 {
    font-size: 0.85rem;
    color: var(--text-gray);
    margin-bottom: 1rem;
    text-transform: uppercase;
    letter-spacing: 1px;
    font-weight: 600;
}

.info-highlight {
    font-size: 2rem;
    font-weight: 700;
    color: var(--primary-blue);
}

/* Schedule Section */
.schedule-section {
    background: var(--white);
}

.schedule-intro {
    text-align: center;
    font-size: 1.15rem;
    color: var(--text-dark);
    margin-bottom: 3rem;
    font-weight: 500;
}

.programs-grid {
    display: grid;
    grid-template-columns: repeat(auto-fill, minmax(280px, 1fr));
    gap: 1.5rem;
    max-width: 1100px;
    margin: 0 auto 3rem;
}

.program-card {
    background: var(--white);
    padding: 1.8rem;
    border-radius: 12px;
    border: 2px solid var(--light-gray);
    transition: all 0.3s ease;
}

.program-card:hover {
    border-color: var(--primary-blue);
    box-shadow: 0 4px 20px var(--shadow);
    transform: translateY(-3px);
}

.program-card h3 {
    font-size: 1.15rem;
    margin-bottom: 0.7rem;
    color: var(--dark-blue);
    font-weight: 600;
}

.program-card p {
    color: var(--text-gray);
    font-size: 0.95rem;
    line-height: 1.6;
}

.schedule-note {
    text-align: center;
    color: var(--text-gray);
    font-style: italic;
    font-size: 0.9rem;
}

/* Contact/Partnership Section */
.contact-section {
    background: var(--off-white);
}

.partnership-intro {
    text-align: center;
    max-width: 850px;
    margin: 0 auto 4rem;
}

.partnership-intro .lead-text {
    font-size: 1.2rem;
    line-height: 1.7;
    color: var(--text-dark);
    font-weight: 500;
    text-shadow: none;
}

.contact-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(450px, 1fr));
    gap: 3rem;
    max-width: 1100px;
    margin: 0 auto;
}

.contact-info h3,
.contact-form h3 {
    font-size: 1.6rem;
    margin-bottom: 1.5rem;
    color: var(--dark-blue);
    font-weight: 600;
}

.partnership-option {
    display: flex;
    align-items: flex-start;
    gap: 1.2rem;
    margin-bottom: 1.5rem;
    padding: 1.5rem;
    background: var(--white);
    border-radius: 10px;
    border: 1px solid var(--light-gray);
    transition: all 0.3s ease;
}

.partnership-option:hover {
    border-color: var(--primary-blue);
    box-shadow: 0 4px 15px var(--shadow);
}

.partnership-option .icon {
    font-size: 2rem;
    flex-shrink: 0;
}

.partnership-option strong {
    display: block;
    color: var(--dark-blue);
    margin-bottom: 0.3rem;
    font-size: 1.05rem;
}

.partnership-option p {
    color: var(--text-gray);
    font-size: 0.95rem;
}

.contact-item {
    display: flex;
    align-items: flex-start;
    gap: 1rem;
    margin-bottom: 1.5rem;
    padding: 1rem;
    background: var(--white);
    border-radius: 8px;
}

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

.contact-item strong {
    display: block;
    color: var(--dark-blue);
    margin-bottom: 0.25rem;
    font-weight: 600;
}

.contact-item p {
    color: var(--text-gray);
}

.social-links {
    margin-top: 2rem;
}

.social-links h4 {
    margin-bottom: 1rem;
    color: var(--dark-blue);
    font-weight: 600;
}

.social-icons {
    display: flex;
    gap: 1rem;
}

.social-icon {
    display: flex;
    align-items: center;
    justify-content: center;
    width: 50px;
    height: 50px;
    background: var(--primary-blue);
    color: var(--white);
    text-decoration: none;
    border-radius: 50%;
    font-weight: 600;
    transition: all 0.3s ease;
    box-shadow: 0 2px 10px var(--shadow);
}

.social-icon:hover {
    background: var(--dark-blue);
    transform: translateY(-3px);
    box-shadow: 0 4px 15px var(--shadow);
}

/* Contact Form */
.contact-form {
    background: var(--white);
    padding: 2.5rem;
    border-radius: 15px;
    box-shadow: 0 4px 20px var(--shadow);
}

.form-subtitle {
    color: var(--text-gray);
    margin-bottom: 2rem;
    font-size: 1rem;
}

.contact-form form {
    display: flex;
    flex-direction: column;
    gap: 1.2rem;
}

.contact-form input,
.contact-form textarea {
    padding: 1rem;
    border: 2px solid var(--light-gray);
    border-radius: 8px;
    font-family: 'Poppins', sans-serif;
    font-size: 1rem;
    transition: all 0.3s ease;
}

.contact-form input:focus,
.contact-form textarea:focus {
    outline: none;
    border-color: var(--primary-blue);
    box-shadow: 0 0 0 3px rgba(0, 102, 204, 0.1);
}

.submit-btn {
    background: var(--primary-blue);
    color: var(--white);
    border: none;
    padding: 1.1rem 2rem;
    font-size: 1.05rem;
    font-weight: 600;
    border-radius: 8px;
    cursor: pointer;
    transition: all 0.3s ease;
}

.submit-btn:hover {
    background: var(--dark-blue);
    transform: translateY(-2px);
    box-shadow: 0 4px 15px var(--shadow);
}

/* Footer */
.footer {
    background: var(--dark-blue);
    color: var(--white);
    padding: 3rem 0 1.5rem;
}

.footer-content {
    display: flex;
    justify-content: space-between;
    align-items: center;
    margin-bottom: 2rem;
    padding-bottom: 2rem;
    border-bottom: 1px solid rgba(255, 255, 255, 0.1);
}

.footer-brand h3 {
    font-size: 1.5rem;
    margin-bottom: 0.5rem;
    font-weight: 600;
}

.footer-brand p {
    color: rgba(255, 255, 255, 0.7);
}

.footer-links {
    display: flex;
    gap: 2rem;
}

.footer-links a {
    color: rgba(255, 255, 255, 0.8);
    text-decoration: none;
    transition: color 0.3s ease;
    font-weight: 500;
}

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

.footer-bottom {
    text-align: center;
    color: rgba(255, 255, 255, 0.6);
    font-size: 0.9rem;
}

/* Responsive Design */
@media (max-width: 768px) {
    .navbar-logo img {
        height: 60px;
    }
    
    .nav-menu {
        display: none;
    }
    
    .mobile-menu-toggle {
        display: block;
    }
    
    .tagline {
        font-size: 1.8rem;
    }
    
    .hero-subtitle {
        font-size: 1rem;
    }
    
    .logo-image {
        max-width: 250px;
    }
    
    .section-title {
        font-size: 2rem;
    }
    
    .about-grid,
    .programs-grid,
    .contact-grid {
        grid-template-columns: 1fr;
    }
    
    .footer-content {
        flex-direction: column;
        gap: 2rem;
        text-align: center;
    }
    
    .footer-links {
        flex-direction: column;
        gap: 1rem;
    }
}

@media (max-width: 480px) {
    .hero {
        padding: 120px 0 60px;
    }
    
    section {
        padding: 60px 0;
    }
    
    .frequency {
        font-size: 1.5rem;
    }
    
    .tagline {
        font-size: 1.5rem;
    }
    
    .logo-image {
        max-width: 200px;
    }
}
