h1 {
    font-family: "Epilogue", sans-serif;
}

p {
    font-family: "PT Mono";
}

/* Reset and basic styling */
* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}


/* Content Styling */
/* Hero Section */
.hero {
    position: relative;
    background: url('../img/homeimg.png') no-repeat center center/cover;
    background-attachment: fixed;
    height: 100vh;
    display: flex;
    justify-content: center;
    align-items: center;
    text-align: left;
    padding: 50px;
    color: white;
}

.head1 {
    position: relative;
    background: url('../img/act1img.png') no-repeat center center/cover;
    background-attachment: fixed;
    height: 100vh;
    display: flex;
    justify-content: center;
    align-items: center;
    text-align: center;
    padding: 50px;
    color: white;
}

.head2 {
    position: relative;
    background: url('../img/act2img.png') no-repeat center center/cover;
    background-attachment: fixed;
    height: 100vh;
    display: flex;
    justify-content: center;
    align-items: center;
    text-align: center;
    padding: 50px;
    color: white;
}

.head3 {
    position: relative;
    background: url('../img/act3img.png') no-repeat center center/cover;
    background-attachment: fixed;
    height: 100vh;
    display: flex;
    justify-content: center;
    align-items: center;
    text-align: center;
    padding: 50px;
    color: white;
}

.head4 {
    position: relative;
    background: url('../img/act4img.png') no-repeat center center/cover;
    background-attachment: fixed;
    height: 100vh;
    display: flex;
    justify-content: center;
    align-items: center;
    text-align: center;
    padding: 50px;
    color: white;
}

.head5 {
    position: relative;
    background: url('../img/act5img.png') no-repeat center center/cover;
    background-attachment: fixed;
    height: 100vh;
    display: flex;
    justify-content: center;
    align-items: center;
    text-align: center;
    padding: 50px;
    color: white;
}

/* Content: Vertical stacking for text + arrow */
.content {
    display: flex;
    flex-direction: column;
    /* Stack text-container + arrow vertically */
    align-items: center;
    justify-content: center;
    /* Center everything vertically */
    height: 100%;
    max-width: 1200px;
    width: 100%;
}

.head1 h1,
.head2 h1,
.head3 h1,
.head4 h1,
.head5 h1 {
    font-size: 6rem;
}

h3 {
    font-family: "Epilogue", sans-serif;
}

.text-container {
    display: flex;
    justify-content: center;
    /* Center horizontally */
    align-items: center;
    /* Center vertically */
    gap: 25%;
    /* Space between h1 and info */
    width: 100%;
}

/* Styling for h1 and info */
h1 {
    font-size: 8rem;
    line-height: 1;
    font-weight: bold;
    color: #FF7300;
    max-width: 40%;
    font-family: "Epilogue";
}

.info {
    font-size: 2.5rem;
    font-family: "PT Mono";
    display: flex;
    flex-direction: column;
    justify-content: center;
    text-align: right;
}

.arrow {
    position: absolute;
    /* Position it relative to the hero section */
    bottom: 30px;
    /* Moves the arrow near the bottom */
    left: 50%;
    transform: translateX(-50%);
    /* Centers the arrow horizontally */
    font-size: 3rem;
    cursor: pointer;
    transition: transform 0.3s;
}

.arrow:hover {
    transform: translateX(-50%) scale(1.1);
    /* Keeps the arrow centered on hover */
}


/* Reset and basic styling */
* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

body,
html {
    height: 100%;
    font-family: "PT Mono", monospace;
    color: #333;
    background: #FDF4E9;
    scroll-behavior: smooth;
}

.navbar {
    position: fixed;
    /* This makes the navbar stick to the top of the viewport */
    top: 0;
    left: 0;
    /* Ensure it's aligned to the left of the page */
    width: 100%;
    /* Ensure it spans the entire width of the page */
    z-index: 1000;
    /* Ensures the navbar stays on top of other content */
    background: #FF7300;
    display: flex;
    justify-content: center;
    gap: 20px;
    padding: 15px 0;
    box-shadow: 0 2px 10px rgba(0, 0, 0, 0.1);
}

