/*! HOMEPAGE LOGO ~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~ */
#homePageLogo{
    text-align: center;
    animation: homePageLogoAnim 1s ease-out 0s 1 normal forwards;
    img{
        height: 350px;
        margin: 0;
    }
    p{
        color: white;
        font-size: 35px;
        margin: 0;
        transform: translateY(-15px);
    }
    margin-bottom: 10px;
}
@media (max-width: 1000px) {
    #homePageLogo {
        img{
            height: 300px;
        }
        p{
            font-size: 30px;
            transform: translateY(-5px);
        }
    }
}
@media (max-width: 800px) {
    #homePageLogo {
        img{
            height: 250px;
        }
        p{
            font-size: 25px;
            transform: translateY(0px);
        }
    }
}
@media (max-width: 600px) {
    #homePageLogo {
        img{
            height: 200px;
        }
        p{
            font-size: 20px;
            transform: translateY(0px);
        }
    }
}
@keyframes homePageLogoAnim {
	0% {
		opacity: 0;
		transform: translateY(-250px);
	}

	100% {
		opacity: 1;
		transform: translateY(0);
	}
}

/*! STARTER NAVIGATION ~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~ */
#fastNav{
    
    width: 60%;
    margin: 0 auto;
    text-align: center;
    color: white;
    background: rgba(255, 255, 255, 0.1);
    box-shadow: 0 4px 10px rgba(0, 0, 0, 0.2);
    backdrop-filter: blur(3px);
    border-radius: 25px;
    padding: 10px;
    padding-bottom: 30px;
    h1{
        padding: 0;
        transform: translateY(-8px);
    }
    .fastNavWindows{
        display: flex;
        justify-content: center;
        align-items: center;
        gap: 5%;
        div{
            width: 300px;
            border-radius: 18px;
            img{
                width: 100px;
                transform: translateY(10px);
                transition: all 0.3s ease;
            }
            h3{
                font-size: 25px;
                margin-bottom: 5px;
                transition: all 0.3s ease;
            }
            p{
                color: rgb(200, 200, 200);
                margin-top: 0;
                padding-left: 3px;
                padding-right: 3px;
                transition: all 0.3s ease;
            }
            transition: all 0.3s ease;
        }
    }
    .fastNavWindows div:hover{
        cursor: pointer;
        background: rgba(255, 255, 255, 0.1);
        box-shadow: 0 4px 10px rgba(0, 0, 0, 0.2);
        backdrop-filter: blur(3px);
        border-radius: 18px;
    }
    .fastNavWindows div {
        opacity: 1;
        transform: scale(1);
    }
    
    .fastNavWindows div.not-hovered {
    opacity: 0.5;
    transform: scale(0.9);
    }
}
@media (max-width: 1000px) {
    #fastNav {
        width: 70%;
        h1{
            font-size: 24px;
            padding: 0;
            transform: translateY(-5px);
        }
        .fastNavWindows {
            flex-direction: column;
            align-items: center;
            gap: 10px;
            div {
                width: 100%;
            }
        }
    }
}
@media (max-width: 1500px) {
    #fastNav {
        width: 80%;
        .fastNavWindows {
            display: flex;
            justify-content: center;
            align-items: center;
            gap: 5px;
            div {
                width: 100%;
            }
        }
    }
}
@keyframes fastNavAnim {
	0% {
		opacity: 0;
		transform: translateY(250px);
	}

	100% {
		opacity: 1;
		transform: translateY(0);
	}
}

.fastNavButtons {
    display: flex;
    gap: 0;
    flex-direction: row;
    justify-content: space-between;
    width: 400px;
    margin: 0 auto;
}
@media (max-width: 900px) {
    .fastNavButtons {
        flex-direction: column;
    }
}

.disabledWindow{
    pointer-events: none;
    opacity: 0.5;

    img{
        opacity: 0.5;
    }
    h3{
        opacity: 0.5;
    }
    p{
        opacity: 0.5;
    }
}

