/* === Base Reset === */
* {
    margin: 0;
    box-sizing: border-box;
    font-family: "Arial Rounded MT Bold", Arial, sans-serif;
    scrollbar-width: none;
}

body {
    background: #000;
    color: #fff;
    display: flex;
    flex-direction: column;
}

/* === Common Elements === */
a {
    color: #fff;
    text-decoration: none;
    cursor: pointer;
}

.logo {
    height: 1.8rem;
}

.logo-box {
    display: flex;
    align-items: center;
    gap: 0.5rem;
    font-size: 1.9rem;
}

/* === Navbar === */
.nav-bar {
    display: flex;
    align-items: center;
    justify-content: space-between;
    margin-top: 10px;
    height: 50px;
    font-size: 1.2rem;
}

.nav-links {
    display: flex;
    gap: 2rem;
    justify-content: center;
    align-items: center;
}

/* === Hamburger Icon === */
.hamburger-icon {
    display: none;
    flex-direction: column;
    cursor: pointer;
    margin-right: 20px;
}

.hamburger-icon span {
    display: block;
    width: 25px;
    height: 3px;
    background: #fff;
    margin: 4px 0;
    border-radius: 3px;
}

/* === Mobile Menu === */
.hamburger-menu {
    display: none;
    flex-direction: column;
    background: #111;
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    padding: 2rem;
    z-index: 999;
}

.nav-links-mobile {
    display: flex;
    flex-direction: column;
    gap: 1.5rem;
    margin-top: 2rem;
}

/* === Main Body === */
.main-body {
    display: flex;
    justify-content: space-around;
    align-items: center;
    margin-top: 40px;
    font-size: 1.9rem;
    flex-wrap: wrap;
}

.main-content {
    padding: 4rem;
    max-width: 500px;
    line-height: 1.5;
}

.main-pic-img {
    height: 20rem;
    border-radius: 10px;
    margin: 1rem;
}

/* === Useful Buttons === */
.useful-buttons {
    display: flex;
    justify-content: center;
    gap: 2rem;
    margin: 2rem 0;
}

.button-box {
    padding: 1rem 2rem;
    border: 2px solid #fff;
    border-radius: 10px;
    cursor: pointer;
    transition: all 0.3s ease;
}

.button-box:hover {
    background: #fff;
    color: #000;
}

/* === Responsive Design === */
@media screen and (max-width: 768px) {
    .nav-links {
        display: none;
    }

    .hamburger-icon {
        display: flex;
    }

    .hamburger-menu.active {
        display: flex;
    }
}
