@import url('https://fonts.googleapis.com/css2?family=Klein&display=swap');
@import url('https://fonts.googleapis.com/css2?family=Bricolage+Grotesque&display=swap');

/* Global Styles */
body {
    margin: 0;
    font-family: 'Klein', sans-serif;
    line-height: 1.6;
    color: #333;
    overflow-x: hidden;
    background-color: #f4f4f4;
}

/* Header Styles */
header {
    background-color: #0F163E;
    color: #fff;
    display: flex;
    align-items: center;
    justify-content: space-between;
    padding: 15px 30px;
    position: relative;
}

header .logo img {
    height: 50px;
}

header .nav-stack ul {
    list-style: none;
    margin: 0;
    padding: 0;
    display: flex;
}

header .nav-stack ul li {
    margin-left: 20px;
}

header .nav-stack ul li a {
    color: #fff;
    text-decoration: none;
    font-weight: bold;
}

header .mobile-header {
    display: none;
    align-items: center;
}

header .mobile-logo img {
    height: 50px;
}

header .hamburger {
    display: flex;
    flex-direction: column;
    justify-content: space-between;
    width: 30px;
    height: 20px;
    cursor: pointer;
    margin-right: 20px;
}

header .hamburger span {
    height: 3px;
    background-color: #fff;
    border-radius: 2px;
}

/* Content Centering */
main {
    padding: 20px;
    max-width: 800px;
    margin: 20px auto;
    background: #fff;
    border-radius: 8px;
    box-shadow: 0 0 10px rgba(0, 0, 0, 0.1);
    text-align: center;
}

h1, h2 {
    font-family: 'Klein', sans-serif;
    color: #F59830;
}

p {
    font-family: 'Bricolage Grotesque', sans-serif;
    font-size: 18px;
    margin-bottom: 20px;
    max-width: 70%;
    margin: 0 auto;
}

footer {
    background-color: #0F163E;
    color: #fff;
    text-align: center;
    padding: 20px 30px;
}

footer a {
    text-decoration: underline;
    margin: 0 10px;
}

footer .socials {
    display: flex;
    justify-content: center;
    margin-top: 10px;
}

footer .socials a {
    margin: 0 10px;
    color: #fff;
    font-size: 24px;
    text-decoration: none;
}

/* Mobile-specific adjustments */
@media (max-width: 768px) {
    header .nav-stack {
        display: none;
    }

    header .mobile-header {
        display: flex;
        width: 100%;
        justify-content: center;
        position: relative;
    }

    header .hamburger {
        position: absolute;
        left: 20px;
    }

    header .logo {
        display: none;
    }

    .text-content {
        text-align: center;
        padding: 10px;
    }

    .text-content h1 {
        font-size: 24px;
    }

    .text-content p {
        font-size: 18px;
        margin: 0 auto;
        max-width: 90%;
    }

    .content {
        flex-direction: column;
        text-align: center;
    }
}
