/* Global Styles */
* {
    box-sizing: border-box;
    margin: 0;
    padding: 0;
    font-family: 'Kumbh Sans', sans-serif;
}

/* Navbar Styles */
.navbar {
    background: #000000;
    height: 80px;
    display: flex;
    justify-content: center;
    align-items: center;
    font-size: 1.2rem;
    position: sticky;
    top: 0;
    z-index: 999;
}

.navbar__container {
    display: flex;
    justify-content: space-between;
    align-items: center;
    height: 80px;
    width: 100%;
    max-width: 1300px;
    margin: 0 auto;
    padding: 0 50px;
}

#navbar__logo {
    background-image: linear-gradient(to top, #ffffff 0%, #ffffff 100%);
    background-clip: text;
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    color: white;
    font-size: 2rem;
    text-decoration: none;
    cursor: pointer;
}

.navbar__menu {
    display: flex;
    align-items: center;
    list-style: none;
    text-align: center;
}

.navbar__item {
    height: 80px;
}

.navbar__links {
    color: #fff;
    display: flex;
    align-items: center;
    justify-content: center;
    text-decoration: none;
    padding: 0 1rem;
    height: 100%;
}

.navbar__links:hover {
    color: #ffffff;
    transition: all 0.3s ease;
}

/* Mobile Menu Button */
.navbar__toggle {
    display: none;
    flex-direction: column;
    cursor: pointer;
}

.bar {
    width: 25px;
    height: 3px;
    background-color: white;
    margin: 4px 0;
    transition: 0.3s ease;
}

/* Main Section */
.main {
    background-color: #ffffff;
    padding: 5rem 1rem;
}

.main__container {
    display: grid;
    grid-template-columns: 1fr 1fr;
    align-items: center;
    justify-content: center;
    margin: 0 auto;
    width: 100%;
    max-width: 1300px;
    gap: 2rem;
    padding: 0 1rem;
}

.main__content h1,
.main__content h2 {
    background-image: linear-gradient(to top, #000000 0%, #000000 100%);
    background-clip: text;
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
}

.main__content h1 {
    font-size: 2rem;
}

.main__content h2 {
    font-size: 4rem;
}

.main__content p {
    margin-top: 1rem;
    font-size: 1rem;
    font-weight: 200;
    color: #000000;
}

/* Responsive Styles */
@media screen and (max-width: 960px) {
    .navbar__container {
        padding: 0 25px;
    }

    .navbar__toggle {
        display: flex;
    }

    .navbar__menu {
        display: none;
        flex-direction: column;
        width: 100%;
        background: #131313;
        position: absolute;
        top: 80px;
        left: 0;
        z-index: 99;
    }

    .navbar__menu.active {
        display: flex;
        height: auto;
        opacity: 1;
        transition: all 0.5s ease;
    }

    .navbar__item {
        width: 100%;
    }

    .navbar__links {
        padding: 1.5rem;
        width: 100%;
        text-align: center;
        display: block;
    }

    #mobile-menu {
        position: absolute;
        top: 25px;
        right: 25px;
    }

    #mobile-menu.is-active .bar:nth-child(2) {
        opacity: 0;
    }

    #mobile-menu.is-active .bar:nth-child(1) {
        transform: translateY(8px) rotate(45deg);
    }

    #mobile-menu.is-active .bar:nth-child(3) {
        transform: translateY(-8px) rotate(-45deg);
    }

    .main__container {
        grid-template-columns: 1fr;
        text-align: center;
        padding: 2rem 1rem;
    }

    .main__content h1 {
        font-size: 1.8rem;
    }

    .main__content h2 {
        font-size: 2.5rem;
    }

    .main__content p {
        font-size: 1rem;
    }
}

.main__img--container img {
    width: 100%;
    max-width: 400px;
    height: auto;
    border: 2px solid #000000;
    border-radius: 13px;
    box-shadow: 4px 7px 7px 0px #000000;
    cursor: pointer;
    margin: 10px;
    transition: 400ms;
}