:root {
    --c1: #FF8343;
    --c2: #16A9E1;
    --c3: #179BAE;
    --c4: #4158A6;
    --c-btn-cta: #FCB615;
}

* {
    margin: 0;
}

body {
    margin: 0;
    font-family: 'Rubik', sans-serif;

    min-height: 100vh;
}

.page {
    min-height: 100vh;
}

.page-navbar {
    width: 100%;
    /* background-color: #d5ebff; */
    /* gradient from black to transparent */
    background: linear-gradient(180deg, rgba(33, 70, 105, 0.5) 0%, rgba(0, 0, 0, 0) 100%);
}


.page-navbar-bg {
    width: 100%;
    background-color: #ffffff;
}

.page-navbar ul,
.page-navbar-bg ul {
    padding: 1.5em 5em;
    display: flex;
    flex-direction: row;

    list-style: none;

    justify-content: space-between;
    align-items: center;
}

.btn-cta {
    box-sizing: border-box;
    width: fit-content;
    padding: 1em 1.5em;
    background-color: var(--c-btn-cta);
    border-radius: 6vh;
    border: #FFF 2px solid;
    color: #FFF;
    font-size: 18px;

    transition: all 0.2s ease-in;
}

.btn-cta2 {
    box-sizing: border-box;
    width: fit-content;
    padding: 1em 1.5em;
    background-color: rgba(255, 255, 255, 0.30);
    border-radius: 6vh;
    border: #FFF 2px solid;
    color: #000;
    font-size: 18px;
    font-weight: 400;

    transition: all 0.2s ease-in;
}

.btn-cta3 {
    box-sizing: border-box;
    width: auto;          /* Changed from 30% to auto to fit content */
    padding: 0.6em 1em;   /* Reduced padding for smaller size */
    background-color: rgba(0, 28, 243, 0.685);
    border-radius: 4vh;   /* Smaller border radius */
    border: #0015c1 2px solid; /* Changed border color for visibility */
    color: #FFF;          /* Changed text color to white for better contrast */
    font-size: 16px;      /* Reduced font size from 18px */
    font-weight: 400;
    display: inline-block; /* Added to ensure proper display as a button */
    text-align: center;    /* Center text */
    text-decoration: none; /* Remove underline from link */
    transition: all 0.2s ease-in;
}

.button-container {
    display: -block;
    /* Use flexbox for inline layout */
    justify-content: center;
    /* Center the buttons horizontally */
}

.inline-button {
    margin: 0 10px;
    /* Add spacing between buttons */
}

.page-navbar-bg .nav-item {
    color: #000000;
}

.navbar li {
    display: flex;
}

.nav-item {
    color: #ffffff;
    font-weight: 600;
    font-size: 1.2em;
    padding: 0.5em 1em;
    border-radius: 1em;
    transition: all 0.2s ease-in;
    display: flex;
}

.nav-item:hover {
    color: #ffffff;
    background-color: var(--c2);
}

a {
    text-decoration: none;
}

.header-logo {
    width: 6em;
    height: auto;
}

.hero {
    /* width: 100%; */
    /* min-height: 70vh; */
    height: fit-content;

}

.hero-img {
    width: 100%;
    height: 100%;
    display: block;
    object-fit: cover;
    /* filter: blur(4px); */
    z-index: -1;
}

.hero-ab {
    background-image: url('img/banner.jpg');
    background-repeat: no-repeat;
    /* gradient from black to transparent */
    background-size: cover;
    height: 100%;
    /* min-height: 50vh; */
}


.hero-nbg {
    background: linear-gradient(90deg, rgba(46, 65, 82, 0.5) 0%, rgba(0, 0, 0, 0) 100%);
    height: 100%;
}

.hero-content {
    padding: 5em;
    width: 50%;
}

.hero-container {
    height: 100%;
}

.hero-headline {
    font-size: 4em;
    font-weight: 500;
    color: #FFFFFF;
}

.img {
    display: block;
    margin-left: auto;
    margin-right: auto;
    width: 70%;
    height: auto;
}

.btn-cta .cta-move {
    transition: all 1s;
}

.cta-move {
    font-size: 2em;
}

.btn-cta:hover {
    background-color: var(--c2);
    color: #000;
}

.btn-cta:hover .cta-move {
    transform: translateX(10px);
    color: var(--c4);
}

.page-content {
    /* background-color: #d5ebff; */
}

.content-container {
    padding: 5em
}

.content-title {
    font-size: 48px;
    color: #214669;
}

.content-title2 {
    font-size: 32px;
    color: #214669;
}

#how-to-sect {
    background-color: transparent;
    z-index: -1;
}

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

#event-partners-sect {
    /* background: linear-gradient(270deg, #ffe49a 0%, #ff9abf 100%); */

    /* background-color: #ECF9FF; */
    background-color: #ECF9FF;
}

#main-activities-sect {
    /* background: linear-gradient(235deg, #d5ebff 0%, #f3a0fa 100%); */
    background-color: #FFF;

    padding: 10em 5em 5em 5em;
    background-image: url('img/Vector.png');
    background-repeat: no-repeat;
    background-size: cover;
    /* color: var(--c2); */
}

#main-activities-sect h1 {
    color: #214669;
    z-index: 2;
}

