/* ========================================
   INDEX.HTML SPECIFIC STYLES
   ======================================== */


/* Factsheet Section */
.factsheet-section {
    padding: 0;
    background: transparent;
    min-height: 100vh;
    display: flex;
    flex-direction: column;
}

.factsheet-container {
    width: 100%;
    margin: 0;
    padding: 0;
}

.factsheet-grid {
    display: flex;
    flex-direction: column;
    gap: 20px;
    max-width: none;
    margin: 0;
}

.factsheet-item {
    width: 100%;
    height: 100vh;
    background-size: contain;
    background-position: center center;
    background-repeat: no-repeat;
    position: relative;
    display: flex;
    align-items: center;
    justify-content: center;
    border-radius: 0;
    box-shadow: none;
    background-color: transparent;
}

.factsheet-item:nth-child(1) {
    margin-top: 50px;
    height: 115vh;
}

.factsheet-item:nth-child(2),
.factsheet-item:nth-child(3),
.factsheet-item:nth-child(4),
.factsheet-item:nth-child(5),
.factsheet-item:nth-child(6),
.factsheet-item:nth-child(7),
.factsheet-item:nth-child(8) {
    /* Standard factsheet item styling */
}

.factsheet-item:nth-child(9) {
    height: 115vh;
}

.factsheet-image {
    width: 100%;
    height: 100%;
    object-fit: contain;
    object-position: center;
}

/* Footer Styles */
.footer {
    background: #fff100;
    color: #ffffff;
    /* padding: 60px 20px 30px; */
}

.footer-container {
    max-width: 1200px;
    margin: 0 auto;
}

.footer-content {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 30px;
    margin-bottom: 30px;
    flex-wrap: wrap;
}

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

.footer-info h3 {
    font-size: 1.5rem;
    font-weight: 600;
    margin-bottom: 10px;
    color: #000000;
}

.footer-info p {
    font-size: 1rem;
    color: #000000;
    line-height: 1.6;
    margin: 0;
}


.footer-bottom {
    display: flex;
    justify-content: center;
    align-items: center;
    flex-wrap: wrap;
    gap: 20px;
}

/* Responsive Design */
@media (max-width: 768px) {
    /* Hide loading bar on mobile */
    .loading-bar {
        display: none;
    }
    
    .nav-logo {
        font-size: 1.2rem;
    }
    
    .hamburger {
        display: flex;
    }

    /* Hide nav-menu on mobile by default */
    .nav-menu {
    display: none;
    position: fixed;
    left: -100%;
    top: 70px;
    flex-direction: column;
    background-color: #fdfc01;
    width: 100%;
    text-align: center;
    box-shadow: 0 10px 27px rgba(0, 0, 0, 0.3);
    padding: 2rem 0;
        z-index: 999;
    }
    
    .nav-menu.active {
        left: 0;
        display: flex;
    }


    .factsheet-item:nth-child(1) {
        margin-top: 0px;
        height: 50vh;
    }

    /* Factsheet Section Mobile */
    .factsheet-section {
        padding: 0;
    }

    .factsheet-container {
        padding: 0;
    }

    .factsheet-grid {
        gap: 0;
    }

    .factsheet-item {
        height: 50vh;
        background-size: contain;
        background-position: center center;
        border-radius: 0;
        background-color: transparent;
    }

    .factsheet-item:nth-child(1) {
        margin:0px;
    }

    .factsheet-item:nth-child(2),
    .factsheet-item:nth-child(3),
    .factsheet-item:nth-child(4),
    .factsheet-item:nth-child(5),
    .factsheet-item:nth-child(6),
    .factsheet-item:nth-child(7),
    .factsheet-item:nth-child(8) {
        margin-top: -20vh;
    }

    .factsheet-item:nth-child(9) {
        margin-top: -10vh;
    }

    /* Footer Mobile */
    .footer {
        padding: 40px 20px 20px;
        margin-top: 20px;
    }

    .footer-content {
        flex-direction: column;
        gap: 20px;
    }

    .footer-info h3 {
        font-size: 1.2rem;
    }

    .footer-info p {
        font-size: 0.9rem;
    }

    .footer-bottom {
        flex-direction: column;
        text-align: center;
        gap: 15px;
    }

}

@media (max-width: 480px) {
    .nav-container {
        padding: 0 15px;
    }

    .logo-image {
        height: 50px;
        max-width: 160px;
    }
    
    .factsheet-item:nth-child(1) {
        margin-top: 0px;
        height: 50vh;
    }


    /* Factsheet Section Small Mobile */
    .factsheet-section {
        padding: 0;
    }

    .factsheet-container {
        padding: 0;
    }

    .factsheet-grid {
        gap: 0;
    }

    .factsheet-item {
        height: 50vh;
        background-size: contain;
        background-position: center center;
        border-radius: 0;
        background-color: transparent;
    }

    .factsheet-item:nth-child(1) {
        margin-top: 0px;
    }

    .factsheet-item:nth-child(2),
    .factsheet-item:nth-child(3),
    .factsheet-item:nth-child(4),
    .factsheet-item:nth-child(5),
    .factsheet-item:nth-child(6),
    .factsheet-item:nth-child(7),
    .factsheet-item:nth-child(8) {
        margin-top: -20vh;
    }

    .factsheet-item:nth-child(9) {
        height: 30vh;
    }

    .join-buttons {
        gap: 0;
        margin-bottom: 30px;
    }

    .join-button-card {
        min-height: 280px;
    }

    .card-content {
        padding: 15px 12px;
        min-height: 160px;
    }

    .button-icon {
        font-size: 1.4rem;
    }

    .button-title {
        font-size: 1.1rem;
    }

    .button-description {
        font-size: 0.85rem;
        margin-bottom: 8px;
    }

    .join-btn {
        padding: 12px 20px;
        font-size: 0.95rem;
    }

    /* Back Button Small Mobile */
    .back-home {
        position: static;
        margin-top: 25px;
        text-align: center;
        margin-bottom: 20px;
    }

    .back-link {
        padding: 10px 15px;
        font-size: 0.9rem;
        display: inline-flex;
    }

    /* Footer Small Mobile */
    .footer {
        padding: 30px 15px 15px;
        margin-top: 10px;
    }

    .footer-info h3 {
        font-size: 1.1rem;
    }

    .footer-info p {
        font-size: 0.85rem;
    }
}
