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

html {
    scroll-behavior: smooth;
}

body {
    font-family: -apple-system, BlinkMacSystemFont, 'Segoe UI', Roboto, Oxygen, Ubuntu, Cantarell, sans-serif;
    line-height: 1.6;
    color: #ffffff;
    background-color: #000000;
    overflow-x: hidden;
}

/* Skip Link for Accessibility */
.skip-link {
    position: absolute;
    top: -40px;
    left: 6px;
    background: #60B5FF;
    color: #000000;
    padding: 8px;
    text-decoration: none;
    border-radius: 4px;
    z-index: 1000;
    font-weight: 600;
}

.skip-link:focus {
    top: 6px;
}

/* Container */
.container {
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 2rem;
}

/* Typography */
h1, h2, h3, h4, h5, h6 {
    font-weight: 700;
    margin-bottom: 1rem;
    line-height: 1.2;
}

h1 {
    font-size: 3rem;
    background: linear-gradient(135deg, #ffffff, #cccccc);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
}

h2 {
    font-size: 2.5rem;
    margin-bottom: 1.5rem;
}

h3 {
    font-size: 1.8rem;
    margin-bottom: 1rem;
}

p {
    margin-bottom: 1rem;
    font-size: 1.1rem;
    line-height: 1.7;
    color: #e5e5e5;
}

/* Buttons */
.btn {
    display: inline-block;
    padding: 14px 28px;
    font-size: 1rem;
    font-weight: 600;
    text-decoration: none;
    border-radius: 8px;
    transition: all 0.3s ease;
    cursor: pointer;
    border: 2px solid transparent;
    text-align: center;
    min-width: 150px;
}

.btn-primary {
    background: linear-gradient(135deg, #60B5FF, #4A9FE7);
    color: #000000;
    box-shadow: 0 4px 15px rgba(96, 181, 255, 0.3);
}

.btn-primary:hover {
    transform: translateY(-2px);
    box-shadow: 0 6px 20px rgba(96, 181, 255, 0.4);
}

.btn-secondary {
    background: linear-gradient(135deg, #FF9149, #E17B41);
    color: #000000;
    box-shadow: 0 4px 15px rgba(255, 145, 73, 0.3);
}

.btn-secondary:hover {
    transform: translateY(-2px);
    box-shadow: 0 6px 20px rgba(255, 145, 73, 0.4);
}

.btn-outline {
    background: transparent;
    color: #ffffff;
    border: 2px solid #60B5FF;
}

.btn-outline:hover {
    background: #60B5FF;
    color: #000000;
    transform: translateY(-2px);
}

/* Hero Section */
.hero {
    min-height: 100vh;
    position: relative;
    display: flex;
    align-items: center;
    justify-content: center;
    overflow: hidden;
}

.hero-background {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: linear-gradient(135deg, #1a1a1a 0%, #000000 100%);
    z-index: -2;
}

.hero-background::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background-image: url('https://thumbs.dreamstime.com/z/counseling-session-therapist-office-supportive-gestures-hands-reaching-out-emotional-support-empathy-listening-professional-353560883.jpg');
    background-size: cover;
    background-position: center;
    opacity: 0.1;
    z-index: -1;
}

.hero-overlay {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: radial-gradient(circle at center, rgba(0,0,0,0.7) 0%, rgba(0,0,0,0.9) 100%);
    z-index: -1;
}

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

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

.hero-logo {
    max-width: 400px;
    width: 100%;
    height: auto;
    filter: drop-shadow(0 10px 30px rgba(0,0,0,0.5));
}

.hero-title {
    font-size: 3.5rem;
    margin-bottom: 1.5rem;
    max-width: 800px;
    margin-left: auto;
    margin-right: auto;
}

.hero-subtitle {
    font-size: 1.3rem;
    margin-bottom: 3rem;
    max-width: 600px;
    margin-left: auto;
    margin-right: auto;
    color: #cccccc;
}

.hero-cta {
    display: flex;
    gap: 1.5rem;
    justify-content: center;
    margin-bottom: 4rem;
    flex-wrap: wrap;
}

.hero-stats {
    display: flex;
    justify-content: center;
    gap: 3rem;
    flex-wrap: wrap;
}

.stat {
    text-align: center;
}

.stat-number {
    display: block;
    font-size: 2.5rem;
    font-weight: 700;
    color: #60B5FF;
    margin-bottom: 0.5rem;
}

.stat-label {
    font-size: 1rem;
    color: #cccccc;
    text-transform: uppercase;
    letter-spacing: 1px;
}

/* Sections */
section {
    padding: 6rem 0;
    position: relative;
}

.section-header {
    text-align: center;
    margin-bottom: 4rem;
}

.section-subtitle {
    font-size: 1.2rem;
    color: #cccccc;
    max-width: 600px;
    margin: 0 auto;
}

/* About Section */
.about {
    background: linear-gradient(135deg, #1a1a1a 0%, #0f0f0f 100%);
}

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

.about-text h3 {
    color: #60B5FF;
    margin-bottom: 1.5rem;
}

.mission {
    background: rgba(96, 181, 255, 0.1);
    padding: 2rem;
    border-radius: 12px;
    border-left: 4px solid #60B5FF;
    margin-top: 2rem;
}

.mission h4 {
    color: #60B5FF;
    margin-bottom: 1rem;
}

.about-features {
    display: grid;
    grid-template-columns: 1fr;
    gap: 2rem;
}

.feature {
    background: rgba(255, 255, 255, 0.05);
    backdrop-filter: blur(10px);
    padding: 2rem;
    border-radius: 12px;
    border: 1px solid rgba(255, 255, 255, 0.1);
    transition: transform 0.3s ease, box-shadow 0.3s ease;
}

.feature:hover {
    transform: translateY(-5px);
    box-shadow: 0 10px 30px rgba(96, 181, 255, 0.2);
}

.feature-icon {
    font-size: 2.5rem;
    margin-bottom: 1rem;
}

.feature h4 {
    color: #ffffff;
    margin-bottom: 0.5rem;
}

.feature p {
    color: #cccccc;
    margin: 0;
}

/* Listen Section */
.listen {
    background: #000000;
}

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

.platform-link {
    display: flex;
    align-items: center;
    gap: 1rem;
    padding: 2rem;
    background: rgba(255, 255, 255, 0.05);
    backdrop-filter: blur(10px);
    border: 1px solid rgba(255, 255, 255, 0.1);
    border-radius: 12px;
    text-decoration: none;
    color: #ffffff;
    transition: all 0.3s ease;
    font-weight: 600;
    font-size: 1.1rem;
}

.platform-link:hover {
    transform: translateY(-5px);
    box-shadow: 0 10px 30px rgba(96, 181, 255, 0.3);
    border-color: #60B5FF;
}

.platform-icon {
    font-size: 2.5rem;
    width: 60px;
    height: 60px;
    display: flex;
    align-items: center;
    justify-content: center;
    border-radius: 50%;
    background: rgba(96, 181, 255, 0.2);
}

.listen-note {
    background: rgba(255, 145, 73, 0.1);
    padding: 2rem;
    border-radius: 12px;
    border-left: 4px solid #FF9149;
    text-align: center;
}

.warning {
    color: #FF9149;
    font-weight: 600;
}

/* Community Section */
.community {
    background: linear-gradient(135deg, #1a1a1a 0%, #0f0f0f 100%);
}

.community-content {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 4rem;
}

.social-platforms {
    display: flex;
    flex-direction: column;
    gap: 1.5rem;
}

.social-link {
    display: flex;
    align-items: center;
    gap: 1.5rem;
    padding: 2rem;
    background: rgba(255, 255, 255, 0.05);
    backdrop-filter: blur(10px);
    border: 1px solid rgba(255, 255, 255, 0.1);
    border-radius: 12px;
    text-decoration: none;
    color: #ffffff;
    transition: all 0.3s ease;
}

.social-link:hover {
    transform: translateY(-3px);
    box-shadow: 0 8px 25px rgba(96, 181, 255, 0.2);
}

.social-icon {
    font-size: 2rem;
    width: 50px;
    height: 50px;
    display: flex;
    align-items: center;
    justify-content: center;
    border-radius: 50%;
    background: rgba(96, 181, 255, 0.2);
}

.social-info h4 {
    margin-bottom: 0.5rem;
    color: #ffffff;
}

.social-info p {
    margin: 0;
    color: #cccccc;
    font-size: 0.9rem;
}

.testimonials h3 {
    color: #60B5FF;
    margin-bottom: 2rem;
}

.testimonial-grid {
    display: flex;
    flex-direction: column;
    gap: 2rem;
}

.testimonial {
    background: rgba(255, 255, 255, 0.05);
    padding: 1.5rem;
    border-radius: 12px;
    border-left: 4px solid #60B5FF;
}

.testimonial p {
    font-style: italic;
    margin-bottom: 1rem;
    color: #ffffff;
}

.testimonial cite {
    color: #cccccc;
    font-size: 0.9rem;
}

/* Support Section */
.support {
    background: #000000;
}

.support-options {
    display: grid;
    grid-template-columns: 2fr 1fr;
    gap: 4rem;
}

.patreon-section h3 {
    color: #60B5FF;
    margin-bottom: 2rem;
}

.patreon-tiers {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 2rem;
}

.tier {
    background: rgba(255, 255, 255, 0.05);
    backdrop-filter: blur(10px);
    border: 1px solid rgba(255, 255, 255, 0.1);
    border-radius: 12px;
    padding: 2rem;
    text-align: center;
    position: relative;
    transition: transform 0.3s ease;
}

.tier:hover {
    transform: translateY(-5px);
}

.tier.featured {
    border-color: #FF9149;
    background: rgba(255, 145, 73, 0.1);
}

.tier-badge {
    position: absolute;
    top: -12px;
    left: 50%;
    transform: translateX(-50%);
    background: #FF9149;
    color: #000000;
    padding: 6px 16px;
    border-radius: 20px;
    font-size: 0.8rem;
    font-weight: 600;
}

.tier h4 {
    margin-bottom: 1rem;
    color: #ffffff;
}

.tier-price {
    font-size: 2rem;
    font-weight: 700;
    color: #60B5FF;
    margin-bottom: 1.5rem;
}

.tier ul {
    list-style: none;
    margin-bottom: 2rem;
    text-align: left;
}

.tier li {
    padding: 0.5rem 0;
    border-bottom: 1px solid rgba(255, 255, 255, 0.1);
    color: #e5e5e5;
}

.tier li:last-child {
    border-bottom: none;
}

.tier li::before {
    content: '✓';
    color: #60B5FF;
    font-weight: bold;
    margin-right: 0.5rem;
}

.merchandise {
    background: rgba(255, 145, 73, 0.1);
    padding: 2rem;
    border-radius: 12px;
    border-left: 4px solid #FF9149;
}

.merchandise h3 {
    color: #FF9149;
    margin-bottom: 1rem;
}

.merch-items {
    margin: 2rem 0;
}

.merch-item {
    margin-bottom: 1.5rem;
}

.merch-item h4 {
    color: #ffffff;
    margin-bottom: 0.5rem;
}

.merch-item p {
    color: #cccccc;
    margin: 0;
}

/* Episodes Section */
.episodes {
    background: linear-gradient(135deg, #1a1a1a 0%, #0f0f0f 100%);
}

.episode-list {
    display: flex;
    flex-direction: column;
    gap: 2rem;
    margin-bottom: 3rem;
}

.episode {
    display: flex;
    align-items: center;
    gap: 2rem;
    background: rgba(255, 255, 255, 0.05);
    backdrop-filter: blur(10px);
    border: 1px solid rgba(255, 255, 255, 0.1);
    border-radius: 12px;
    padding: 2rem;
    transition: all 0.3s ease;
}

.episode:hover {
    transform: translateY(-3px);
    box-shadow: 0 8px 25px rgba(96, 181, 255, 0.2);
}

.episode-info {
    flex: 1;
}

.episode-info h3 {
    color: #ffffff;
    margin-bottom: 1rem;
}

.episode-info p {
    color: #cccccc;
    margin-bottom: 1rem;
}

.episode-meta {
    display: flex;
    gap: 1rem;
    align-items: center;
}

.duration {
    color: #60B5FF;
    font-weight: 600;
}

.warning-label {
    background: rgba(255, 145, 73, 0.2);
    color: #FF9149;
    padding: 4px 8px;
    border-radius: 4px;
    font-size: 0.8rem;
    font-weight: 600;
}

.content-label {
    background: rgba(96, 181, 255, 0.2);
    color: #60B5FF;
    padding: 4px 8px;
    border-radius: 4px;
    font-size: 0.8rem;
    font-weight: 600;
}

.episode-play {
    font-size: 2rem;
    text-decoration: none;
    background: rgba(96, 181, 255, 0.2);
    color: #60B5FF;
    width: 60px;
    height: 60px;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    transition: all 0.3s ease;
}

.episode-play:hover {
    background: #60B5FF;
    color: #000000;
    transform: scale(1.1);
}

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

/* Contact Section */
.contact {
    background: #000000;
}

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

.contact-info h3 {
    color: #60B5FF;
    margin-bottom: 1.5rem;
}

.contact-methods {
    display: flex;
    flex-direction: column;
    gap: 2rem;
    margin-top: 2rem;
}

.contact-method {
    display: flex;
    align-items: center;
    gap: 1.5rem;
    background: rgba(255, 255, 255, 0.05);
    padding: 2rem;
    border-radius: 12px;
    border: 1px solid rgba(255, 255, 255, 0.1);
}

.contact-icon {
    font-size: 2rem;
    width: 50px;
    height: 50px;
    display: flex;
    align-items: center;
    justify-content: center;
    border-radius: 50%;
    background: rgba(96, 181, 255, 0.2);
}

.contact-details h4 {
    color: #ffffff;
    margin-bottom: 0.5rem;
}

.contact-details p {
    color: #cccccc;
    margin-bottom: 0.5rem;
}

.contact-link {
    color: #60B5FF;
    text-decoration: none;
    font-weight: 600;
}

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

.resources {
    background: rgba(255, 145, 73, 0.1);
    padding: 2rem;
    border-radius: 12px;
    border-left: 4px solid #FF9149;
}

.resources h3 {
    color: #FF9149;
    margin-bottom: 1.5rem;
}

.resource-list {
    list-style: none;
    margin-bottom: 1.5rem;
}

.resource-list li {
    margin-bottom: 0.5rem;
}

.resource-link {
    color: #60B5FF;
    text-decoration: none;
    font-weight: 500;
}

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

.disclaimer {
    background: rgba(255, 145, 73, 0.2);
    padding: 1rem;
    border-radius: 8px;
    color: #FF9149;
    font-weight: 600;
    font-size: 0.9rem;
    margin: 0;
}

/* Footer */
.footer {
    background: linear-gradient(135deg, #1a1a1a 0%, #000000 100%);
    padding: 3rem 0 1rem;
}

.footer-content {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 2rem;
    margin-bottom: 3rem;
}

.footer-section h4 {
    color: #60B5FF;
    margin-bottom: 1rem;
    font-size: 1.1rem;
}

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

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

.footer-section a {
    color: #cccccc;
    text-decoration: none;
    transition: color 0.3s ease;
}

.footer-section a:hover {
    color: #60B5FF;
}

.footer-bottom {
    display: flex;
    align-items: center;
    gap: 2rem;
    padding-top: 2rem;
    border-top: 1px solid rgba(255, 255, 255, 0.1);
}

.footer-logo-img {
    max-width: 150px;
    height: auto;
}

.footer-disclaimer {
    flex: 1;
}

.footer-disclaimer p {
    font-size: 0.9rem;
    color: #cccccc;
    margin-bottom: 0.5rem;
}

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

.fade-in-up {
    animation: fadeInUp 0.8s ease-out forwards;
}

/* Responsive Design */
@media (max-width: 1024px) {
    .container {
        padding: 0 1.5rem;
    }
    
    .about-content,
    .community-content,
    .support-options,
    .contact-content {
        grid-template-columns: 1fr;
        gap: 3rem;
    }
    
    .patreon-tiers {
        grid-template-columns: 1fr;
    }
    
    .footer-content {
        grid-template-columns: repeat(2, 1fr);
    }
}

@media (max-width: 768px) {
    h1 {
        font-size: 2.5rem;
    }
    
    h2 {
        font-size: 2rem;
    }
    
    .hero-title {
        font-size: 2.8rem;
    }
    
    .hero-subtitle {
        font-size: 1.1rem;
    }
    
    .hero-cta {
        flex-direction: column;
        align-items: center;
    }
    
    .hero-stats {
        gap: 2rem;
    }
    
    .platforms {
        grid-template-columns: 1fr;
    }
    
    .episode {
        flex-direction: column;
        text-align: center;
    }
    
    .footer-content {
        grid-template-columns: 1fr;
    }
    
    .footer-bottom {
        flex-direction: column;
        text-align: center;
    }
    
    section {
        padding: 4rem 0;
    }
}

@media (max-width: 480px) {
    .container {
        padding: 0 1rem;
    }
    
    .hero-logo {
        max-width: 300px;
    }
    
    .hero-title {
        font-size: 2.2rem;
    }
    
    .btn {
        width: 100%;
        max-width: 280px;
    }
    
    .stat-number {
        font-size: 2rem;
    }
    
    .feature,
    .tier,
    .merchandise {
        padding: 1.5rem;
    }
}

/* Print Styles */
@media print {
    .hero-background,
    .hero-overlay {
        display: none;
    }
    
    body {
        background: white;
        color: black;
    }
    
    .btn {
        border: 2px solid black;
        background: white;
        color: black;
    }
}

/* High Contrast Mode */
@media (prefers-contrast: high) {
    .feature,
    .platform-link,
    .social-link,
    .tier,
    .episode,
    .contact-method {
        border: 2px solid #ffffff;
    }
    
    .btn-primary,
    .btn-secondary {
        border: 2px solid #ffffff;
    }
}

/* Reduced Motion */
@media (prefers-reduced-motion: reduce) {
    * {
        animation-duration: 0.01ms !important;
        animation-iteration-count: 1 !important;
        transition-duration: 0.01ms !important;
    }
    
    html {
        scroll-behavior: auto;
    }
}

/* Focus Styles for Accessibility */
*:focus {
    outline: 2px solid #60B5FF;
    outline-offset: 2px;
}

.btn:focus {
    outline: 3px solid #60B5FF;
    outline-offset: 3px;
}

/* Screen Reader Only */
.sr-only {
    position: absolute;
    width: 1px;
    height: 1px;
    padding: 0;
    margin: -1px;
    overflow: hidden;
    clip: rect(0, 0, 0, 0);
    white-space: nowrap;
    border: 0;
}
