/******************************************************************* PRIDE **************************************************************************/

.pride-page{
    width:100%;
    overflow:hidden;
}

.pride-hero{
    position:relative;
    min-height:850px;
    display:flex;
    align-items:center;
    justify-content:center;
    overflow:hidden;
    background:
    linear-gradient(
        rgba(0,0,0,.55),
        rgba(0,0,0,.75)
    )
}

.hero-overlay{
    position:absolute;
    inset:0;
    background:
    radial-gradient(circle at center,
    rgba(168,85,247,.35),
    transparent 45%);
}

.hero-content{
    position:relative;
    max-width:1000px;
    text-align:center;
    padding:60px 30px;
    z-index:2;
}

.hero-tag{
    display:inline-block;
    padding:10px 22px;
    border-radius:30px;
    background:rgba(255,255,255,.1);
    border:1px solid rgba(255,255,255,.3);
    backdrop-filter:blur(10px);
    font-size:.9rem;
    letter-spacing:2px;
}

.hero-content h1{
    margin:35px 0 25px;
    font-family:'Tangerine',cursive;
    font-size:7rem;
    line-height:.9;
    color:#fff;
    text-shadow:
    0 0 20px #a855f7,
    0 0 40px #6a0dad;
}

.hero-description{
    max-width:800px;
    margin:auto;
    font-family:'Fira Sans Condensed',sans-serif;
    font-size:1.25rem;
    line-height:1.8;
    color:#ddd;
}


.hero-image-wrapper{
    width:100%;
    max-width:1200px;
    margin:50px auto 0;
    padding:0 25px;
    box-sizing:border-box;
    text-align:center;
}

.hero-image-wrapper img{
    display:block;
    width:100%;
    height:auto;
    border-radius:30px;
    border:2px solid rgba(255,255,255,.15);
    box-shadow:0 0 40px rgba(106,13,173,.25);
}

.hero-buttons{
    display:flex;
    justify-content:center;
    gap:20px;
    margin-top:45px;
}

.hero-btn{
    padding:15px 35px;
    border-radius:40px;
    background:#6a0dad;
    color:white;
    text-decoration:none;
    transition:.3s;
    border:1px solid #a855f7;
}

.hero-btn:hover{
    transform:translateY(-5px);
    box-shadow:
    0 0 25px #a855f7;
}

.hero-btn.outline{
    background:transparent;
}


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

.timeline-navigation{
    display:flex;
    justify-content:center;
    flex-wrap:wrap;
    gap:20px;
    padding:40px 20px;
}

.timeline-navigation a{
    text-decoration:none;
    color:white;
    padding:14px 28px;
    border-radius:50px;
    background:
    rgba(168,85,247,.15);
    border:1px solid rgba(168,85,247,.5);
    backdrop-filter:blur(10px);
    transition:.3s;
    font-family:'Fira Sans Condensed',sans-serif;
    font-size:1.1rem;
}

.timeline-navigation a:hover{
    background:#6a0dad;
    transform:translateY(-5px);
    box-shadow:
    0 0 25px rgba(168,85,247,.7);
}

/* ============================================================
   SECTION TITLES
============================================================ */

.section-title{
    max-width:900px;
    margin:120px auto 60px;
    text-align:center;
    padding:0 25px;
}

.section-title span{
    display:inline-block;
    color:#0fff50;
    letter-spacing:4px;
    font-size:.9rem;
    margin-bottom:20px;
}

.section-title h2{
    font-family:'Tangerine',cursive;
    font-size:4.5rem;
    margin:10px 0;
    color:white;
    text-shadow:
    0 0 25px rgba(168,85,247,.8);
}

.section-title p{
    font-family:'Fira Sans Condensed',sans-serif;
    color:#ccc;
    font-size:1.2rem;
    line-height:1.8;
}

/* ============================================================
   STORY CONTAINER
============================================================= */

.pride-story{
    max-width:1200px;
    margin:70px auto;
    padding:35px;
    background:
        linear-gradient(
            135deg,
            rgba(106,13,173,0.15),
            rgba(15,255,80,0.05)
        );
    border-radius:35px;
    border:1px solid rgba(255,255,255,0.12);
    box-shadow: 0 0 40px rgba(106,13,173,0.15);
    backdrop-filter:blur(10px);
}

/* ============================================================
   STORY HEADER
============================================================= */

.story-header{
    text-align:center;
    margin-bottom:45px;
}

.story-category{
    display:inline-block;
    padding:8px 22px;
    border-radius:50px;
    background:rgba(15,255,80,0.12);
    border:1px solid rgba(15,255,80,0.3);
    color:#0FFF50;
    font-size:.9rem;
    letter-spacing:1px;
}

