/* ===================================
   LESBIAN POETS SOCIETY STYLESHEET
   Colorful, Literary, Inclusive Design
   =================================== */

:root {
    /* Rainbow Colors from Logo */
    --red: #E63946;
    --orange: #F77F00;
    --yellow: #FCBF49;
    --green: #2A9D8F;
    --blue: #457B9D;
    --purple: #A663CC;
    --pink: #FF6B9D;
    
    /* Neutrals */
    --cream: #FFF8F0;
    --warm-white: #FFFDF9;
    --dark: #2B2D42;
    --mid-gray: #8D99AE;
    
    /* Typography */
    --font-display: 'Crimson Pro', serif;
    --font-body: 'DM Sans', sans-serif;
    
    /* Spacing */
    --section-padding: 5rem 2rem;
}

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

html {
    scroll-behavior: smooth;
}

body {
    font-family: var(--font-body);
    color: var(--dark);
    background: var(--warm-white);
    line-height: 1.6;
    overflow-x: hidden;
}

/* ===================================
   RAINBOW BAR
   =================================== */

.rainbow-bar {
    height: 8px;
    background: linear-gradient(
        90deg,
        var(--red) 0%,
        var(--orange) 20%,
        var(--yellow) 40%,
        var(--green) 60%,
        var(--blue) 80%,
        var(--purple) 100%
    );
    position: fixed;
    top: 0;
    left: 0;
    right: 0;
    z-index: 1000;
}

/* ===================================
   NAVIGATION
   =================================== */

header {
    position: fixed;
    top: 8px;
    left: 0;
    right: 0;
    background: rgba(255, 253, 249, 0.95);
    backdrop-filter: blur(10px);
    z-index: 999;
    border-bottom: 1px solid rgba(43, 45, 66, 0.1);
}

nav {
    padding: 1rem 2rem;
}

.nav-content {
    max-width: 1200px;
    margin: 0 auto;
    display: flex;
    justify-content: space-between;
    align-items: center;
}

.logo-mark {
    font-family: var(--font-display);
    font-weight: 700;
    font-size: 1.5rem;
    letter-spacing: 2px;
    background: linear-gradient(135deg, var(--red), var(--orange), var(--yellow), var(--green), var(--blue), var(--purple));
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
}

.nav-links {
    display: flex;
    gap: 2rem;
    list-style: none;
}

.nav-links a {
    text-decoration: none;
    color: var(--dark);
    font-weight: 500;
    font-size: 0.95rem;
    position: relative;
    transition: color 0.3s;
}

.nav-links a::after {
    content: '';
    position: absolute;
    bottom: -4px;
    left: 0;
    width: 0;
    height: 2px;
    background: var(--purple);
    transition: width 0.3s;
}

.nav-links a:hover {
    color: var(--purple);
}

.nav-links a:hover::after {
    width: 100%;
}

/* ===================================
   HERO SECTION
   =================================== */

.hero {
    min-height: 100vh;
    display: flex;
    align-items: center;
    justify-content: center;
    padding: 8rem 2rem 4rem;
    position: relative;
    overflow: hidden;
    background: linear-gradient(135deg, 
        var(--cream) 0%, 
        rgba(255, 107, 157, 0.05) 50%,
        rgba(166, 99, 204, 0.05) 100%
    );
}

.hero-content {
    max-width: 900px;
    text-align: center;
    position: relative;
    z-index: 2;
    animation: fadeInUp 1s ease-out;
}

.logo-container {
    margin-bottom: 2rem;
    animation: float 6s ease-in-out infinite;
}

.main-logo {
    max-width: 300px;
    height: auto;
    filter: drop-shadow(0 10px 30px rgba(166, 99, 204, 0.2));
}

.hero-title {
    font-family: var(--font-display);
    font-size: clamp(3rem, 10vw, 6rem);
    font-weight: 600;
    line-height: 1.1;
    margin-bottom: 1rem;
    display: flex;
    flex-direction: column;
    gap: 0.2rem;
}

.title-line {
    display: block;
    animation: slideIn 0.8s ease-out backwards;
}

.title-line:nth-child(1) {
    animation-delay: 0.2s;
    color: var(--red);
}

.title-line:nth-child(2) {
    animation-delay: 0.4s;
    color: var(--green);
}

.title-line:nth-child(3) {
    animation-delay: 0.6s;
    color: var(--purple);
}

.hero-subtitle {
    font-size: 1.5rem;
    color: var(--mid-gray);
    margin-bottom: 3rem;
    font-style: italic;
    animation: fadeIn 1s ease-out 0.8s backwards;
}