/* Ensure the navbar links are styled */
.navbar a {
    text-decoration: none;
    font-size: 1.2rem;
    color: white;
    padding: 10px 20px;
    border-radius: 10px;
    transition: background 0.3s, transform 0.3s;
}

/* Hover effect for navbar links */
.navbar a:hover {
    background: #FF5700;
    transform: scale(1.05);
}

/* About Section */
.about {
    padding: 100px 50px;
    background: #FDF4E9;
}

/* Layout styling */
.about-content {
    display: flex;
    justify-content: space-between;
    align-items: stretch;
    /* Ensure both elements stretch to the same height */
    max-width: 1200px;
    margin: 0 auto;
    gap: 50px;
}

/* Text styling */
.text {
    line-height: 1.8;
    display: flex;
    flex-direction: column;
    /* Ensure it behaves like a block element */
}

.about .text {
    width: 60%;
}

/*
.problem-solving .text{
    width: 60%;
}
*/

h2 {
    color: #FF7300;
    font-family: "Epilogue", sans-serif;
    margin-bottom: 20px;
}

p {
    font-size: 1.2rem;
    margin-bottom: 20px;
    margin: auto;
    line-height: 1.8;

}

.bold {
    font-weight: 900;
}

/* Orange box */
.orange-box {
    background: url('../img/homeimg2.jpeg') center;
    background-size: 700px;
    /*    background-repeat: no-repeat;*/
    background-attachment: fixed;
    background-position: right;
    width: 40%;
    height: auto;
    /* Let the box height adapt */
}

/* Responsive design */
@media (max-width: 992px) {
    .about-content {
        flex-direction: column;
        align-items: center;
    }

    .text,
    .orange-box {
        max-width: 100%;
    }

    .orange-box {
        height: 300px;
    }
}

.problem-solving {
    text-align: left;
    width: 1200px;
    justify-self: center;
    padding-bottom: 50px;
}

h2 {
    font-size: 2.5rem;
    color: #FF7300;
    font-family: "Epilogue", sans-serif;
    margin-bottom: 15px;
}

.carousel-container {
    position: relative;
    width: 80vw;
    margin: auto;
    overflow: visible;
    margin-bottom: 40px;
    /* Make sure arrows are not clipped */
}

.progress-bar {
    width: 100%;
    height: 5px;
    background: rgba(255, 115, 0, 0.2);
    margin-bottom: 10px;
}

.progress {
    width: 20%;
    height: 100%;
    background: #FF7300;
    transition: width 0.3s;
}

.carousel-wrapper {
    overflow: hidden;
    display: flex;
    justify-content: flex-start;
    /* Align items to the left */
    width: 100%;
}

.carousel {
    display: flex;
    transition: transform 0.5s ease-in-out;
    margin-left: 0;
    /* Ensure it starts fully visible */
    padding-left: 10px;
    /* Add a little padding to prevent clipping */
}

.card {
    flex: 0 0 40%;
    display: flex;
    align-items: center;
    justify-content: center;
    text-align: center;
    background: #ff7300;
    padding: 40px;
    color: white;
    font-size: 1.5rem;
    height: 400px;
    opacity: 0.5;
    transition: transform 0.5s ease-in-out, opacity 0.5s ease-in-out;
    border-radius: 15px;
    margin: 10px;

}

.card.active {
    flex: 0 0 40%;
    opacity: 1;
    /*    transform: scale(1.1) 0.5s ease-in-out;*/

}

.card a {
    text-decoration: none;
    color: white;
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    width: 100%;
    height: 100%;
}

.number {
    font-size: 4rem;
    font-weight: bold;
}


button {
    position: absolute;
    top: 50%;
    background: none;
    border: none;
    font-size: 2.5rem;
    cursor: pointer;
    color: #444;
    padding: 10px;
}

.prev {
    left: -50px;
}

.next {
    right: -50px;
}