.story-header h2{
    margin:20px 0 15px;
    font-size:2rem;
    color:#a855f7;
}

.story-intro{
    max-width:800px;
    margin:auto;
    color:#ddd;
    line-height:1.8;
}

/* ============================================================
   STORY LAYOUT
============================================================= */

.story-layout{
    display:grid;
    grid-template-columns:45% 55%;
    gap:40px;
    align-items:center;
}

/* ============================================================
   IMAGE AREA
============================================================= */

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

.story-media img{
    width:100%;
    max-height:600px;
    object-fit:contain;
    border-radius:25px;
    border:2px solid rgba(255,255,255,0.15);
    transition:.4s ease;
}

.story-media img:hover{
    transform:scale(1.03);
    box-shadow:
        0 0 30px rgba(15,255,80,0.25);
}


.story-media .pride-video{
    display:block;
    width:100%;
    max-height:600px;
    object-fit:contain;
    border-radius:25px;
    border:2px solid rgba(255,255,255,.15);
    background:#000;
    transition:.4s ease;
    box-shadow:0 0 25px rgba(106,13,173,.2);
}

.story-media .pride-video:hover{
    transform:scale(1.02);
    box-shadow:0 0 35px rgba(15,255,80,.25);
}

/* ============================================================
   CONTENT AREA
============================================================= */

.story-content{
    display:flex;
    flex-direction:column;
    gap:25px;
}

.story-block{
    padding:25px;
    background:rgba(0,0,0,0.35);
    border-radius:22px;
    border-left:4px solid #6A0DAD;
}

.story-block h4{
    color:#0FFF50;
    margin-bottom:12px;
    font-size:1.2rem;
}

.story-block p{
    color:#e5e5e5;
    line-height:1.8;
    margin:0;
    text-align: left;
}

/* ============================================================
   PRIDE RESOURCE LINKS
============================================================ */

.pride-links{
    list-style:none;
    padding:0;
    margin:25px 0 0;
    display:grid;
    grid-template-columns:repeat(2,1fr);
    gap:15px;
}

.pride-links li{
    margin:0;
}

.pride-links a{
    display:block;
    padding:18px 20px;
    border-radius:18px;
    background:rgba(168,85,247,.12);
    border:1px solid rgba(168,85,247,.35);
    color:#e9d5ff;
    text-decoration:none;
    font-family:'Fira Sans Condensed',sans-serif;
    font-size:1rem;
    line-height:1.5;
    transition:.3s;
    backdrop-filter:blur(10px);
}

.pride-links a:hover{
    background:rgba(168,85,247,.3);
    color:white;
    transform:translateY(-4px);
    box-shadow:0 0 25px rgba(168,85,247,.5);

}

/* ============================================================
   RESOURCE BUTTONS
============================================================= */

.resource-button{
    display:inline-flex;
    justify-content:center;
    align-items:center;
    width:max-content;
    padding:12px 28px;
    border-radius:40px;
    background:linear-gradient(
        90deg,
        #6A0DAD,
        #0FFF50
    );
    color:white;
    text-decoration:none;
    font-weight:bold;
    transition:.3s ease;
}


.resource-button:hover{
    transform:translateY(-3px);
    box-shadow:
        0 0 25px rgba(15,255,80,0.4);
}

/* ============================================================
   HIGHLIGHT MESSAGE
============================================================= */

.highlight-message{
    text-align:center;
    padding:10px;
    font-size:1.2rem;
    line-height:1.8;
    font-weight:bold;
    color:#a855f7;
    border-radius:25px;
    letter-spacing:2px;
}

/* ============================================================
   FINAL SECTION
============================================================= */

.final-story{
    margin-bottom:100px;
}

/* ============================================================
   TABLET
============================================================ */