.center-out {
    width: 100%;
    display: flex;
    flex-direction: row;
    justify-items: center;
    justify-content: center;
    align-items: center;
}

#tentative {
    background-color: #ffffff;
}

#programme-overview {
    background-color: #FEFAEE;
}

#programme-highlights {
    display: flex;
    flex-direction: row;
    gap: 5em;
}

.img-center {
    width: 40vw;
}

#programme-stages {
    display: grid;
    grid-template-columns: 1fr 1fr 1fr;
    gap: 2em;
}

/* resize programme-stages for phones */

.programme-stage {
    background-color: #ECF9FF;
    padding: 2em 1em;
    border-radius: 1em;
}

.tentative-img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    border-radius: 1em;
}

.highlight {
    padding: .5em;
}

.partner-img {
    height: 7em;
    width: auto;
    object-fit: contain;
    gap: 2;
}

.partner-list {
    list-style: none;
    display: flex;
    flex-wrap: wrap;
    flex-direction: row;
    /* justify-content: space-between; */
    justify-content: center;
    gap: 5vw;
    padding: 0;
}


.partner {
    /* padding: 1em; */
    display: flex;
    flex-direction: row;
    gap: 1em;
    align-items: center;
    /* border: 2px var(--c1) solid; */
    /* border-radius: 1em; */
    border-radius: 0;
}

.subtext {
    font-weight: 300;
}

.countdown-timer {
    padding: 2em;
    display: flex;
    flex-direction: row;
    gap: 1em;
    align-items: center;
    border-radius: 1em;

    margin: 2em 0;
}

#event-countdown {
    display: flex;
    flex-direction: column;
    justify-items: center;
    align-items: center;
}

.countdown-cal {
    padding: 1em;
    background-color: var(--c2);
    color: #FFF;
    border-radius: 1em;
    text-align: center;
}

.countdown-cal .content-title {
    width: 3em;
    color: #FFF;
}

#countdown {
    background-color: #FFF;
}

#aliff-cha {
    width: 50%;

    margin-left: 3em;
}

#about-sect {
    background-color: #FFF;
}


#scilab {
    width: 80%;
}

.aliff-imgs {
    margin: 0 auto;
}

.break-into {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 2em;
    align-items: center;
}

.task-list {
    display: flex;
    flex-direction: column;
    gap: 1em;
    list-style: none;
}

.task-list li {
    padding: 0.5em;
    /* background: linear-gradient(90deg, #faa0f2 0%, #faf1a0 100%); */
    /* background-color: var(--c2); */
    /* border-radius: 1em; */
    border-left: 3px var(--c2) solid;

}

.themes-list {
    /* display: flex;
    flex-direction: row;
    gap: 1em;
    list-style: none;
    padding: 0;
    flex-wrap: wrap; */

    display: grid;
    grid-template-columns: 1fr 1fr 1fr 1fr 1fr;
    gap: 1em;
    list-style: none;
    vertical-align: middle;
    text-align: center;
}

.faq-block {
    display: flex;
    flex-direction: row;
    justify-content: space-between;
}

.faq-block button {
    padding: 0.3em;
    color: #ffffff;
    background-color: var(--c2);
    border: none;
    border-radius: 6vh;

    height: 40px;
    width: 40px;
}

.themes-list li {
    padding: 1em;
    /* background: linear-gradient(90deg, #faa0f2 0%, #faf1a0 100%); */
    background-color: var(--c2);
    border-radius: 1em;
    min-height: 3rem;
    vertical-align: middle;
    color: #FFF !important;
}

.faq {
    border-radius: 1em;
}

.faq h2 {
    font-weight: 600;
}

.faqs {
    display: flex;
    flex-direction: column;
    gap: 1em;
}

/* .faq p {
    display: none;
}

.faq-show p {
    display: block;
} */

footer {
    padding: 5em 5em 5em 5em;
    background-color: #ECF9FF;
}

.footer-info {
    display: flex;
    flex-direction: row;
    justify-content: space-between;
}

.footer-links {
    display: flex;
    flex-direction: row;
    justify-items: center;
    align-items: center;
    gap: 2em;
}

.footer-links a {
    text-decoration: underline;
    color: #000000;
}

.agenda-item {
    padding: 0 0 2em 0;
}

.agenda-item .timestamp {
    color: #214669;
    font-weight: 600;

    padding: 1em 0;
}

.agenda-description {
    padding: 2em;
    background-color: #fbe0ae;
    border-radius: .2em;
}

hr {
    border: 0;
    height: 1px;
    background: #9e9e9e;
}

.footer-logo-list {
    display: flex;
    flex-direction: row;
    gap: 1em;
}

.footer-logo {
    height: 3em;
}

.footer-container {
    display: flex;
    justify-content: space-between;
    align-items: center;
    width: 100%;
}

.footer-logo-list {
    display: flex;
    align-items: center;
}

.copyright-text {
    text-align: right;
}

.roadmap {
    width: 60vw;
}

@media only screen and (max-width: 1000px) {
    .break-into {
        grid-template-columns: 1fr;
    }

    #programme-stages {
        grid-template-columns: 1fr;
    }

    .themes-list {
        grid-template-columns: 1fr 1fr;
    }

    #programme-highlights {
        flex-direction: column;
        align-items: center;
    }

    .roadmap {
        width: 100%;
    }
}