/**
 * About Page Styles - Premium Radio Station Full Width Design
 *
 * @package SMX_Pages
 */

/* Reset and Base Styles */
.full-width-page {
    width: 100%;
    max-width: 100%;
    margin: 0;
    padding: 0;
    font-family: 'Inter', -apple-system, BlinkMacSystemFont, 'Segoe UI', Roboto, Oxygen, Ubuntu, Cantarell, sans-serif;
    color: #ffffff;
    background: #090213;
    line-height: 1.7;
    overflow-x: hidden;
}

.dark-theme {
    background: #090213;
    color: #ffffff;
}

.container-xl {
    max-width: 1400px;
    margin: 0 auto;
    padding: 0 40px;
}

/* Hero Section - FIXED SPACING */
.full-width-hero {
    position: relative;
    min-height: 90vh; /* Reduced from 100vh */
    background-size: cover;
    background-position: center;
    background-attachment: fixed;
    display: flex;
    align-items: center;
    justify-content: center;
    color: white;
    margin-bottom: 0;
    padding-bottom: 40px; /* Added padding at bottom */
    transform: translateZ(0);
    will-change: transform;
}

.hero-gradient-overlay {
    position: absolute;
    inset: 0;
    background: linear-gradient(135deg, 
        rgba(9, 2, 19, 0.95) 0%, 
        rgba(138, 43, 226, 0.7) 50%, 
        rgba(9, 2, 19, 0.98) 100%);
    z-index: 1;
}

.hero-content-wrapper {
    position: relative;
    z-index: 2;
    width: 100%;
	max-width: 1200px;
	margin: 0 auto;
    padding: 60px 0 40px; /* Reduced top padding, added bottom padding */
}

.hero-text-content {
    text-align: center;
    animation: fadeInUp 1s ease-out;
}

.hero-badge {
    display: inline-block;
    font-size: 12px;
    font-weight: 600;
    text-transform: uppercase;
    letter-spacing: 0.3em;
    color: #8a2be2;
    background: rgba(138, 43, 226, 0.15);
    padding: 12px 24px;
    border-radius: 50px;
    margin-bottom: 30px;
    backdrop-filter: blur(10px);
    border: 1px solid rgba(138, 43, 226, 0.3);
}

