/* Fonts */

@font-face {
    font-family: 'montserrat-regular';
    src: url('../fonts/Montserrat-Regular.ttf');
}

@font-face {
    font-family: 'montserrat-thin';
    src: url('../fonts/Montserrat-Thin.ttf');
}

@font-face {
    font-family: 'roboto-regular';
    src: url('../fonts/Roboto-Regular.ttf');
}

@font-face {
    font-family: 'roboto-bold';
    src: url('../fonts/Roboto-Bold.ttf');
}

@font-face {
    font-family: 'roboto-italic';
    src: url('../fonts/Roboto-Italic.ttf');
}

@font-face {
    font-family: 'roboto-bolditalic';
    src: url('../fonts/Roboto-BoldItalic.ttf');
}

@font-face {
    font-family: 'roboto-sceli';
    src: url('../fonts/Roboto_SemiCondensed-ExtraLightItalic.ttf');
}

@font-face {
    font-family: 'roboto-scel';
    src: url('../fonts/Roboto_SemiCondensed-ExtraLight.ttf');
}

/* General */

body,html {
    background-color: #000;
}

* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

.navbar {
    display: flex;
    align-items: center;
    justify-content: space-between;
    padding: 15px 20px;
    background: #8b7157;
    color: #fff;
    position: fixed;
    width: 100%;
    top: 0;
    z-index: 1000;
}

/* Thanks to Tobias from https://tobiasahlin.com/ :) */
/* Responsive navigation section */

.logo {
    font-family: 'montserrat-regular';
    font-size: 1.5rem;
    font-weight: bold;
    text-transform: uppercase;
}

.nav-links {
    list-style: none;
    display: flex;
    gap: 25px;
}

.nav-links a {
    position: relative;
    color: white;
    text-decoration: none;
    text-transform: uppercase;
    font-size: large;
    font-family: 'montserrat-regular';
    padding-bottom: 3px;
}

.nav-links a:hover {
    color: #fff;
}

.nav-links a::after {
    content: "";
    position: absolute;
    left: 0;
    bottom: -2px;
    width: 100%;
    height: 2px;
    background: white;
    transform: scaleX(0);
    transform-origin: center;
    transition: transform 0.3s ease;
}

.nav-links a:hover::after {
    transform: scaleX(1);
}

.menu-icon {
    font-size: 26px;
    cursor: pointer;
    display: none;
}

#menu-toggle {
display: none;
}

@media (max-width: 768px) {
    .menu-icon {
        display: block;
    }

    .nav-links {
        position: absolute;
        top: 65px;
        right: 0;
        background: #1d1d1d;
        width: 100%;
        flex-direction: column;
        gap: 0;
        display: none;
    }

    .nav-links li {
        border-bottom: 1px solid #333;
        text-align: center;
        padding: 15px 0;
    }

    #menu-toggle:checked ~ .nav-links {
    display: flex;
    }
}
