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

@import url("https://fonts.googleapis.com/css2?family=Rozha+One&display=swap");
@import url("https://fonts.googleapis.com/css2?family=Nixie+One&display=swap");
@import url(./fonts/Bavex.ttf);

@font-face {
    font-family: "Bavex";
    src: url(./fonts/Bavex.ttf);
}

@font-face {
    font-family: "Grotley";
    src: url(./fonts/GrotleyRegular.otf);
}

@font-face {
    font-family: "Geared";
    src: url(./fonts/GearedSlab-Light.ttf);
}

@font-face {
    font-family: "Renegade";
    src: url(./fonts/Renegade-Regular.otf);
}

@font-face {
    font-family: "RenegadeAlts";
    src: url(./fonts/Renegade-Alts.otf);
}

@font-face {
    font-family: "Swashes";
    src: url(./fonts/TheTricksterSwashes.ttf);
}

body {
    width: 100vw;
    overflow-x: hidden;
    background: #362122;
    overflow-y: auto;
    display: flex;
    align-items: center;
    justify-content: center;
    flex-direction: column;
}

/* REUSABLE */

h1 {
    font-family: "Rozha One";
    font-weight: 600;
    font-size: 5rem;
    color: #3c3532;
}

h2 {
    font-family: "Renegade";
    font-weight: 100;
    font-size: 4rem;
    color: #e1ab71;
}

h3 {
    font-family: "Nixie One";
    font-weight: 300;
    font-size: 2rem;
    color: rgb(184, 140, 113);
}

p {
    font-family: "Grotley";
}

h6 {
    font-family: "Swashes";
    color: #e1ab71;
    font-size: 4rem;
    line-height: 0px;
}



/* NAVBAR */

.navbar {
    width: 100vw;
    height: 80px;
    display: flex;
    justify-content: space-between;
    align-items: center;
    position: relative;
    flex-direction: row;
    z-index: 10;
    top: 0;
    background: #e1ab71;
}

.nav-logo {
    position: relative;
    width: 200px;
    margin-left: 50px;
    overflow: hidden;
    height: 75px;
    display: flex;
    justify-content: center;
    align-items: center;
}

.nav-logo img {
    position: relative;
    width: 100%;
    mix-blend-mode: darken;
    height: 75px;
}

.nav-list {
    position: relative;
    width: 60%;
    height: 80px;
    display: flex;
    justify-content: end;
    gap: 35px;
    align-items: center;
    list-style: none;
    padding-right: 40px;
}

.nav-link {
    cursor: pointer;
    padding: 12px 0px;
    border: 1px solid transparent;
    text-decoration: none;
    color: #3c3532;
    font-family: "Grotley", sans-serif;
    border-radius: 0px;
    transition: all 0.4s ease;
}

.nav-link:hover {
    border-bottom: 1px solid #3c3532;
}

.highlight {
    box-shadow: 5px 5px 25px #0f040170;
    padding: 12px 22px;
    border: 1px solid transparent;
    color: #e1ab71;
    background: #362122;
    transition: all 0.2s ease;
}

.highlight:hover {
    color: #3c3532;
    border: 1px solid #3c3532;
    background: #e1ab71;
}


/* NAVBAR_MOBILE */

.navbar-m {
    display: none;
    width: 100vw;
    height: 80px;
    justify-content: end;
    align-items: center;
    position: relative;
    flex-direction: row;
    z-index: 10;
    top: 0;
    background: #e1ab71;
}

/* GRADIENTS */

.bg-gradient {
    position: absolute;
    width: 150vw;
    height: 130vh;
    pointer-events: none;
    top: 0;
    right: 0;
    z-index: 1;
}