/*! NEWS ~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~ */
#newsButton{
    display: none; /* Remove when CK News is ready to launch*/
    margin: 0 auto;
    text-align: center;
    margin-top: 20px;
    a{
        display: inline-block;
        color: #000;
        text-decoration: none;
        font-weight: bold;
        background: #e78970;
        border-radius: 25px;
        padding: 10px 20px;
        transition: background 0.3s ease, box-shadow 0.3s ease, transform 0.3s ease, color 0.3s ease;
    }
    a:hover{
        background: #7b68ee;
        color: #fff;
        box-shadow: 0 0 15px #7b68ee;
        transform: scale(1.05);
    }
}

/*! ABOUT US ~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~ */
#aboutUsButton{
    margin: 0 auto;
    text-align: center;
    margin-top: 20px;
    a{
        display: inline-block;
        color: #000;
        text-decoration: none;
        font-weight: bold;
        background: #e78970;
        border-radius: 25px;
        padding: 10px 20px;
        transition: background 0.3s ease, box-shadow 0.3s ease, transform 0.3s ease, color 0.3s ease;
    }
    a:hover{
        background: #7b68ee;
        color: #fff;
        box-shadow: 0 0 15px #7b68ee;
        transform: scale(1.05);
    }
}

#aboutUs{
    width: 60%;
    margin: 0 auto;
    text-align: center;
    color: white;
    background: rgba(255, 255, 255, 0.1);
    box-shadow: 0 4px 10px rgba(0, 0, 0, 0.2);
    backdrop-filter: blur(3px);
    border-radius: 25px;
    padding: 10px;
    padding-bottom: 30px;
    display: flex;
    gap: 20px;
    flex-direction: row;
    justify-content: space-between;
}
@media (max-width: 1000px){
    #aboutUs{
        width: 70%;
        flex-direction: column;
    }
}
@media (max-width: 1500px){
    #aboutUs{
        width: 80%;
    }
}
#aboutUsDivLeft, #aboutUsDivRight{
    p{
        text-align: justify;
        color: rgb(200, 200, 200);
    }
}
.logoShowcase{
    img{
        height: 70px;
        cursor: pointer;
        transition: all 0.3s ease;
    }
    img:hover{
        transform: scale(1.1);
    }
}
.showcaseLabel{
    font-size: 20px;
    padding: 5px;
    margin: 0;
    margin-top: 15px;
    color: white;
    background: rgba(255, 255, 255, 0.1);
    box-shadow: 0 4px 10px rgba(0, 0, 0, 0.2);
    backdrop-filter: blur(3px);
    border-radius: 25px;
    transition: all 0.3s ease;

}


/*! MEMBERS ~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~ */
#members{
    width: 60%;
    margin: 0 auto;
    text-align: center;
    color: white;
    background: rgba(255, 255, 255, 0.1);
    box-shadow: 0 4px 10px rgba(0, 0, 0, 0.2);
    backdrop-filter: blur(3px);
    border-radius: 25px;
    padding: 10px;
    padding-bottom: 30px;
}
@media (max-width: 1000px){
    #members{
        width: 70%;
    }
}
@media (max-width: 1500px){
    #members{
        width: 80%;
    }
}
.memberContainer{
    width: 100%;
    display: flex;
    justify-content: center;
    align-items: flex-start;
    flex-wrap: wrap;
}
.memberCard{
    width: 200px;
    padding: 10px;
    margin: 0 auto;
    border-radius: 18px;
    transition: all 0.3s ease;
}
.memberPic{
    height: 150px;
    border-radius: 18px;
    margin: 0;
    margin-bottom: 10px;
}
.memberName{
    margin: 0;
    font-size: 25px;
}
.memberSocial{
    display: flex;
    justify-content: center;
    align-items: center;
}
.memberTitle{
    margin: 0;
    font-size: 15px;
}

.memberBranch {
    margin: 8px 0 0;
    font-size: 14px;
    font-style: italic;
    color: rgb(190, 190, 190);
}

.memberCard:hover{
    background: rgba(255, 255, 255, 0.1);
    box-shadow: 0 4px 10px rgba(0, 0, 0, 0.2);
    backdrop-filter: blur(3px);
    border-radius: 18px;
}
.memberCard {
    opacity: 1;
    transform: scale(1);
}
.memberCard.not-hovered {
opacity: 0.5;
transform: scale(0.9);
}