.line {
    height: 3px;
    background-color: #ff7300;
    margin-bottom: 60px;
    width: 80vw;
    justify-self: center;
}

.top {
    margin-top: 75px;
}

.instructions {
    margin-top: 100px;
    background-color: #ff7300;
    color: #FDF4E9;
    padding-bottom: 60px;
}

.instructions ul {
    max-width: 1200px;
    margin: auto;
    font-size: 1.2rem;
    margin-bottom: 20px;
    margin: auto;
    line-height: 1.8;
}

.instructions p {
    /*    padding-top: 50px;*/
    /*    padding-bottom: 60px;*/
    max-width: 1200px;
}

.instructions h3 {
    padding-top: 70px;
    padding-bottom: 50px;
    max-width: 1200px;
    margin: auto;
    font-size: 3.5rem;
    color: #FDF4E9;

}

.findings p {
    padding-top: 50px;
    padding-bottom: 10px;
    max-width: 1200px;
}

.findings h3 {
    padding-top: 40px;
    max-width: 1200px;
    margin: auto;
    font-size: 3.5rem;
    color: #ff7300;
}

.image {
    width: 40%;
    height: auto;
    display: block;
    margin: 50px auto;
    border: 3px solid #ff7300;
    border-radius: 5px;
}

.insights {
    display: flex;
    justify-content: space-around;
    align-items: center;
    text-align: center;
    max-width: 75%;
    margin: auto;
    padding-top: 70px;
    padding-bottom: 70px;

}

.column {
    width: 30%;
}

.circle {
    width: 200px;
    height: 200px;
    background-color: #ff7300;
    /* Placeholder color */
    border-radius: 50%;
    display: flex;
    justify-content: center;
    align-items: center;
    font-size: 2rem;
    font-weight: bold;
    color: #FDF4E9;
    margin: 0 auto;
}

.insights p {
    margin-top: 25px;
    max-width: 200px;
}

.footer {
    max-width: 80%;
    margin: auto;
    font-size: 1.2rem;
    color: #ff7300;
    padding-bottom: 40px;
}

.next {
    float: right;
    color: #ff7300;
}

.next:hover {
    float: right;
    color: #ff9d4c;
}

.back {
    color: #ff7300;
}

.back:hover {
    color: #ff9d4c;
}

.poop {
    padding-top: 80px;
    max-width: 1200px;
    margin: auto;
    font-size: 3.5rem;
    color: #ff7300;
}

.poop2 {
    padding-top: 20px;
    max-width: 1200px;
    margin: auto;
    color: #333;
    font-size: 1.2rem;
    line-height: 1.8em;

}


.twocol {
    display: flex;
    column-count: 2;
    grid-template-columns: 1fr 3fr;
    grid-gap: 50px;
    max-width: 1200px;
    margin: auto;
    align-self: center;
    justify-content: center;
}

.twocol h2 {
    margin-left: 20%;
    align-self: flex-end;
    vertical-align: middle;
    padding-bottom: 50px;
}

.twocol img {
    margin-right: 20%;
}

.activity-page {
    display: flex;
    justify-content: center;
    align-items: center;
    min-height: 100vh;
    background-color: #FDF4E9;
    margin: 0;
}

.activity-container {
    margin-top: 70px;
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    grid-template-rows: auto auto auto;
    gap: 20px;
    max-width: 800px;
}

.activity-card {
    background-color: #FF7300;
    position: relative;
    text-align: center;
    border-radius: 10px;
    overflow: hidden;
    padding-bottom: 20px;
    transition: transform 0.3s ease;
    /* Add transition for smooth effect */
}

.activity-card:hover {
    transform: scale(1.05);
    /* Scale up on hover */
}

/* Center Activity 5 card without making it wider */
.activity-card-wide {
    grid-column: 1 / 3;
    /* This centers the wide card within the grid */
    justify-self: center;
    /* Center the card horizontally */
}

.activity-card img {
    width: 100%;
    height: 200px;
    object-fit: cover;
    border-radius: 5px;
}

