
* {
    box-sizing: border-box;
}

html, body {
    margin: 0;
    padding: 0;
    font-family: 'Roboto', sans-serif;
    overflow-x: hidden;
}

h2 {
    opacity: 0.64;
    font-weight: 400;
    letter-spacing: -0.10rem;
    font-size: 2.42rem;
    line-height: 2.86rem;
    margin: 1.72rem 0px 1.14rem 0px;
}

p {
    opacity: 0.64;
    font-weight: 300;
    font-size: 1rem;
    letter-spacing: 0.02rem;
    line-height: 1.72rem;
    margin: 0px 0px 1.72rem 0px;
}

/* HEADER */
.nav-bar {
    background: #fff;
    box-shadow: 0 2px 4px rgba(0,0,0,0.1);
    position: fixed;
    width: 100%;
    top: 0;
    z-index: 1000;
    display: flex;
    justify-content: space-between;
    align-items: center;
    height: 70px;
    padding: 0 20px;
}

.logo-link {
    display: flex;
    align-items: center;
    text-decoration: none;
    color: #3A7BD5;
    font-weight: 700;
    font-size: 1.3rem;
}

.header-logo {
    height: 40px;
    margin-right: 10px;
}

.menu-items {
    display: flex;
    gap: 20px;
}

    .menu-items a {
        text-decoration: none;
        color: #212121;
        font-weight: 500;
    }

/* BURGER ICON */
.burger {
    display: none;
    flex-direction: column;
    cursor: pointer;
    width: 25px;
    height: 20px;
    justify-content: space-between;
    margin-left: 10px;
}

    .burger div {
        width: 100%;
        height: 3px;
        background-color: #333;
        transition: all 0.3s ease;
    }

    .burger.active div:nth-child(1) {
        transform: rotate(45deg) translate(5px, 5px);
    }

    .burger.active div:nth-child(2) {
        opacity: 0;
    }

    .burger.active div:nth-child(3) {
        transform: rotate(-45deg) translate(6px, -6px);
    }

/* HERO SECTION */
.banner-feature-cover {
    margin-top: 70px; /* Adjusted to match header height */
    min-height: calc(100vh - 70px);
    background: linear-gradient(135deg, #1c1c1c, #2e2b29);
    color: white;
    display: flex;
    align-items: center;
    justify-content: center;
    padding: 20px;
    text-align: center;
}

.container {
    display: flex;
    max-width: 1200px;
    width: 100%;
    justify-content: center;
    align-items: center;
    flex-wrap: wrap;
    gap: 30px;
}

.content-block {
    max-width: 500px;
}

    .content-block h1 {
        font-size: 2.2rem;
        margin-bottom: 20px;
    }

    .content-block p {
        font-size: 1.1rem;
        margin-bottom: 25px;
    }

.download-links {
    display: flex;
    justify-content: center;
    gap: 8px; /* Reduce gap to give more space to images */
    flex-wrap: nowrap;
    padding: 0 5px; /* Minimal padding to center properly */
}

    .download-links img {
        width: 45%; /* Ensure both fit side by side */
        max-width: 200px; /* Control size on mobile */
        min-width: 170px; /* Prevent being too small */
        height: auto;
        cursor: pointer;
        transition: transform 0.3s, filter 0.3s;
        filter: brightness(0.95);
    }


        .download-links img:hover {
            transform: scale(1.05);
            filter: brightness(1);
        }


.col-2 img {
    width: 90%;
    max-width: 300px;
    height: auto;
    margin: 0 auto;
    filter: drop-shadow(0 0 10px rgba(0,0,0,0.5));
}

/* FEATURES SECTION */
.feature-section {
    display: flex;
    align-items: center;
    justify-content: center;
    padding: 40px 20px;
    background: #fff;
    flex-wrap: wrap;
    border-bottom: 1px solid #e0e0e0;
}

    .feature-section:nth-child(even) {
        flex-direction: row-reverse;
    }

.feature-text, .feature-image {
    flex: 1;
    max-width: 500px;
    padding: 20px;
    text-align: center;
}

    .feature-text h2 {
        font-size: 1.8rem;
        color: #333;
        margin-bottom: 15px;
    }

    .feature-text p {
        font-size: 1rem;
        color: #555;
    }

    .feature-image img {
        width: 100%;
        max-width: 280px;
        height: auto;
    }

.feature-list {
    list-style: none;
    padding: 0;
    margin: 0 0 20px 0;
    text-align: left;
    display: inline-block;
}

    .feature-list li {
        opacity: 0.64;
        font-weight: 300;
        font-size: 1rem;
        color: #555;
        margin-bottom: 10px;
    }

/* FOOTER */
.footer {
    background: #f5f5f5;
    padding: 20px;
    text-align: center;
    font-size: 14px;
    color: #757575;
}

    .footer a {
        color: #757575;
        text-decoration: none;
    }

        .footer a:hover {
            text-decoration: underline;
        }

/* MOBILE ADJUSTMENTS */
@media (max-width: 768px) {
    .menu-items {
        position: fixed;
        top: 70px;
        right: -260px; /* Start hidden off-screen */
        width: 200px; /* Set desired width */
        height: 100%;
        background: #fff;
        box-shadow: -2px 0 5px rgba(0,0,0,0.1);
        display: flex;
        flex-direction: column;
        padding: 20px;
        transition: right 0.3s ease;
        z-index: 999;
    }

        .menu-items a {
            text-align: right;
            font-size: 1.2rem;
        }

        .menu-items.active {
            right: 0; /* Slide in */
        }

    .burger {
        display: flex;
    }

    .container {
        flex-direction: column;
        align-items: center;
    }

    .content-block h1 {
        font-size: 1.8rem;
    }

    .col-2 img {
        max-width: 260px;
    }

    .feature-section,
    .feature-section:nth-child(even) {
        flex-direction: column !important;
    }

    .feature-section {
        padding: 20px 10px; /* Reduce vertical & horizontal padding */
    }

    .feature-text, .feature-image {
        padding: 10px; /* Reduce inner padding */
    }

        .feature-text h2 {
            font-size: 1.5rem; /* Slightly smaller headings for mobile */
            margin-bottom: 10px;
        }

    .feature-list li {
        margin-bottom: 6px; /* Tighter list spacing */
    }

    h2 {
        margin: 10px 0 !important;
    }
}

/* DESKTOP OVERRIDES */
@media (min-width: 1024px) {
    .download-links img {
        width: 55%;
        max-width: 260px;
        min-width: 220px;
    }

    .col-2 img {
        max-width: 450px;
    }
}



