/*

body {
    color: rgb(112, 112, 112);
    font-family: "Hanken Grotesk", sans-serif;
    font-weight: 400;
    cursor: none;
}

*/

* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
    color: #ffffff;
    font-family: "Hanken Grotesk", sans-serif;
}

body {
    background-color: #111111;
    color: #ffffff;
    line-height: 1.6;
}

a {
    text-decoration: none;
    color: #ffffff;
}

h1, h2, h3 {
    margin-bottom: 1rem;
}

/* Header & Navigation */
header {
    background-color: rgba(0, 0, 0, 0.8);
    padding: 1rem 2rem;
    position: fixed;
    width: 100%;
    z-index: 100;
    display: flex;
    justify-content: space-between;
    align-items: center;
}


.logo {
    font-size: 0.9rem;
    font-weight: bold;
    letter-spacing: 1px;
}

.logo:hover {
    color: #5964e0;
}


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

.nav-link {
    font-size: 0.8rem;
    letter-spacing: 1px;
}

.nav-link:hover {
    color: #ff6347;
}

/* Hero Section */

.hero {
    height: 100vh;
    background-image: url(../img/queer_protest.jpg);
    background-size: cover;
    background-position: center;
    position: relative;
}

.overlay {
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background-color: rgba(0, 0, 0, 0.6);
    display: flex;
    align-items: center;
    justify-content: center;
}

.hero-content {
    background-color: rgba(255, 255, 255, 0.15);
    backdrop-filter: blur(5px);
    padding: 2rem;
    border-radius: 10px;
    text-align: center;
    max-width: 600px;
}


.hero h1 {
    font-size: 2.5rem;
    margin-bottom: 1.5rem;
}

.donate-button {
    background-color: #5964e0;
    color: white;
    border: none;
    padding: 0.8rem 2rem;
    font-size: 1rem;
    border-radius: 25px;
    cursor: pointer;
    display: inline-block;
    text-transform: uppercase;
    font-size: 0.8rem;
    font-weight: bold;
    letter-spacing: 1px;
    transition: background-color 0.3s;
}

.donate-button:hover {
    background-color: #4050c8;
}


/* Key Findings Section */
/* top, right, bottom, left */

.hero-findings h1 {
    font-size: 42pt;
    padding: 18rem 8rem 18rem 8rem;
}

.findings {
    padding: 5rem 2rem;
    background-color: #131313;
    text-align: center;
    margin-top: -1px;
}

.findings h2 {
    color: #ccc;
    font-size: 1.3rem;
    letter-spacing: 2px;
    margin-bottom: 3rem;
    text-transform: uppercase;
}

.stat-container {
    display: flex;
    justify-content: space-around;
    flex-wrap: wrap;
    gap: 2rem;
    margin-bottom: 2rem;
}

.stat {
    flex: 1;
    min-width: 250px;
    max-width: 300px;
}

.stat-number {
    font-size: 90px;
    color: #ff6347;
    margin-bottom: 1rem;
}

.stat-description {
    font-size: 18px;
    color: #aaa;
    line-height: 1.4;
}

.learn-more {
    display: inline-block;
    margin-top: 2rem;
    color: #888;
    font-size: 0.9rem;
    letter-spacing: 1px;
    text-transform: uppercase;
    transition: color 0.3s;
}

.learn-more:hover {
    color: #ff6347;
}

/* Pathways Section */
.pathways {
    padding: 1rem 2rem;
    background-color: #0f0f0f;
    flex: 1;
    min-width: 200px;
}

.pathways h2 {
    color: #ccc;
    font-size: 18pt;
    letter-spacing: 2px;
    margin-bottom: 3rem;
    text-transform: uppercase;
    border-bottom: 1px solid #D68010;
    padding-bottom: 0.5rem;
    display: inline-block;
}

.pathway-container {
    display: flex;
    justify-content: space-between;
    flex-wrap: wrap;
    gap: 2rem;
    margin-right: 2rem;
}

.pathway {
    flex: 1;
    min-width: 200px;
}

.pathway h3 {
    font-size: 18pt;
    margin-bottom: 1rem;
    color: #ffffff;
}

.pathway p {
    color: #aaa;
    font-size: 18px;
}

.graph-container {
    display: flex;
    flex-direction: row;
    justify-content: center;
    align-items: flex-start;
    flex-wrap: wrap;
    gap: 2rem;
    margin: 4rem;
}

.graph-image {
    width: 600px;
}

/* Needs Section */

.needs {
    padding: 0rem 1rem;
    padding-bottom: 8rem;
    background-color: #0f0f0f;
    flex: 1;
    min-width: 200px;
}

.needs h2 {
    color: #ccc;
    font-size: 18pt;
    letter-spacing: 2px;
    margin-bottom: 3rem;
    text-transform: uppercase;
    border-bottom: 1px solid #D68010;
    padding: 6rem 1rem;
    padding-bottom: 0.5rem;
    display: inline-block;
}

.needs-container {
    display: flex;
    justify-content: space-between;
    flex-wrap: wrap;
    gap: 2rem;
    margin-right: 2rem;
}

.needs h3 {
    font-size: 18pt;
    margin-bottom: 1rem;
    color: #ffffff;
}

.needs p {
    color: #aaa;
    font-size: 18px;
}

