@import url('https://fonts.googleapis.com/css2?family=Poppins:wght@400;500;600;700&display=swap');

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

body {
    font-family: 'Poppins', sans-serif;
    background-color: #000;
    color: #fff;
}

/* ===== HEADER ===== */
.l-header {
    width: 100%;
    position: fixed;
    top: 0;
    background: #000;
    z-index: 1000;
}

/* ===== NAV ===== */
.nav {
    max-width: 1200px;
    margin: auto;
    padding: 1.2rem 1.5rem;
    display: flex;
    align-items: center;
    justify-content: space-between;
}

/* LOGO */
.nav__logo {
    color: #6f0000;
    font-weight: 700;
    font-size: 1.1rem;
    text-decoration: none;
    letter-spacing: 1px;
}

/* ===== MOBILE MENU ===== */
.nav__menu {
    position: fixed;
    top: 4rem;
    right: -100%;
    width: 80%;
    height: 100%;
    background-color: #000;
    padding: 2rem;
    transition: 0.4s;
}

.nav__menu.show {
    right: 0;
}

.nav__list {
    list-style: none;
    display: flex;
    flex-direction: column;
}

.nav__item {
    margin-bottom: 2rem;
}

.nav__link {
    color: #fff;
    text-decoration: none;
    font-weight: 500;
    font-size: 0.95rem;
    transition: color 0.3s;
}

.nav__link:hover {
    color: #6f0000;
}

.active-link {
    color: #6f0000;
}

/* BURGER */
.nav__toggle {
    font-size: 1.6rem;
    cursor: pointer;
}

/* ===== DESKTOP NAVBAR ===== */
@media screen and (min-width: 768px) {

    .nav__menu {
        position: static;
        width: auto;
        height: auto;
        padding: 0;
        background: none;
        display: flex;
    }

    .nav__list {
        flex-direction: row;
        align-items: center;
    }

    .nav__item {
        margin-left: 2rem;
        margin-bottom: 0;
    }

    .nav__link {
        position: relative;
        font-size: 0.9rem;
    }

    .nav__link::after {
        content: "";
        position: absolute;
        left: 0;
        bottom: -6px;
        width: 0;
        height: 2px;
        background: #6f0000;
        transition: width 0.3s;
    }

    .nav__link:hover::after {
        width: 100%;
    }

    .nav__toggle {
        display: none;
    }
}

/* ===== MAIN ===== */
.main {
    padding-top: 6rem;
}

/* ===== CONTACT ===== */
.section-title {
    text-align: center;
    font-size: 2rem;
    margin-bottom: 2rem;
}

.contact__container {
    display: flex;
    justify-content: center;
}

.contact__form {
    width: 100%;
    max-width: 380px;
}

.contact__input {
    width: 100%;
    padding: 1rem;
    margin-bottom: 1.5rem;
    border-radius: 0.5rem;
    border: 1.5px solid #fff;
    background: #111;
    color: #fff;
    font-weight: 500;
}

.contact__input::placeholder {
    color: #ff4d4d;
}

.contact__button {
    display: block;
    margin-left: auto;
    padding: 0.75rem 2.5rem;
    background: #6f0000;
    color: #fff;
    border: none;
    border-radius: 0.5rem;
    cursor: pointer;
    transition: 0.3s;
}

.contact__button:hover {
    box-shadow: 0 10px 36px rgba(255, 0, 0, 0.3);
}