html, body {
    margin: 0;
    padding: 0;
    height: 100%; /* Ensure full height */
    width: 100%; /* Ensure full width */
}

body {
    margin: 0;
    padding: 0;
    height: 100%;
    width: 100%;
    font-family: 'Roboto', sans-serif;
    color: white; /* Default text color */
}
.navbar {
    z-index: 1000; /* Ensures the navbar stays on top of other content */
    background-color: #0D1117; /* Navbar background color */
}

.navbar-nav {
    margin: auto;
}

.navbar-collapse {
    display: flex;
    justify-content: space-between;
    width: 100%;
}

/* Style for buttons on the right */
.navbar-buttons {
    display: flex;
    align-items: center; /* Align buttons horizontally */
}

.navbar-brand img {
    height: 40px;
}

.navbar-nav .nav-item {
    margin: 0 5px;
}

.navbar-nav .nav-link {
    color: #B2AFAF;
    font-size: 15px;
    text-decoration: none;
    padding: 10px 12px;
}

.navbar-nav .nav-link.active {
    color: #FFFFFF;
}

.btn-login {
    color: #FE8D25 !important;
    border: solid 1px #0D1117 !important;
    /* background-color: #FE8D25; */
    /* padding: 8px 12px; */
    /* border-radius: 6px; */
    font-size: 16px;
    text-decoration: none;
    font-family: "Roboto";
    margin-right: 12px;
    white-space: nowrap;
}

.btn-login:hover {
    color: #b66011 !important;
}

.btn-register {
    color: #0D1117;
    background-color: white;
    /* padding: 10px 16px; */
    border-radius: 24px  !important;
    font-size: 14px;
    text-decoration: none;
    font-family: "Roboto";
}

.hero-container {
    position: relative;
    margin: 0;
    padding: 0;
    background-image: url('../../halu/Dashboard3.png'); /* Use relative path */
    background-size: cover; /* Scale image to cover the whole area */
    background-position: center; /* Center the image */
    background-repeat: no-repeat; /* Prevent repeating */
    height: 100vh; /* Full viewport height */
    display: flex;
    flex-direction: column;
    justify-content: center; /* Center content vertically */
    padding-top: 60px; /* Adjust this based on your navbar height */
}

.hero-content {
    position: relative;
    z-index: 1; /* Ensure hero content is on top of background image */
    margin-left: 40px;
    text-align: left;
    color: white;
}

.hero-text, .hero-description {
    text-align: left;
}

.hero-description {
    max-width: 600px;
    font-size: 15px;
    line-height: 1.6;
    margin: 0;
}

.btn-signup {
    display: inline-block;
    background-color: white !important;
    color: #2E2E2E;
    padding: 12px 24px;
    border-radius: 6px;
    font-size: 16px;
    text-decoration: none;
    font-family: "Roboto";
    text-align: center;
    margin-top: 30px;
}

.btn-signup img {
    vertical-align: middle;
    margin-left: 8px;
    height: 14px;
}

.cta-text {
    margin-top: 10px;
    font-size: 10px;
    color: white;
    text-align: left;
    font-family: 'Roboto';
    font-style: italic;
}

.store-buttons-container {
    display: flex;
    justify-content: flex-start;
    margin-top: 20px;
    width: 100%;
    max-width: 600px;
    padding-left: 0;
}

.store-buttons {
    display: flex;
    gap: 15px;
}

.store-button {
    display: inline-block;
    border-radius: 6px;
    text-decoration: none;
}

.store-button img {
    display: block;
    height: 40px;
    width: auto;
}

.stats-text {
    font-size: 16px;
    color: white;
    font-family: 'Roboto';
    text-align: left;
}

.stats-number {
    font-size: 24px; /* Adjust the size as needed */
    font-weight: bold;
}

/* Media queries for responsive text sizing */
@media (max-width: 1200px) {
    body {
        font-size: 15px;
    }

    .hero-content h1 {
        font-size: 2.2em;
    }

    .hero-description {
        font-size: 15px;
    }

    .btn-signup {
        font-size: 15px;
    }

    .cta-text {
        font-size: 11px;
    }

    .stats-text {
        font-size: 15px;
    }
}

@media (max-width: 992px) {
    body {
        font-size: 14px;
    }

    .hero-content h1 {
        font-size: 2em;
    }

    .hero-description {
        font-size: 14px;
    }

    .btn-signup {
        font-size: 14px;
    }

    .cta-text {
        font-size: 10px;
    }

    .stats-text {
        font-size: 14px;
    }
}

@media (max-width: 768px) {
    body {
        font-size: 13px;
    }

    .hero-content h1 {
        font-size: 1.8em;
    }

    .hero-description {
        font-size: 13px;
    }

    .btn-signup {
        font-size: 13px;
    }

    .cta-text {
        font-size: 9px;
    }

    .stats-text {
        font-size: 13px;
    }
}

@media (max-width: 576px) {
    body {
        font-size: 12px;
    }

    .hero-content h1 {
        font-size: 1.5em;
    }

    .hero-description {
        font-size: 12px;
    }

    .btn-signup {
        font-size: 12px;
    }

    .cta-text {
        font-size: 8px;
    }

    .stats-text {
        font-size: 12px;
    }
}

#membership-divider {
    background-color: #3f4348; /* Same as the running belt color */
    padding: 50px 20px;
    color: white;
    font-family: "Roboto";
}

.membership-title {
    font-size: 2rem;
    margin-bottom: 10px;
    text-align: left;
    margin-left: 40px; /* Add left margin */
}

.membership-description {
    font-size: 0.9rem !important;
    text-align: left;
    margin-left: 40px; /* Add left margin */
}


.btn-signup2 {
    background-color: white !important;
    color: black;
    padding: 10px 20px;
    text-align: center;
    text-decoration: none;
    display: inline-block;
    border-radius: 5px;
    margin-right: 40px; /* Add right margin */
}

.btn-signup2 img {
    margin-left: 5px;
}
.gradient-text {
    background: linear-gradient(to right, #EEEEEE, #BDBDBD);
    -webkit-background-clip: text;
    background-clip: text;
    -webkit-text-fill-color: transparent;
}