@import url('https://fonts.googleapis.com/css2?family=Anybody:ital,wght@0,100..900;1,100..900&family=Roboto:ital,wght@0,100..900;1,100..900&display=swap');

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

body {
    font-family: "Roboto", sans-serif;
    overflow-x: hidden;
}



header {
    width: 100vw;
    height: 97px;
    background-color: #212529;
    position: relative;
}

.desktop-menu {
    display: flex;
    justify-content: space-around;

}

.desktop-menu h1 {
    margin-top: 30px;
    font-size: 3rem;
    font-weight: 700;
}

.desktop-menu h1 a {
    text-decoration: none;
    color: white;
}

.menus-link {
    display: flex;
    margin-top: 30px;
    gap: 3rem;
}

.menus-link li {
    list-style: none;
}

.menus-link li a {
    text-decoration: none;
    color: white;
    text-align: center;
    font-size: 2rem;
    font-weight: 400;
}

.mobile-menu {
    display: none;
}

.hamburger {
    display: none;
}

.hamburger i {
    display: none;
}

.hamburger i[data-visible="true"] {
    display: block;
}

img {
    max-width: 100%;
}

.touches {
    background: url(https://templatemo.com/templates/templatemo_546_sixteen_clothing/assets/images/contact-heading.jpg) center/ cover no-repeat;
    width: 100vw;
    height: 455px;


}

.touch {
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: center;
    padding-top: 50px;

}

.touch h3 {
    color: red;
    font-size: 2rem;
    font-weight: 400;

}

.touch h1 {
    color: white;
    font-size: 3rem;
    font-weight: 700;
    text-transform: uppercase;
}

.feature {
    background-color: black;
    width: 100vw;
    height: 60vh;

}

.locations {
    width: 80vw;
    margin-inline: auto;
    display: flex;
    flex-direction: column;
    justify-content: space-around;
    gap: 30px 0;
}

.title-map h2 {
    color: white;
    font-size: 2rem;
    font-weight: 700;

}

.line-maps {
    border: 1px solid #aaa;
}

.location {
    display: flex;
    gap: 0 30px;
    margin-top: 30px;
}

.text-map {
    display: flex;
    flex-direction: column;
    gap: 40px 0;

}

.text-map h2 {
    color: cornflowerblue;
    font-size: 1.2rem;
    font-weight: 700;
}

.text-map p {
    color: #aaa;
    font-size: 0.625rem;
    font-weight: 400;
}

.line-map {
    width: 42vw;
    border: 1px solid #aaa;
}

.socials a i {
    color: white;
    background-color: rgb(67, 67, 82);
    width: fit-content;
    border: none;
    padding: 0.4rem;
    border-radius: 5px;
}

.contact-section {
    padding: 50px 20px;
    background-color: black;
    width: 100vw;
    height: 70vh;
}

.boxes {
    display: flex;
    gap: 40px;
    max-width: 1100px;
    margin: auto;
}


.form-box {
    flex: 1;
}

.form-box h2 {
    margin-bottom: 20px;
    color: white;
}

.form-box form {
    display: flex;
    flex-direction: column;
    gap: 15px;
}

.form-box input,
.form-box textarea {
    background: transparent;
    border: 1px solid #aaa;
    padding: 12px;
    color: #fff;
}

.form-box textarea {
    height: 140px;
    resize: none;
}

.form-box button {
    width: 150px;
    padding: 12px;
    background: red;
    border: none;
    color: #fff;
    cursor: pointer;
}

.accordion-box {
    margin-top: 30px;
    flex: 1;
}

.accordion-item {
    border-bottom: 1px solid #444;
    padding: 15px 0;
}

.accordion-item h3 {
    color: cornflowerblue;
    cursor: pointer;
}

.accordion-item p {
    font-size: 14px;
    margin-top: 10px;
    color: #ccc;
}

.accordion-item.active h3 {
    color: red;
}

.partners {
    width: 100vw;
    height: 345px;
    background-color: #212529;
    color: white;
    display: flex;
    flex-direction: column;

}

.partner-two {
    display: flex;
    justify-content: center;
    align-content: center;
}

.partners h2 {
    display: flex;
    justify-content: left;
    width: 60vw;
    margin-inline: auto;
    color: white;

    border-bottom: 1px solid #aaa;

}

.partners img {
    width: 300px;
    height: 250px;
    padding: 20px;
    margin-top: 30px;
}

.line {

    width: 60vw;
    margin-inline: auto;

    color: white;

    border-bottom: 1px solid #aaa;
}

.footer {

    background-color: #2a2a2a;
    color: white;
    font-size: 1.25rem;
    padding: 2rem;
    text-align: center;
}

/* Responsive */
/* Large screen */
@media (max-width:1024px) {
    .desktop-menu {
        display: none;
    }

    .hamburger {
        display: block;
    }
}


/* tablets */
@media (min-width:641px) and (max-width:1024px) {

    /* ===== NAVBAR ===== */
    .desktop-menu {
        justify-content: space-between;
        padding: 0 30px;
    }

    .hamburger {
        display: block;
        position: absolute;
        top: 20px;
        right: 20px;
        cursor: pointer;
        color: white;
        font-size: 2rem;
    }

    .mobile-menu {
        display: none;
        position: absolute;
        top: 97px;
        left: 0;
        width: 100%;
        background-color: #212529;
        z-index: 1000;
        padding: 20px;
    }

    .mobile-menu[data-visible="true"] {
        display: block;
    }

    .mobile-menu .menus-link {
        flex-direction: column;
        gap: 1rem;
    }

    .desktop-menu h1 {
        font-size: 2.3rem;
    }

    .menus-link {
        gap: 1.5rem;
    }

    .menus-link li a {
        font-size: 1.4rem;
    }

    /* ===== HERO ===== */
    .touches {
        height: 350px;
    }

    .touch {
        padding-top: 40px;
        text-align: center;
    }

    .touch h1 {
        font-size: 2.4rem;
    }

    .touch h3 {
        font-size: 1.6rem;
    }

    /* ===== LOCATION / MAP ===== */
    .location {
        flex-direction: column;
        gap: 25px;
    }

    .line-map {
        width: 100%;
    }

    .map iframe {
        width: 100%;
        height: 300px;
    }

    .text-map {
        gap: 25px;
    }

    .text-map p {
        font-size: 0.9rem;
    }

    /* ===== FEATURE + CONTACT ===== */
    .feature,
    .contact-section {
        height: auto;
        padding: 40px 20px;
    }

    .boxes {
        flex-direction: column;
        gap: 30px;
    }

    /* ===== PARTNERS ===== */
    .partners {
        height: auto;
        padding: 30px 0;
    }

    .partner-two {
        flex-wrap: wrap;
        justify-content: center;
        gap: 20px;
    }

    .partners img {
        width: 220px;
        height: auto;
    }

    .partners h2,
    .line {
        width: 85%;
    }

    /* ===== FOOTER ===== */
    .footer {
        font-size: 1.1rem;
    }
}



/* Moblie */
@media(max-width:640px) {
    .desktop-menu {
        display: none;
    }

    .hamburger {
        display: block;
        position: absolute;
        top: 20px;
        right: 20px;
        cursor: pointer;
        color: white;
        font-size: 2rem;
    }

    .mobile-menu {
        display: none;
        position: absolute;
        top: 97px;
        left: 0;
        width: 100%;
        background-color: #212529;
        z-index: 1000;
        padding: 20px;
    }

    .mobile-menu[data-visible="true"] {
        display: block;
    }

    .mobile-menu .menus-link {
        flex-direction: column;
        gap: 1rem;
    }

    .mobile-menu .menus-link li a {
        font-size: 1.5rem;
    }

    .touches {
        height: 300px;
    }

    .touch h1 {
        font-size: 2rem;
    }

    .touch h3 {
        font-size: 1.5rem;
    }

    .locations {
        width: 90vw;
    }

    .location {
        flex-direction: column;
    }

    .map iframe {
        width: 100%;
        height: 250px;
    }

    .text-map {
        gap: 20px 0;
    }

    .contact-section {
        height: auto;
        padding: 30px 10px;
    }

    .boxes {
        flex-direction: column;
        gap: 20px;
    }

    .partners {
        height: auto;
        padding: 20px 0;
    }

    .partner-two {
        flex-direction: column;
        align-items: center;
    }

    .partners img {
        width: 80%;
        max-width: 200px;
        height: auto;
        margin: 10px 0;
    }

    .footer {
        font-size: 1rem;
        padding: 1rem;
    }
}