.premium-hero-title {
    font-size: 4rem; /* Reduced from 5rem */
    font-weight: 800;
    line-height: 1.1;
    margin: 0 0 20px;
    background: linear-gradient(135deg, #ffffff 0%, #b5e0ff 100%);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
    letter-spacing: -0.02em;
}

.hero-tagline-wrapper {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 20px;
    margin: 20px 0; /* Reduced from 30px */
}

.sound-wave-icon {
    display: flex;
    align-items: flex-end;
    height: 30px;
    gap: 3px;
}

.wave-bar {
    width: 4px;
    background: #8a2be2;
    border-radius: 2px;
    animation: waveAnimation 1.2s ease-in-out infinite;
}

.wave-bar:nth-child(1) { height: 8px; animation-delay: 0s; }
.wave-bar:nth-child(2) { height: 16px; animation-delay: 0.1s; }
.wave-bar:nth-child(3) { height: 24px; animation-delay: 0.2s; }
.wave-bar:nth-child(4) { height: 16px; animation-delay: 0.3s; }
.wave-bar:nth-child(5) { height: 8px; animation-delay: 0.4s; }

.premium-hero-tagline {
    font-size: 1.5rem; /* Reduced from 1.8rem */
    font-weight: 300;
    margin: 0;
    color: rgba(255, 255, 255, 0.9);
    max-width: 700px;
}

.premium-hero-description {
    font-size: 1.1rem; /* Reduced from 1.2rem */
    max-width: 700px;
    margin: 30px auto; /* Reduced from 40px */
    color: rgba(255, 255, 255, 0.8);
    line-height: 1.8;
}

.hero-actions {
    display: flex;
    gap: 20px;
    justify-content: center;
    margin-top: 40px; /* Reduced from 50px */
    flex-wrap: wrap;
}

.btn-primary, .btn-secondary {
    display: inline-flex;
    align-items: center;
    gap: 12px;
    padding: 16px 32px; /* Reduced from 18px 36px */
    border-radius: 50px;
    font-weight: 600;
    font-size: 16px;
    text-decoration: none;
    transition: all 0.3s cubic-bezier(0.4, 0, 0.2, 1);
    border: 2px solid transparent;
}

.btn-primary {
    background: linear-gradient(135deg, #8a2be2 0%, #6a1cb8 100%);
    color: white;
}

.btn-primary:hover {
    background: linear-gradient(135deg, #6a1cb8 0%, #8a2be2 100%);
    transform: translateY(-3px);
    box-shadow: 0 20px 40px rgba(138, 43, 226, 0.4);
}

.btn-secondary {
    background: transparent;
    color: white;
    border-color: rgba(138, 43, 226, 0.5);
}

.btn-secondary:hover {
    background: rgba(138, 43, 226, 0.15);
    transform: translateY(-3px);
    border-color: #8a2be2;
}

.btn-icon {
    transition: transform 0.3s ease;
}

.btn-primary:hover .btn-icon,
.btn-secondary:hover .btn-icon {
    transform: translateX(5px);
}

.hero-scroll-indicator {
    position: absolute;
    bottom: 20px; /* Reduced from 40px */
    left: 50%;
    transform: translateX(-50%);
    z-index: 2;
    text-align: center;
    animation: bounce 2s infinite;
}

.scroll-text {
    display: block;
    font-size: 14px;
    margin-bottom: 10px;
    color: rgba(255, 255, 255, 0.7);
}

.scroll-arrow {
    animation: float 2s ease-in-out infinite;
}

/* Sections - FIXED SPACING */
.about-section {
    padding: 60px 0; /* Reduced from 100px 0 */
    position: relative;
    background: #090213;
}

.intro-section {
    padding-top: 40px; /* Reduced spacing after hero */
}

.dark-section {
    background: #0a041c;
    color: white;
}

.section-header {
    text-align: center;
    margin-bottom: 40px; /* Reduced from 60px */
}

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

.section-badge {
    display: inline-block;
    font-size: 12px;
    font-weight: 600;
    text-transform: uppercase;
    letter-spacing: 0.2em;
    color: #8a2be2;
    background: rgba(138, 43, 226, 0.15);
    padding: 10px 20px;
    border-radius: 50px;
    margin-bottom: 15px; /* Reduced from 20px */
    border: 1px solid rgba(138, 43, 226, 0.3);
}

.dark-section .section-badge {
    background: rgba(138, 43, 226, 0.15);
    color: #8a2be2;
    border-color: rgba(138, 43, 226, 0.3);
}

.section-title {
    font-size: 2.5rem; /* Reduced from 3.5rem */
    font-weight: 800;
    line-height: 1.1;
    margin: 0 0 15px; /* Reduced from 20px */
    color: white;
}

.section-divider {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 15px; /* Reduced from 20px */
    margin: 20px 0; /* Reduced from 30px */
}

.divider-line {
    width: 60px; /* Reduced from 80px */
    height: 2px;
    background: linear-gradient(90deg, transparent, #8a2be2, transparent);
}

.dark-section .divider-line {
    background: linear-gradient(90deg, transparent, #8a2be2, transparent);
}

.radio-icon {
    font-size: 20px; /* Reduced from 24px */
    color: #8a2be2;
}

.section-subtitle {
    font-size: 1.1rem; /* Reduced from 1.2rem */
    color: rgba(255, 255, 255, 0.8);
    max-width: 600px;
    margin: 0 auto;
}

/* Intro Section */
.intro-content {
    max-width: 1000px;
    margin: 0 auto;
}

.intro-text {
    font-size: 1.1rem;
	line-height: 1.8;
    margin-bottom: 40px; /* Reduced from 60px */
    color: rgba(255, 255, 255, 0.9);
}

.intro-stats {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 20px; /* Reduced from 30px */
    margin-top: 40px; /* Reduced from 60px */
}

.stat-item {
    text-align: center;
    padding: 25px; /* Reduced from 30px */
    background: rgba(138, 43, 226, 0.05);
    border-radius: 20px;
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.2);
    transition: all 0.3s ease;
    border: 1px solid rgba(138, 43, 226, 0.1);
    backdrop-filter: blur(10px);
}

.stat-item:hover {
    transform: translateY(-5px);
    background: rgba(138, 43, 226, 0.1);
    border-color: rgba(138, 43, 226, 0.3);
    box-shadow: 0 20px 40px rgba(138, 43, 226, 0.2);
}

.stat-number {
    font-size: 2.5rem; /* Reduced from 3rem */
    font-weight: 800;
    color: #8a2be2;
    margin-bottom: 10px;
}

.stat-label {
    font-size: 14px;
    font-weight: 600;
    text-transform: uppercase;
    letter-spacing: 0.1em;
    color: rgba(255, 255, 255, 0.7);
}

/* Mission Vision Section */
.mission-vision-section {
    background: #0a041c;
}

.mv-grid {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 30px; /* Reduced from 40px */
    max-width: 1000px;
    margin: 0 auto;
}

.mv-card {
    background: rgba(138, 43, 226, 0.05);
    border-radius: 25px; /* Reduced from 30px */
    overflow: hidden;
    box-shadow: 0 20px 60px rgba(0, 0, 0, 0.3);
    transition: all 0.4s ease;
    border: 1px solid rgba(138, 43, 226, 0.1);
    backdrop-filter: blur(10px);
}

.mv-card:hover {
    transform: translateY(-10px);
    background: rgba(138, 43, 226, 0.1);
    border-color: rgba(138, 43, 226, 0.3);
    box-shadow: 0 30px 90px rgba(138, 43, 226, 0.25);
}

.mv-card-inner {
    padding: 40px; /* Reduced from 50px */
    text-align: center;
}

.mv-icon {
    margin-bottom: 25px; /* Reduced from 30px */
    color: #8a2be2;
}

.mv-title {
    font-size: 1.8rem; /* Reduced from 2rem */
    font-weight: 700;
    margin: 0 0 15px; /* Reduced from 20px */
    color: white;
}

.mv-content {
    font-size: 1.1rem;
    line-height: 1.7;
    color: rgba(255, 255, 255, 0.8);
}

/* Programming Section */
.programming-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(350px, 1fr));
    gap: 25px; /* Reduced from 30px */
    margin-top: 40px; /* Reduced from 50px */
}

.program-card {
    background: rgba(138, 43, 226, 0.05);
    border-radius: 20px;
    overflow: hidden;
    transition: all 0.3s ease;
    border: 1px solid rgba(138, 43, 226, 0.1);
    backdrop-filter: blur(10px);
}

.program-card:hover {
    transform: translateY(-5px);
    background: rgba(138, 43, 226, 0.1);
    border-color: #8a2be2;
    box-shadow: 0 20px 40px rgba(138, 43, 226, 0.3);
}

.program-card-header {
    padding: 25px 25px 15px; /* Reduced from 30px 30px 20px */
    display: flex;
    justify-content: space-between;
    align-items: center;
    background: rgba(138, 43, 226, 0.1);
    border-bottom: 1px solid rgba(138, 43, 226, 0.2);
}

.program-icon {
    font-size: 28px; /* Reduced from 32px */
    color: #8a2be2;
}

.program-schedule {
    display: flex;
    align-items: center;
    gap: 8px;
    font-size: 14px;
    font-weight: 600;
    color: #8a2be2;
}

.program-card-body {
    padding: 15px 25px; /* Reduced from 20px 30px */
}

.program-title {
    font-size: 1.4rem; /* Reduced from 1.5rem */
    font-weight: 700;
    margin: 0 0 12px; /* Reduced from 15px */
    color: white;
}

.program-host {
    display: flex;
    align-items: center;
    gap: 8px;
    font-size: 14px;
    color: #8a2be2;
    margin-bottom: 15px; /* Reduced from 20px */
}

.program-description {
    font-size: 0.95rem;
    line-height: 1.6;
    color: rgba(255, 255, 255, 0.8);
}

.program-card-footer {
    padding: 15px 25px 25px; /* Reduced from 20px 30px 30px */
    border-top: 1px solid rgba(138, 43, 226, 0.2);
}

.program-link {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    color: #8a2be2;
    text-decoration: none;
    font-weight: 600;
    font-size: 14px;
    transition: all 0.3s ease;
}

.program-link:hover {
    gap: 12px;
    color: #b5e0ff;
}

/* Features Section */
.features-section {
    background: #0a041c;
}

.features-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: 25px; /* Reduced from 30px */
    max-width: 1200px;
    margin: 0 auto;
}

.feature-card {
    display: flex;
    align-items: flex-start;
    gap: 20px;
    padding: 25px; /* Reduced from 30px */
    background: rgba(138, 43, 226, 0.05);
    border-radius: 20px;
    transition: all 0.3s ease;
    border: 1px solid rgba(138, 43, 226, 0.1);
    backdrop-filter: blur(10px);
}

.feature-card:hover {
    background: rgba(138, 43, 226, 0.1);
    transform: translateY(-5px);
    border-color: #8a2be2;
    box-shadow: 0 20px 40px rgba(138, 43, 226, 0.2);
}

.feature-icon {
    flex-shrink: 0;
    width: 55px; /* Reduced from 60px */
    height: 55px; /* Reduced from 60px */
    background: linear-gradient(135deg, #8a2be2, #6a1cb8);
    border-radius: 15px;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 22px; /* Reduced from 24px */
    color: white;
}

.feature-content {
    flex: 1;
}

.feature-title {
    font-size: 1.2rem; /* Reduced from 1.3rem */
    font-weight: 700;
    margin: 0 0 10px;
    color: white;
}

.feature-description {
    font-size: 0.95rem;
    line-height: 1.6;
    color: rgba(255, 255, 255, 0.8);
}

/* Team Section */
.team-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: 30px; /* Reduced from 40px */
    margin-top: 40px; /* Reduced from 50px */
}

.team-card {
    background: rgba(138, 43, 226, 0.05);
    border-radius: 25px;
    overflow: hidden;
    transition: all 0.3s ease;
    border: 1px solid rgba(138, 43, 226, 0.1);
    backdrop-filter: blur(10px);
}

.team-card:hover {
    transform: translateY(-10px);
    background: rgba(138, 43, 226, 0.1);
    border-color: #8a2be2;
    box-shadow: 0 30px 60px rgba(138, 43, 226, 0.25);
}

.team-photo-container {
    position: relative;
    padding: 30px 30px 15px; /* Reduced from 40px 40px 20px */
    text-align: center;
    background: rgba(138, 43, 226, 0.1);
    border-bottom: 1px solid rgba(138, 43, 226, 0.2);
}

.team-photo {
    width: 180px; /* Reduced from 200px */
    height: 180px; /* Reduced from 200px */
    border-radius: 50%;
    object-fit: cover;
    border: 5px solid rgba(138, 43, 226, 0.2);
    box-shadow: 0 20px 40px rgba(0, 0, 0, 0.3);
}

.team-social {
    position: absolute;
    bottom: 15px; /* Reduced from 20px */
    left: 0;
    right: 0;
    display: flex;
    justify-content: center;
    gap: 10px;
    opacity: 0;
    transition: opacity 0.3s ease;
}

.team-card:hover .team-social {
    opacity: 1;
}

.social-icon {
    width: 36px;
    height: 36px;
    background: rgba(138, 43, 226, 0.8);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    color: white;
    text-decoration: none;
    font-size: 16px;
    transition: all 0.3s ease;
}

.social-icon:hover {
    background: #8a2be2;
    transform: translateY(-3px);
}

.team-info {
    padding: 25px; /* Reduced from 30px */
}

.team-name {
    font-size: 1.4rem; /* Reduced from 1.5rem */
    font-weight: 700;
    margin: 0 0 10px;
    color: white;
}

.team-role {
    font-size: 14px;
    font-weight: 600;
    color: #8a2be2;
    margin-bottom: 15px; /* Reduced from 20px */
    text-transform: uppercase;
    letter-spacing: 0.1em;
}

.team-bio {
    font-size: 0.95rem;
    line-height: 1.6;
    color: rgba(255, 255, 255, 0.8);
}

/* CTA Section */
.cta-section {
    background: linear-gradient(135deg, #090213 0%, #1a0b3a 100%);
    color: white;
    border-top: 1px solid rgba(138, 43, 226, 0.2);
    border-bottom: 1px solid rgba(138, 43, 226, 0.2);
}

.cta-content {
    display: grid;
    grid-template-columns: 2fr 1fr;
    gap: 40px; /* Reduced from 60px */
    align-items: center;
    max-width: 1200px;
    margin: 0 auto;
}

.cta-text {
    text-align: left;
}

.cta-title {
    font-size: 2.5rem; /* Reduced from 3rem */
    font-weight: 800;
    line-height: 1.1;
    margin: 15px 0; /* Reduced from 20px */
    color: white;
}

.cta-description {
    font-size: 1.1rem;
    line-height: 1.7;
    color: rgba(255, 255, 255, 0.9);
}

.cta-action {
    text-align: center;
}

.btn-large {
    padding: 20px 40px; /* Reduced from 22px 48px */
    font-size: 17px; /* Reduced from 18px */
}

.contact-email {
    margin-top: 15px; /* Reduced from 20px */
    font-size: 14px;
    color: rgba(255, 255, 255, 0.8);
}

.contact-email a {
    color: #8a2be2;
    text-decoration: underline;
    font-weight: 600;
    transition: color 0.3s ease;
}

.contact-email a:hover {
    color: #b5e0ff;
}

/* Footer */
.about-footer {
    background: #0a041c;
    color: white;
    padding: 60px 0 30px; /* Reduced from 80px 0 40px */
    border-top: 1px solid rgba(138, 43, 226, 0.2);
}

.footer-content {
    display: grid;
    grid-template-columns: 1fr 2fr 1fr;
    gap: 40px; /* Reduced from 60px */
    margin-bottom: 40px; /* Reduced from 60px */
}

.footer-brand {
    text-align: left;
}

.footer-logo {
    font-size: 40px; /* Reduced from 48px */
    margin-bottom: 15px; /* Reduced from 20px */
    color: #8a2be2;
}

.footer-title {
    font-size: 1.6rem; /* Reduced from 1.8rem */
    font-weight: 700;
    margin: 0 0 10px;
    color: white;
}

.footer-tagline {
    font-size: 1rem;
    color: rgba(255, 255, 255, 0.7);
}

.footer-links {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 30px; /* Reduced from 40px */
}

.link-group {
    text-align: left;
}

.link-title {
    font-size: 1.1rem;
    font-weight: 600;
    margin: 0 0 15px; /* Reduced from 20px */
    color: #8a2be2;
}

.footer-link {
    display: block;
    color: rgba(255, 255, 255, 0.7);
    text-decoration: none;
    margin-bottom: 10px; /* Reduced from 12px */
    transition: all 0.3s ease;
}

.footer-link:hover {
    color: #8a2be2;
    padding-left: 5px;
}

.footer-social {
    text-align: left;
}

.social-icons {
    display: flex;
    gap: 12px; /* Reduced from 15px */
    margin-top: 15px; /* Reduced from 20px */
}

.social-icon-large {
    width: 45px; /* Reduced from 50px */
    height: 45px; /* Reduced from 50px */
    background: rgba(138, 43, 226, 0.1);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    color: white;
    text-decoration: none;
    font-size: 18px; /* Reduced from 20px */
    transition: all 0.3s ease;
    border: 1px solid rgba(138, 43, 226, 0.2);
}

.social-icon-large:hover {
    background: rgba(138, 43, 226, 0.3);
    transform: translateY(-3px);
    border-color: #8a2be2;
    color: #8a2be2;
}

.footer-bottom {
    border-top: 1px solid rgba(138, 43, 226, 0.2);
    padding-top: 30px; /* Reduced from 40px */
    text-align: center;
}

.copyright {
    font-size: 14px;
    color: rgba(255, 255, 255, 0.6);
    margin-bottom: 15px; /* Reduced from 20px */
}

.footer-extra {
    font-size: 12px;
    color: rgba(255, 255, 255, 0.5);
}

/* Animations */
@keyframes fadeInUp {
    from {
        opacity: 0;
        transform: translateY(40px);
    }
    to {
        opacity: 1;
        transform: translateY(0);
    }
}

@keyframes waveAnimation {
    0%, 100% {
        height: 8px;
    }
    50% {
        height: 24px;
    }
}

@keyframes bounce {
    0%, 100% {
        transform: translateX(-50%) translateY(0);
    }
    50% {
        transform: translateX(-50%) translateY(10px);
    }
}

@keyframes float {
    0%, 100% {
        transform: translateY(0);
    }
    50% {
        transform: translateY(10px);
    }
}

/* Responsive Design */
@media (max-width: 1200px) {
    .container-xl {
        padding: 0 30px;
    }
    
    .premium-hero-title {
        font-size: 3.5rem; /* Reduced from 4rem */
    }
    
    .section-title {
        font-size: 2.5rem; /* Reduced from 3rem */
    }
    
    .cta-content {
        grid-template-columns: 1fr;
        gap: 30px; /* Reduced from 40px */
    }
    
    .cta-text {
        text-align: center;
    }
}

@media (max-width: 992px) {
    .mv-grid {
        grid-template-columns: 1fr;
        gap: 25px; /* Reduced from 30px */
    }
    
    .intro-stats {
        grid-template-columns: repeat(2, 1fr);
        gap: 15px; /* Reduced from 20px */
    }
    
    .footer-content {
        grid-template-columns: 1fr;
        gap: 30px; /* Reduced from 40px */
        text-align: center;
    }
    
    .footer-brand,
    .link-group,
    .footer-social {
        text-align: center;
    }
    
    .social-icons {
        justify-content: center;
    }
}

@media (max-width: 768px) {
    .premium-hero-title {
        font-size: 2.5rem; /* Reduced from 3rem */
    }
    
    .premium-hero-tagline {
        font-size: 1.3rem; /* Reduced from 1.4rem */
    }
    
    .hero-tagline-wrapper {
        flex-direction: column;
        gap: 10px; /* Reduced from 15px */
        margin: 15px 0; /* Reduced from 20px */
    }
    
    .hero-actions {
        flex-direction: column;
        align-items: center;
        margin-top: 30px; /* Reduced from 40px */
    }
    
    .btn-primary, .btn-secondary {
        width: 100%;
        max-width: 300px;
        justify-content: center;
    }
    
    .section-title {
        font-size: 2rem; /* Reduced from 2.5rem */
    }
    
    .cta-title {
        font-size: 2rem; /* Reduced from 2.5rem */
    }
    
    .programming-grid,
    .features-grid,
    .team-grid {
        grid-template-columns: 1fr;
        gap: 20px; /* Added consistent gap */
    }
    
    .footer-links {
        grid-template-columns: 1fr;
        gap: 25px; /* Reduced from 30px */
    }
}

@media (max-width: 576px) {
    .container-xl {
        padding: 0 20px;
    }
    
    .about-section {
        padding: 40px 0; /* Reduced from 60px 0 */
    }
    
    .premium-hero-title {
        font-size: 2.2rem; /* Reduced from 2.5rem */
    }
    
    .section-title {
        font-size: 1.8rem; /* Reduced from 2rem */
    }
    
    .mv-card-inner {
        padding: 25px; /* Reduced from 30px */
    }
    
    .intro-stats {
        grid-template-columns: 1fr;
        gap: 15px;
    }
    
    .stat-item {
        padding: 20px;
    }
    
    .full-width-hero {
        min-height: 80vh; /* Further reduced for mobile */
        padding-bottom: 30px;
    }
    
    .hero-content-wrapper {
        padding: 40px 0 30px; /* Further reduced padding */
    }
}