﻿body {
    font-family: poppins, sans-serif;
    margin: 0;
    padding: 0;
    background-color: black !important;
    width: calc(100vw - 1rem);
    color: white;
    width: 100vw;
    overflow-x: hidden;
}


header {
    color: white;
    height: 5rem;
}

/* Container setup */
header {
    display: flex;
    justify-content: space-between;
    align-items: center;
    height: 100%;
    padding: 0 1rem;
    gap: 10px;
    width: 100%;
    max-width: 900px;
    margin: 0 auto;
}

    /* Logo */
    header .logo img {
        height: 5rem;
    }

    /* Nav styles */
    header .nav ul {
        list-style: none;
        display: flex;
        gap: 10px;
        margin: 0;
        padding: 0;
        font-size: 1rem;
    }

        header .nav ul li {
            position: relative;
        }

            header .nav ul li a {
                text-decoration: none;
                color: white;
                padding: 10px 15px;
                border-radius: 5px;
                transition: background-color 0.3s;
            }

    /* Contact button */
    header .contact-btn .btn {
        background: linear-gradient(92.51deg, #088FA0 0.48%, #1A4547 100%);
        border: none;
        padding: 10px 20px;
        border-radius: 5px;
        color: white;
        cursor: pointer;
        transition: background-color 0.3s;
    }

    header .menu-toggle {
        font-size: 2rem;
    }

.sm-navbar {
    display: flex;
    width: 100%;
    height: 20vh;
    z-index: 10;
    display: flex;
    flex-direction: column;
    padding: 0;
    background: black;
}

    .sm-navbar .logo {
        width: 100%;
        padding: 0 1rem;
        display: flex;
        justify-content: space-between;
        align-items: center;
    }

        .sm-navbar .logo img {
            height: 5rem;
        }

    .sm-navbar .menu-toggle {
        font-size: 2rem;
    }

.sm-navbar-toggle {
    height: 80vh;
    display: flex;
    flex-direction: column;
    justify-content: space-evenly;
}

.sm-navbar ul {
    list-style: none;
    display: flex;
    flex-direction: column;
    gap: 20px;
    margin: 0;
    padding: 0;
    font-size: 1.5rem;
    text-align: center;
    width: 100%;
}

        .sm-navbar ul li a {
            text-decoration: none;
            color: white;
            padding: 10px 15px;
            border-radius: 5px;
            transition: background-color 0.3s;
            font-size: 1rem;
        }

    .sm-navbar .contact-btn {
        display: flex;
        justify-content: center;
        align-items: center;
        width: 100%;
    }

        .sm-navbar .contact-btn .btn {
            background: linear-gradient(92.51deg, #088FA0 0.48%, #1A4547 100%);
            border: none;
            padding: 10px 30px;
            border-radius: 5px;
            color: white;
            cursor: pointer;
            transition: background-color 0.3s;
            font-size: 1rem;
            margin-top: 20px;
            text-align: center;
        }