.memSocIcon{
    height: 40px;
    margin: 0 20px;
    opacity: 1;
    position: absolute;
    transition: all 0.3s ease;
}
.memSocIconS{
    height: 40px;
    margin: 0 20px;
    opacity: 0;
    transition: all 0.3s ease;
}
.memSocIcon:hover{
    transform: scale(1.1);
    opacity: 0;
}
.memberSocial a:hover .memSocIcon{
    opacity: 0;
}
.memberSocial a:hover .memSocIconS{
    transform: scale(1.1);
    opacity: 1;
    filter: drop-shadow(0 0 15px rgba(0, 0, 0));
}

/*! Volunteers ~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~ */
#loadVolunteers {
    appearance: none;
    -webkit-appearance: none;
    background: #e78970;
    font-family: "Comfortaa";
    font-size: 20px;
    color: #000;
    border: none;
    border-radius: 25px;
    padding: 10px 20px;
    cursor: pointer;

    transition: background 0.3s ease, box-shadow 0.3s ease, transform 0.3s ease, color 0.3s ease;
}
#loadVolunteers:hover {
    background: #7b68ee;
    color: #fff;
    box-shadow: 0 0 15px #7b68ee;
    transform: scale(1.05);
}

.volunteerProject{
    font-size: 25px;
    font-weight: bold;
    margin: 0;
    margin-top: 20px;
}
.volunteerName{
    font-size: 18px;
    margin: 0;
    margin-top: 10px;
    a{
        color: #e78970;
        text-decoration: none;
        transition: all 0.3s ease;
    }
}
.volunteerName a:hover{
    color: #7b68ee;
    text-decoration: none;
}
.volunteerTitle{
    font-size: 15px;
    margin: 0;
    margin-bottom: 10px;
    color: rgb(200, 200, 200);
}

/*!Timeline ~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~ */
.timeline-section-wrapper {
    width: 61%; 
    max-width: 1600px; 
    margin: 0 auto;
    margin-top: 30px;
    margin-bottom: 5px;
    padding: 0px; 
    padding-bottom: 25px; 
    background: rgba(255, 255, 255, 0.08);
    backdrop-filter: blur(5px);
    border-radius: 25px;
    box-shadow: 0 6px 20px rgba(0, 0, 0, 0.25);
    border: 1px solid rgba(255, 255, 255, 0.1);
    max-height: 800px;
    display: flex;
    flex-direction: column;
    box-sizing: border-box; 
    transition: width 0.4s ease-in-out, max-width 0.4s ease-in-out, box-shadow 0.4s ease-in-out; /* Added transition */
}

.timeline-section-wrapper:hover {
    width: 90%; /* Increase width on hover */
    max-width: 1700px; /* Optionally increase max-width too */
    box-shadow: 0 8px 25px rgba(0, 0, 0, 0.3), 0 0 15px rgba(255,255,255,0.1); /* Enhance shadow on hover */
}

/* Responsive width adjustments for timeline-section-wrapper */
@media (max-width: 1500px) {
    .timeline-section-wrapper {
        width: 80%;
    }
    .timeline-section-wrapper:hover {
        width: 95%;
         /* max-width remains 1700px or could be adjusted if needed for this breakpoint specifically */
    }
}

@media (max-width: 1000px) {
    .timeline-section-wrapper {
        width: 83%; 
    }
    .timeline-section-wrapper:hover {
        width: 95%;
        /* max-width remains 1700px or could be adjusted */
    }
}
@media (max-width: 700px) { /* Example for smaller screens, you might want less expansion */
    .timeline-section-wrapper {
        /* Base width for very small screens if different from 70% */
        /* width: 90%; */ 
    }
    .timeline-section-wrapper:hover {
        /* width: 95%; */
        /* Or perhaps no expansion or a smaller pixel-based one on very small screens */
    }
}