.cta-buttons {
    display: flex;
    gap: 1rem;
    justify-content: center;
    flex-wrap: wrap;
    animation: fadeIn 1s ease-out 1s backwards;
}

.btn {
    padding: 1rem 2.5rem;
    border-radius: 50px;
    font-weight: 600;
    text-decoration: none;
    font-size: 1.1rem;
    transition: all 0.3s;
    display: inline-block;
}

.btn-primary {
    background: linear-gradient(135deg, var(--purple), var(--pink));
    color: white;
    box-shadow: 0 4px 15px rgba(166, 99, 204, 0.3);
}

.btn-primary:hover {
    transform: translateY(-2px);
    box-shadow: 0 6px 25px rgba(166, 99, 204, 0.4);
}

.btn-secondary {
    background: white;
    color: var(--purple);
    border: 2px solid var(--purple);
}

.btn-secondary:hover {
    background: var(--purple);
    color: white;
    transform: translateY(-2px);
}

/* Decorative floating elements */
.decorative-elements {
    position: absolute;
    inset: 0;
    pointer-events: none;
    z-index: 1;
}

.float-element {
    position: absolute;
    font-size: 3rem;
    opacity: 0.3;
    animation: float 10s ease-in-out infinite;
}

.element-1 {
    top: 20%;
    left: 10%;
    animation-delay: 0s;
}

.element-2 {
    top: 60%;
    right: 15%;
    animation-delay: 2s;
}

.element-3 {
    bottom: 20%;
    left: 20%;
    animation-delay: 4s;
}

.element-4 {
    top: 40%;
    right: 10%;
    animation-delay: 6s;
}

/* ===================================
   SECTION STYLES
   =================================== */

section {
    padding: var(--section-padding);
}

.section-content {
    max-width: 1200px;
    margin: 0 auto;
}

.section-title {
    font-family: var(--font-display);
    font-size: clamp(2.5rem, 5vw, 4rem);
    text-align: center;
    margin-bottom: 1rem;
    background: linear-gradient(135deg, var(--purple), var(--pink));
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
}

.section-intro {
    text-align: center;
    font-size: 1.25rem;
    color: var(--mid-gray);
    margin-bottom: 3rem;
}

/* ===================================
   ABOUT SECTION
   =================================== */

.about {
    background: white;
}

.about-text {
    max-width: 800px;
    margin: 0 auto 4rem;
    font-size: 1.1rem;
}

.about-text .lead {
    font-size: 1.4rem;
    font-weight: 500;
    color: var(--purple);
    margin-bottom: 1.5rem;
}

.about-text p {
    margin-bottom: 1.5rem;
}

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

.topic-card {
    background: linear-gradient(135deg, var(--cream), white);
    padding: 2rem;
    border-radius: 20px;
    text-align: center;
    transition: transform 0.3s, box-shadow 0.3s;
    border: 2px solid transparent;
}

.topic-card:hover {
    transform: translateY(-5px);
    box-shadow: 0 10px 30px rgba(166, 99, 204, 0.15);
    border-color: var(--purple);
}

.topic-icon {
    font-size: 3rem;
    margin-bottom: 1rem;
}

.topic-card h3 {
    font-family: var(--font-display);
    font-size: 1.5rem;
    margin-bottom: 0.5rem;
    color: var(--dark);
}

.topic-card p {
    color: var(--mid-gray);
    font-size: 0.95rem;
}

/* ===================================
   LISTEN SECTION
   =================================== */

.listen {
    background: linear-gradient(135deg, 
        rgba(166, 99, 204, 0.05),
        rgba(255, 107, 157, 0.05)
    );
}

.platforms {
    display: flex;
    flex-wrap: wrap;
    gap: 1.5rem;
    justify-content: center;
    max-width: 700px;
    margin: 0 auto;
}

.platform-link {
    display: flex;
    align-items: center;
    gap: 1rem;
    padding: 1.25rem 2rem;
    background: white;
    border-radius: 15px;
    text-decoration: none;
    color: var(--dark);
    font-weight: 500;
    transition: all 0.3s;
    box-shadow: 0 4px 15px rgba(0, 0, 0, 0.05);
}

.platform-link:hover {
    transform: translateY(-3px);
    box-shadow: 0 6px 25px rgba(0, 0, 0, 0.1);
}

.platform-link.spotify:hover {
    color: #1DB954;
}

.platform-link.apple:hover {
    color: #FA243C;
}