.activity-card .overlay-text {
    position: absolute;
    top: 50%;
    left: 50%;
    opacity: 0.8;
    transform: translate(-50%, -50%);
    color: #FDF4E9;
    padding: 10px;
    border-radius: 5px;
    font-weight: bold;
    z-index: 1;
    font-family: "Epilogue";
    font-size: 2rem;
}



.activity-card .description {
    margin-top: 10px;
    padding: 10px;
    color: #FDF4E9;
    position: relative;
    z-index: 2;
    opacity: 0.8
}

.activity-card .overlay-text {
    transition: transform 0.3s ease, opacity 0.3s ease;
}

.activity-card:hover .overlay-text {
    transform: translate(-50%, -60%);
    /* Move text up */
    opacity: 1;
    /* Fade the text on hover */
}

.activity-card .description {
    transition: opacity 0.3s ease;
}

.activity-card:hover .description {
    /* Move text up */
    opacity: 1;
    /* Fade the text on hover */
}

/* Reset and basic styling */
* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

.timeline-body {
    background: #FFF4E6;
    color: #333;
    line-height: 1.6;
    padding: 40px 0;
}

/* Timeline container */
.timeline-container {
    position: relative;
    width: 80%;
    max-width: 1100px;
    margin: 0 auto;
    padding: 20px 0;
    display: flex;
    flex-direction: column;
}

/* Vertical line placed on the left */
.timeline-container::before {
    content: '';
    position: absolute;
    left: 40px;
    /* Adjusted line position */
    top: 0;
    width: 4px;
    height: 100%;
    background: #FF7300;
}

/* Activity section */
.timeline-activity {
    display: flex;
    align-items: center;
    justify-content: flex-start;
    margin: 60px 0;
    position: relative;
    padding-left: 100px;
    /* Space between line and content */
    transition: transform 0.3s;
}

/* Hover effect: subtle scale increase */
.timeline-activity:hover {
    transform: scale(1.02);
}

.timeline-activity:hover .timeline-heading,
.timeline-activity:hover .timeline-subheading,
.timeline-activity:hover .timeline-text {
    transform: scale(1.05);
    transition: transform 0.3s;
}

/* Circle marker centered */
.timeline-circle {
    width: 25px;
    height: 25px;
    background: #FF7300;
    border-radius: 50%;
    position: absolute;
    left: 42px;
    /* Align circle with the line */
    top: 50%;
    transform: translate(-50%, -50%);
    z-index: 1;
    transition: transform 0.3s;
}

/* Slightly enlarge circle on hover */
.timeline-activity:hover .timeline-circle {
    transform: translate(-50%, -50%) scale(1.2);
}

/* Content box */
.timeline-content {
    width: 70%;
    padding: 30px;
    transition: transform 0.3s, opacity 0.3s;
}

/* Headings */
.timeline-heading {
    font-size: 2.5rem;
    color: #FF7300;
    margin-bottom: 10px;
    transition: transform 0.3s;
}

.timeline-subheading {
    font-size: 1.5rem;
    color: #FF7300;
    margin-bottom: 20px;
    transition: transform 0.3s;
}

/* Paragraph */
.timeline-text {
    font-size: 1rem;
    line-height: 1.8;
    opacity: 0.9;
    transition: transform 0.3s;
}

/* Scroll animations */
[data-aos="fade-up"] {
    opacity: 0;
    transform: translateY(30px);
    transition: opacity 0.6s ease-out, transform 0.6s ease-out;
}

[data-aos="fade-up"].aos-animate {
    opacity: 1;
    transform: translateY(0);
}

/* Responsive Design */
@media (max-width: 768px) {
    .timeline-container::before {
        left: 15px;
    }

    .timeline-circle {
        left: 15px;
    }

    .timeline-activity {
        padding-left: 60px;
    }

    .timeline-content {
        width: 90%;
    }
}

.whatev {
    max-width: 80%;
    margin: auto;
    padding-top: 170px;
}

.whatev h1 {
    font-size: 6rem;
    max-width: 100%;

}