.timeline-section-wrapper h1,
.timeline-section-wrapper h4 {
    text-align: center;
    flex-shrink: 0;
    margin-left: auto;
    margin-right: auto;
    /* Titles no longer need their own horizontal padding as wrapper provides it */
}
.timeline-section-wrapper h1 { font-size: 2.5em; font-weight: 500; margin-bottom: 0px; color: #ffffff;}
.timeline-section-wrapper h4 { color: #b0b0b0; font-size: 1.1em; font-weight: 400; margin-bottom: 20px;}


.timeline-viewport {
    overflow: hidden; 
    position: relative;
    cursor: grab;
    flex-grow: 1;
    background-color: #1a1a1a; 
    background-image:
        linear-gradient(rgba(255, 255, 255, 0.03) 1px, transparent 1px),
        linear-gradient(90deg, rgba(255, 255, 255, 0.03) 1px, transparent 1px);
    background-size: 40px 40px; 
    background-position: -1px -1px; 
}
.timeline-viewport.grabbing { cursor: grabbing; }

.timeline-full-content {
    position: relative;
    display: inline-block; 
}

.timeline-sticky-header {
    position: sticky;
    top: 0;
    z-index: 20; 
    background: #131313; 
    pointer-events: none; 
}
 .timeline-sticky-header > * { 
    pointer-events: auto;
}


.timeline-ruler {
    position: relative;
    height: 60px;
    border-bottom: 3px solid rgba(255, 255, 255, 0.15);
    min-width: 100%;
}

.timeline-ruler-marker {
    position: absolute;
    transform: translateX(-50%);
    font-size: 0.8em;
    color: rgba(255, 255, 255, 0.7);
    text-align: center;
}
.timeline-ruler-marker.year {
    font-size: 1em;
    font-weight: bold;
    color: rgba(255, 255, 255, 0.9);
    bottom: 30px;
}
.timeline-ruler-marker.month {
    bottom: 18px; 
}

.timeline-ruler-marker.month::before,
.timeline-ruler-marker.year::before {
    content: '';
    position: absolute;
    left: 50%;
    transform: translateX(-50%);
}
.timeline-ruler-marker.month::before {
    bottom: -36px; 
    width: 1px;
    height: 8px;
    background-color: rgba(255, 255, 255, 0.3);
}
.timeline-ruler-marker.year::before {
    bottom: -48px; 
    width: 2px;
    height: 15px;
    background-color: rgba(255, 255, 255, 0.5);
}

.timeline-sticky-dots-container {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%; 
    height: 60px;
}

.timeline-event-sticky-dot {
    position: absolute;
    width: 16px;
    height: 16px;
    background-color: #e78970; 
    border: 3px solid #1e1e1e;
    border-radius: 50%;
    z-index: 22;
    box-shadow: 0 0 8px rgba(231, 137, 112, 0.5);
    transform: translate(-50%, -50%);
    top: calc(60px - 1.5px);
}
.timeline-event-sticky-dot.future-event { 
     background-color: #7b68ee; 
     box-shadow: 0 0 8px rgba(123, 104, 238, 0.5);
}


.timeline-events-container {
    position: relative;
    min-height: 250px;
    padding-top: 50px;
}

.timeline-event-item {
    position: absolute;
    transform: translateX(-50%);
    width: 280px;
    z-index: 10; 
    pointer-events: none; 
}

.timeline-event-card {
    background: rgba(255, 255, 255, 0.1);
    backdrop-filter: blur(4px);
    box-shadow: 0 5px 15px rgba(0, 0, 0, 0.25);
    border-radius: 15px;
    padding: 15px;
    width: 100%;
    color: white;
    text-align: left;
    border: 2px solid transparent; 
    position: relative;
    min-height: 100px;
    pointer-events: auto; 
}

.timeline-event-card h3 { font-size: 1.2em; margin-top: 0; margin-bottom: 8px; color: #f0f0f0; }
.timeline-event-card .event-date { font-size: 0.8em; color: #aaa; margin-bottom: 10px; }
.timeline-event-card p { font-size: 0.9em; color: #d0d0d0; line-height: 1.5; margin-bottom: 12px; }

.timeline-event-card h3 a.card-title-link {
    color: #e78970; 
    text-decoration: none;
    transition: color 0.2s ease;
    position: relative; 
    z-index: 1; 
}
.timeline-event-card h3 a.card-title-link:hover {
    color: #7b68ee; 
}

.timeline-progress-bar-container {
    width: 90%; 
    margin: 0 auto;
    margin-top: 25px; 
    height: 6px; background: rgba(255, 255, 255, 0.1);
    border-radius: 3px; overflow: hidden; flex-shrink: 0;
    cursor: pointer; /* Indicates the bar is interactive */
}
.timeline-progress-bar {
    height: 100%; background: #e78970; width: 0%; border-radius: 3px;
    transition: width 0.1s linear;
}