.platform-link.coming-soon {
    background: var(--cream);
    color: var(--mid-gray);
    font-style: italic;
    cursor: default;
}

.platform-link.coming-soon:hover {
    transform: none;
    box-shadow: 0 4px 15px rgba(0, 0, 0, 0.05);
}

/* ===================================
   HOSTS SECTION
   =================================== */

.hosts {
    background: white;
}

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

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

.host-image-placeholder {
    width: 200px;
    height: 200px;
    margin: 0 auto 1.5rem;
    border-radius: 50%;
    background: linear-gradient(135deg, var(--purple), var(--pink));
    display: flex;
    align-items: center;
    justify-content: center;
    box-shadow: 0 10px 30px rgba(166, 99, 204, 0.2);
}

.initial {
    font-family: var(--font-display);
    font-size: 5rem;
    color: white;
    font-weight: 700;
}

.host-card h3 {
    font-family: var(--font-display);
    font-size: 2rem;
    margin-bottom: 0.5rem;
    color: var(--dark);
}

.host-title {
    color: var(--purple);
    font-weight: 500;
    margin-bottom: 1rem;
}

.host-bio {
    color: var(--mid-gray);
    font-style: italic;
}

.team-credits {
    text-align: center;
    padding-top: 2rem;
    border-top: 2px solid var(--cream);
    max-width: 600px;
    margin: 0 auto;
}

.team-credits p {
    margin-bottom: 0.5rem;
    color: var(--mid-gray);
}

/* ===================================
   CONTACT SECTION
   =================================== */

.contact {
    background: linear-gradient(135deg, var(--cream), white);
}

.social-links {
    display: flex;
    justify-content: center;
    gap: 2rem;
}

.social-link {
    display: flex;
    align-items: center;
    gap: 1rem;
    padding: 1.5rem 2.5rem;
    background: white;
    border-radius: 15px;
    text-decoration: none;
    color: var(--dark);
    font-weight: 500;
    transition: all 0.3s;
    box-shadow: 0 4px 15px rgba(0, 0, 0, 0.05);
}

.social-link:hover {
    transform: translateY(-3px);
    box-shadow: 0 6px 25px rgba(0, 0, 0, 0.1);
}

.social-link.instagram:hover {
    background: linear-gradient(135deg, #F58529, #DD2A7B, #8134AF);
    color: white;
}

/* ===================================
   FOOTER
   =================================== */

footer {
    background: var(--dark);
    color: white;
    padding: 3rem 2rem;
    text-align: center;
}

.footer-content {
    max-width: 800px;
    margin: 0 auto;
}

.footer-logo .logo-mark {
    font-size: 2rem;
    margin-bottom: 1rem;
}

.footer-text {
    margin-bottom: 0.5rem;
    opacity: 0.8;
}

.footer-tagline {
    font-style: italic;
    opacity: 0.6;
    font-size: 0.9rem;
}

/* ===================================
   ANIMATIONS
   =================================== */

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

@keyframes fadeIn {
    from {
        opacity: 0;
    }
    to {
        opacity: 1;
    }
}

@keyframes slideIn {
    from {
        opacity: 0;
        transform: translateX(-30px);
    }
    to {
        opacity: 1;
        transform: translateX(0);
    }
}

@keyframes float {
    0%, 100% {
        transform: translateY(0px) rotate(0deg);
    }
    50% {
        transform: translateY(-20px) rotate(5deg);
    }
}

/* ===================================
   RESPONSIVE DESIGN
   =================================== */

@media (max-width: 768px) {
    :root {
        --section-padding: 3rem 1.5rem;
    }
    
    .nav-links {
        gap: 1rem;
        font-size: 0.85rem;
    }
    
    .hero {
        padding: 6rem 1.5rem 3rem;
    }
    
    .main-logo {
        max-width: 200px;
    }
    
    .hero-title {
        font-size: 3rem;
    }
    
    .hero-subtitle {
        font-size: 1.2rem;
    }
    
    .cta-buttons {
        flex-direction: column;
    }
    
    .btn {
        width: 100%;
    }
    
    .topics-grid {
        grid-template-columns: 1fr;
    }
    
    .platforms {
        flex-direction: column;
    }
    
    .hosts-grid {
        grid-template-columns: 1fr;
    }
    
    .social-links {
        flex-direction: column;
    }
}

@media (max-width: 480px) {
    .rainbow-bar {
        height: 5px;
    }
    
    nav {
        padding: 0.75rem 1rem;
    }
    
    .nav-links {
        display: none; /* Consider adding mobile menu */
    }
}