.gr-1 {
    top: 0;
    right: 0;
    left: unset;
    background: radial-gradient(#fdde9b0f, transparent, transparent);
    transform: translateX(50%) translateY(-50%) scale(1.5);
}

.gr-2 {
    top: 70vh;
    left: 0;
    right: unset;
    background: radial-gradient(#0f0401, transparent, transparent);
    transform: translateX(-70%) translateY(-50%);
}

/* HERO */

.hero {
    position: relative;
    display: flex;
    flex-direction: row;
    padding: 50px;
    /* height: 75vh; */
    width: 85vw;
    background: #362122;
    margin-bottom: 50px;
    margin-top: 70px;
    z-index: 2;
    border-radius: 5px;
    box-shadow: 10px 10px 100px #0f040172;
}

.img-container {
    width: 50%;
    height: 30%;
    z-index: 2;
    pointer-events: none;
    overflow: hidden;
    display: flex;
    justify-content: center;
    align-items: center;
    mix-blend-mode: lighten;
}

.hero-content {
    position: relative;
    display: flex;
    justify-content: center;
    align-items: center;
    flex-direction: column;
    gap: 10px;
    flex: 1;
}

.hero-text {
    flex: 1;
    color: #e5e5e5;
    margin: 0 50px;
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: start;
    gap: 20px;
}

.hero-img {
    object-fit: cover;
    /* mix-blend-mode: lighten; */
    height: 100%;
    max-width: 100%;
    position: relative;
}

.hero-portrait {
    width: 150px;
    height: 150px;
    object-fit: cover;
    position: relative;
    border-radius: 50%;
    pointer-events: none;
    border: 5px solid #e1ab71;
    box-shadow: 0px 0px 25px #e1ab714f;
}

.button-container {
    display: flex;
    justify-content: space-evenly;
    gap: 20px;
    align-items: center;
}

.button-container a {
    color: #e1ab71;
    text-decoration: none;
    padding: 13px 20px;
    border: 1px solid transparent;
    display: flex;
    justify-content: center;
    align-items: center;
    gap: 7px;
    box-shadow: 10px 5px 40px #0f0401d9;
    transition: all 0.3s ease;
    font-family: "Grotley";
}

.button-container a:hover {
    border: 1px solid #e1ab71;
    box-shadow: 10px 5px 40px #e1ab7105;
}

.categories {
    position: relative;
    display: flex;
    justify-content: space-evenly;
    align-items: center;
    width: 100%;
    margin-top: 50px;

}

/* SECTIONS */

.categories section {
    position: relative;
    width: 28%;
    display: flex;
    flex-direction: column;
    position: relative;
    height: fit-content;
    align-items: center;
    justify-content: center;
    height: 40vh;
    gap: 20px;
    border-radius: 0px;
    background: #513331;
    box-shadow: 10px 10px 50px #0f04019c;
    transition: all 0.2s ease;
}

.section-img {
    position: absolute;
    width: 60%;
    display: flex;
    justify-content: center;
    align-items: center;
    transform: scale(2);
    z-index: 0;
}

.section-img img {
    position: relative;
    width: 100%;
    height: 100%;
    object-fit: cover;
    pointer-events: none;
}

.section-title a {
    text-decoration: none;
    text-align: center;
    position: relative;
}

.section-title h2 {
    padding: 10px 50px;
    border: 1px solid transparent;
    border-radius: 0px;
    text-decoration: none;
    font-size: 2.5rem;
    background: #362122;
    box-shadow: 10px 10px 50px #0f04019c;
}

.section-content {
    width: 30vw;
    display: flex;
    flex-direction: column;
    gap: 20px;
    z-index: 2;
    margin-top: 50%;
}

.section-text p {
    color: #3c3532;
    font-family: "Grotley", sans-serif;
}

.section-button-container {
    display: flex;
    flex-direction: row;
    gap: 10px;
    justify-content: start;
    align-items: center;
    margin-top: 20px;
}

.section-button a {
    color: #e4ded1;
    background: #803015;
    text-decoration: none;
    font-family: "Rozha One";
    font-size: 1rem;
    padding: 15px;
    border-radius: 50px;
    border: none;
    transition: all 0.3s ease;
}

.categories section:hover {
    box-shadow: 10px 10px 40px #e1ab710c;
}

/* ABOUT */

.about {
    width: 100vw;
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: center;
    margin-top: 100px;
    margin-bottom: 100px;
}

.about h2 {
    font-family: "RenegadeAlts";
}

.about-container {
    width: 75%;
    max-width: 1200px;
    position: relative;
    background: #513331;
    box-shadow: 10px 10px 50px #0f04019c;
    display: flex;
    flex-direction: row;
    justify-content: space-evenly;
    align-items: center;
    margin-top: 50px;
}

.about-img {
    position: relative;
    width: 30%;
    transform: scale(1.1);
    box-shadow: 10px 10px 50px #0f04019c;
}

.about-content {
    width: 50%;
    display: flex;
    flex-direction: column;
    gap: 20px;
    justify-content: center;
    align-items: start;
    margin-right: 30px;
    color: #e5e5e5;
    font-family: "Grotley";
}

.about-content h4 {
    font-size: 1.5rem;
}

/* CONTACT */

.contact {
    width: 100vw;
    position: relative;
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: center;
    margin-bottom: 50px;
}

.contact-title h2 {
    font-family: "RenegadeAlts";
}

.contact-title h6 {
    transform: translateY(-10px);
}

.contact-divider {
    width: 1px;
    height: 200px;
    background: #e1ab71;
    box-shadow: 1px 1px 15px #0f0401;

}

.contact-content {
    width: 75%;
    max-width: 1200px;
    position: relative;
    background: #513331;
    box-shadow: 10px 10px 50px #0f04019c;
    display: flex;
    flex-direction: row;
    justify-content: space-evenly;
    align-items: center;
    margin-top: 50px;
    padding: 30px;
}

.contact-details {
    display: flex;
    flex-direction: column;
    color: #e5e5e5;
    gap: 20px;
}

.contact-details div {
    display: flex;
    flex-direction: row-reverse;
    gap: 16px;
    justify-content: end;
    align-items: center;
}

.contact-details svg {
    width: 24px;
    height: 24px;
}

.contact-form form {
    display: flex;
    flex-direction: column;
    gap: 25px;
}

.contact-form .row {
    display: flex;
    gap: 25px;
}

.contact-form input {
    background: #513331;
    box-shadow: 3px 3px 25px #0f04014e;
    border: none;
    border-bottom: 1px solid #e1ab71;
    padding: 12px;
    color: #e5e5e5;
    font-family: "Grotley";
    font-size: 0.9rem;
}

::placeholder {
    color: #e5e5e5;
}

.contact-form textarea {
    font-size: 0.9rem;
    font-family: "Grotley";
    background: #513331;
    box-shadow: 3px 3px 25px #0f04014e;
    border: none;
    border-bottom: 1px solid #e1ab71;
    padding: 12px;
    color: #e5e5e5;
    resize: vertical;
    min-height: 50px;
    height: 200px;
    max-height: 250px;
}

.contact-form input[type=submit] {
    background: #e1ab71;
    border: 1px solid #e1ab71;
    color: #362122;
    transition: all 0.3s ease;
}

.contact-form input[type=submit]:hover {
    background: #513331;
    color: #e1ab71;
    cursor: pointer;
}







/* RESPONSIVE */

@media only screen and (max-width: 500px) {
    .hero {
        flex-direction: column;
        text-align: center;
        margin-top: 0;
        width: 100%;
    }

    .hero .button-container {
        flex-direction: column;
        width: 100%;
    }

    .navbar {
        display: none;
    }

    .navbar-m {
        display: flex;
    }

    .categories section {
        margin-bottom: 50px;
    }

    .categories .section-content {
        width: 110%;
    }

    .bg-gradient {
        display: none;
    }

    .about-container {
        text-align: center;
        width: 100vw;
    }

    .about-content {
        width: 80%;
        margin: 0;
    }

    .about-content h4 {
        width: 100%;
        text-align: center;
    }

    .contact-content {
        width: 100%;
    }

    .contact-form {
        width: 100%;
    }

    .contact-form input {
        width: 100%;
    }
}

@media only screen and (min-width: 1350px) {
    .categories {
        max-width: 1200px;
    }
}

@media only screen and (max-height: 780px) {
    .categories {
        margin-top: 100px;
    }
}

@media only screen and (max-width: 850px) {
    .categories {
        flex-direction: column;
        gap: 30px;
    }

    .categories section {
        width: 300px;
    }

    .about-container {
        flex-direction: column;
        padding: 25px;
    }

    .about-img {
        width: 250px;
        height: 250px;
        object-fit: cover;
        transform: scale(1);
        margin: 20px;
        border-radius: 150px;
    }

    .contact-content {
        flex-direction: column;
    }

    .contact-divider {
        width: 200px;
        height: 1px;
        margin: 30px;
    }
}