/* Reimagining Section */
.reimagining {
    padding: 0rem 1rem;
    padding-bottom: 6rem;
    background-color: #0f0f0f;
    flex: 1;
    min-width: 200px;
    margin-bottom: 10rem;
}

.reimagining h2 {
    color: #ccc;
    font-size: 18pt;
    letter-spacing: 2px;
    margin-bottom: 3rem;
    text-transform: uppercase;
    border-bottom: 1px solid #D68010;
    padding: 0rem 1rem;
    padding-bottom: 0.5rem;
    display: inline-block;
}

.reimagining-container {
    display: flex;
    justify-content: space-between;
    flex-wrap: wrap;
    gap: 2rem;
    margin-right: 2rem;
}

.reimagining h3 {
    font-size: 18pt;
    margin-bottom: 1rem;
    color: #ffffff;
}

.reimagining p {
    color: #aaa;
    font-size: 18px;
}

/* Experiences Section */
.experiences {
    padding: 5rem 2rem 15rem;
    background-color: #0f0f0f;
}

.experiences h2 {
    color: #ccc;
    font-size: 18pt;
    font-weight: 100px;
    letter-spacing: 2px;
    margin-bottom: 3rem;
    text-transform: uppercase;
    border-bottom: 1px solid #81B058;
    padding-bottom: 0.5rem;
    display: inline-block;
}

.testimony {
    margin-bottom: 3rem;
    border-left: 3px solid #81B058;
    padding-left: 1.5rem;
    padding-right: 15rem;
}

blockquote {
    font-style: italic;
    font-size: 18pt;
    margin-bottom: 1rem;
    line-height: 1.8;
}

.testimony-author {
    color: #aaa;
    text-align: left;
    font-size: 0.9rem;
}

/* Footer */
footer {
    background-color: #0a0a0a;
    margin-top: 2rem;
    padding: 1.5rem 6rem;
    display: flex;
    justify-content: space-between;
    align-items: center;
}

.footer-logo {
    font-size: 12pt;
    font-weight: bold;
    letter-spacing: 1px;
}

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

.footer-link {
    font-size: 0.8rem;
    color: #888;
    letter-spacing: 1px;
    transition: color 0.3s;
}

.footer-link:hover {
    color: #ffffff;
}


/* Experience Carousel */
/* top, right, bottom, left */

main {
    max-width: 1200px;
    justify-content: center;
    margin: auto;
    padding-top: rem;

}

.section-title {
    color: #8a9c7c;
    font-size: 1.2rem;
    font-weight: normal;
    letter-spacing: 2px;
    margin-bottom: 40px;
    padding-bottom: 10px;
    border-bottom: 1px solid #8a9c7c;
}

/* Carousel Styles */
.carousel-container {
    background-size: cover;
    background-position: center;
    position: relative;
    padding-top: 10rem;
    padding-bottom: 3.5rem;

}

.carousel {
    position: relative;
    overflow: hidden;
    height: 600px;
}

.carousel-item {
    position: absolute;
    width: 100%;
    height: 100%;
    opacity: 0;
    transition: opacity 0.5s ease;
}

.carousel-item.active {
    opacity: 1;
}

.story-content {
    display: flex;
    gap: 40px;
    height: 100%;
}

.story-image {
    flex: 0 0 40%;
}

.story-image img {
    width: 100%;
    height: auto;
    max-height: 500px;
    object-fit: cover;
}

.story-text {
    flex: 1;
    padding: 20px 0;
}

.story-text h3 {
    font-size: 1.8rem;
    font-weight: normal;
    color: #ccc;
    margin-bottom: 30px;
}

.story-paragraphs {
    max-height: 400px;
    overflow-y: auto;
    padding-right: 20px;
}

.story-paragraphs p {
    margin-bottom: 20px;
}

/* Carousel Navigation */
.carousel-controls {
    display: flex;
    justify-content: center;
    align-items: center;
    margin-top: 20px;
}

.nav-button {
    background: none;
    border: none;
    color: #8a9c7c;
    font-size: 1.5rem;
    cursor: pointer;
    padding: 0 15px;
    transition: color 0.3s ease;
}

.nav-button:hover {
    color: #fff;
}

.carousel-dots {
    display: flex;
    justify-content: center;
    gap: 10px;
    margin: 0 20px;
}

.dot {
    width: 6px;
    height: 6px;
    border-radius: 50%;
    background-color: #555;
    cursor: pointer;
    transition: background-color 0.3s ease;
}

.dot.active {
    background-color: #8a9c7c;
}

/* Responsive Design */
@media (max-width: 768px) {
    .hero h1 {
        font-size: 18pt;
    }

    .hero-findings h1 {
        font-size: 24pt;
    }
    
    .stat-container, .pathway-container {
        flex-direction: column;
        align-items: center;
    }
    
    .stat, .pathway, .needs, .reimagining {
        max-width: 100%;
    }

    blockquote {
        font-size: 12pt;
    }

    .testimony {
        padding-right: 0rem;
    }

    .story-content {
        margin-left: 2rem;
        margin-right: 2rem;
        display: flex;
        flex-direction: column;
    }

    header, footer {
        flex-direction: column;
        gap: 1rem;
        text-align: center;
    }
    
    .nav-links, .footer-links {
        flex-direction: column;
        gap: 1rem;
    }
}