@media (max-width:1024px){

    .pride-hero{
        min-height:650px;
        padding:60px 20px;
    }
    
    .hero-content{
        max-width:90%;
        padding:40px 20px;
    }
    
    .hero-tag{
        font-size:.8rem;
        padding:8px 18px;
    }
    
    .hero-content h1{
        font-size:5rem;
    }
    
    .hero-description{
        font-size:1.1rem;
        line-height:1.7;
    }
    
    .hero-image-wrapper{
        margin:40px auto 0;
        padding:0 20px;
    }
    
    .hero-image-wrapper img{
        border-radius:24px;
    }

    .hero-buttons{
        flex-wrap:wrap;
        gap:15px;
    }
    
    .hero-btn{
        padding:14px 28px;
        font-size:.95rem;
    }
    
    .timeline-navigation{
        gap:15px;
        padding:35px 20px;
    }
    
    .timeline-navigation a{
        padding:12px 22px;
        font-size:1rem;
    }
    
    .section-title{
        margin:90px auto 50px;
    }
    
    .section-title h2{
        font-size:3.5rem;
    }
    
    .section-title p{
        font-size:1.05rem;
    }
    
    .pride-story{
        margin:50px 20px;
        padding:30px;
    }
    
    .story-layout{
        grid-template-columns:1fr;
        gap:30px;
    }
    
    .story-media{
        order:1;
    }
    
    .story-content{
        order:2;
    }
    
    .story-media img{
        max-height:500px;
    }
    
    .story-media .pride-video{
        max-height:500px;
        border-radius:22px;
    }

    .story-header h2{
        font-size:1.8rem;
    }
    
    .story-intro{
        font-size:1rem;
    }
    
    .story-block{
        padding:22px;
    }
    
    .story-block h4{
        font-size:1.1rem;
    }
    
    .story-block p{
        font-size:1rem;
        line-height:1.7;
    }
    
    .pride-links{
        grid-template-columns:1fr;
    }
    
    .pride-links a{
        font-size:.95rem;
        padding:16px 18px;
    }
    
    .highlight-message{
        font-size:1.05rem;
        padding:20px;
    }
    
    }

/* ============================================================
   MOBILE
============================================================ */

@media (max-width:768px){

    .pride-hero{
        min-height:500px;
        padding:40px 15px;
    }
    
    .hero-content{
        width:100%;
        max-width:100%;
        padding:20px 0;
        margin:0 auto;
        box-sizing:border-box;
    }
    
    .hero-tag{
        font-size:.7rem;
        letter-spacing:1px;
        padding:7px 14px;
    }
    
    .hero-content h1{
        font-size:2.5rem !important;
        line-height:.95;
        margin:25px 0 20px;
    }
    
    .hero-description{
        width:100%;
        max-width:100%;
        margin:0 auto;
        padding:0 10px;
        box-sizing:border-box;
        font-size:.75rem;
        line-height:1.7;
        word-break:break-word;
    }
    
    .hero-image-wrapper{
        margin:30px auto 0;
        padding:0 12px;
    }
    
    .hero-image-wrapper img{
        border-radius:18px;
    }

    .hero-buttons{
        flex-direction:row;
        align-items:center;
        gap:15px;
        margin-top:30px;
    }
    
    .hero-btn{
        width:120px;
        text-align:center;
        padding:10px 12px;
        font-size: 0.7rem;
    }
    
    .timeline-navigation{
        gap:10px;
        padding:0 2px;
    }
    
    .timeline-navigation a{
        width:90px;
        text-align:center;
        padding:5px;
        font-size:.7rem;
    }
    
    .section-title{
        margin:70px auto 40px;
        padding:0 18px;
    }
    
    .section-title span{
        font-size:.75rem;
        letter-spacing:2px;
    }
    
    .section-title h2{
        font-size:2rem !important;
    }
    
    .section-title p{
        font-size:.75rem;
        line-height:1.7;
    }
    
    .pride-story{
        margin:35px 12px;
        padding:18px;
        border-radius:22px;
    }
    
    .story-header{
        margin-bottom:30px;
    }
    
    .story-category{
        font-size:.6rem;
        padding:7px 16px;
    }
    
    .story-header h2{
        font-size:1rem !important;
        margin:15px 0;
    }
    
    .story-intro{
        font-size:.75rem;
    }
    
    .story-layout{
        display:flex;
        flex-direction:column;
        gap:22px;
    }
    
    .story-media img{
        width:100%;
        max-height:none;
        border-radius:18px;
    }
    
    .story-media .pride-video{
        width:100%;
        max-height:none;
        border-radius:18px;
    }

    .story-content{
        gap:18px;
    }
    
    .story-block{
        padding:18px;
        border-radius:16px;
        justify-content: center !important;
    }
    
    .story-block h4{
        font-size:1rem;
        margin-top: 2px;
    }
    
    .story-block p{
        font-size:.75rem;
        line-height:1.7;
    }
    
    .pride-links{
        grid-template-columns:1fr;
        gap:12px;
    }
    
    .pride-links a{
        padding:15px;
        font-size:.75rem;
    }
    
    .resource-button{
        width:100%;
        justify-content:center;
    }
    
    .highlight-message{
        font-size:.95rem;
        line-height:1.7;
        letter-spacing:1px;
    }
    
    .final-story{
        margin-bottom:50px;
    }
    
    }