@import url('https://fonts.googleapis.com/css2?family=Montserrat:wght@300;400;700&display=swap');

* {
    padding: 0px;
    margin: 0px;
    box-sizing: border-box;
}

html {
    font-size: 10px;
    font-family: 'Montserrat', sans-serif;
}

a {
    text-decoration: none;
    color: black;
}

.arrow {
    position: fixed;
    bottom: 20px;
    right: 20px;
    font-size: 36px;
    cursor: pointer;
}

.container {
    min-height: 100vh;
    width: 100%;
    display: flex;
    align-items: center;
    justify-content: center;
}

.brand h1 {
    font-size: 3rem;
    text-transform: uppercase;
    color: white;
}

.brand h1 span {
    color: crimson;
}

/* HEADER */
#header {
    position: fixed;
    z-index: 10;
    left: 0;
    top: 0;
    width: 100vw;
    height: auto;
}

#header .header {
    min-height: 8vh;
    background-color: rgba(31, 30, 30, 0.24);
}

#header .nav-bar {
    display: flex;
    align-items: center;
    justify-content: space-between;
    width: 100%;
    max-width: 1300px;
    padding: 0 10px;
    height: 100%;
}

#header .menu ul {
    list-style: none;
    background-color: transparent;
    width: 100vw;
    height: 100vh;
    left: 0;
    top: 0;
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: center;
    z-index: 1;
    overflow: hidden;
    position: initial;
    display: block;
    height: auto;
    width: fit-content;
}

#header .menu ul li {
    display: inline-block;
}

#header .menu ul li a {
    font-size: 1.8rem;
}

#header .menu ul a {
    font-size: 2.5rem;
    font-weight: 500;
    letter-spacing: 0.2rem;
    text-decoration: none;
    color: white;
    text-transform: uppercase;
    padding: 20px;
    display: block;
}

#header .nav-list ul li:hover a::after {
    transform: translate(-50%, -50%) scale(1);
}

#header .nav-bar ul li:hover a {
    color: crimson;
}

input[type=checkbox] {
    display: none;
}

.hamburger {
    display: none;
    font-size: 24px;
    user-select: none;
    cursor: pointer;
}

/* HOME */
#home {
    background-image: url(/img/home\ background.jpg);
    background-size: cover;
    background-position: top center;
    position: relative;
    z-index: 1;
}

#home::after {
    content: '';
    position: absolute;
    left: 0;
    top: 0;
    height: 100%;
    width: 100%;
    background-color: black;
    opacity: 0.7;
    z-index: -1;
}

#home h1 {
    display: block;
    width: fit-content;
    font-size: 8rem;
    position: relative;
    color: beige;
}

#home .cta {
    display: inline-block;
    padding: 10px 30px;
    color: crimson;
    background-color: transparent;
    font-size: 3rem;
    border-bottom: 1px solid;
    transition: 0.3s ease;
    letter-spacing: 0.1rem;
    margin-top: 20px;
}

#home .cta:hover {
    color: white;
    background-color: crimson;
}

#home .home {
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 300px;
    justify-content: flex-start;
}

#home .home span {
    color: crimson;
}

/* SERVICE */
#service .service {
    flex-direction: column;
    text-align: center;
    max-width: 1500px;
    margin: 0 auto;
    padding: 100px 0;
}

#service .section-title {
    font-size: 4rem;
    font-weight: 300;
    color: black;
    margin-bottom: 10px;
    letter-spacing: 2rem;
}

#service .section-title span {
    color: crimson;
}

#service .service-top p,
#service .service-bottom p {
    font-size: 1.5rem;
    margin: 5px;
    line-height: 2.5rem;
    font-weight: 300;
    letter-spacing: 0.05rem;
    max-width: 700px;
    text-align: center;
}

#service .service-bottom {
    display: flex;
    align-items: center;
    justify-content: center;
    flex-wrap: wrap;
}

#service .service-iteam {
    flex-basis: 80%;
    display: flex;
    flex-direction: column;
    justify-content: center;
    border-radius: 20px;
    margin: 10px 5%;
    width: 150px;
    text-align: center;
}

.service .service-iteam:hover {
    color: white;
    background-color: crimson;
    border-radius: 20px;
}

/* GALLERY */
#gallery .gallery {
    flex-direction: column;
    text-align: center;
    max-width: 1500px;
    margin: 0 auto;
    padding: 100px 0;
}

#gallery .section-title {
    font-size: 4rem;
    font-weight: 300;
    color: black;
    margin-bottom: 10px;
    letter-spacing: 2rem;
}

#gallery .section-title span {
    color: crimson;
}

#gallery .gallery p {
    font-size: 1.5rem;
    margin: 5px;
    line-height: 2.5rem;
    font-weight: 300;
    letter-spacing: 0.05rem;
    max-width: 700px;
}

.gallery {
    display: flex;
    flex-wrap: wrap;
    justify-content: center;
}

.gallery img {
    border: 2px solid #333;
    margin: 10px;
    width: 300px;
    height: 200px;
    object-fit: cover;
}

/* ABOUT */
#about .about {
    flex-direction: column;
    text-align: center;
    max-width: 1500px;
    margin: 0 auto;
    padding: 100px 0;
}

#about .section-title {
    font-size: 4rem;
    font-weight: 300;
    color: black;
    margin-bottom: 10px;
    letter-spacing: 2rem;
}

#about .section-title span {
    color: crimson;
}

#about .about p {
    font-size: 1.5rem;
    margin: 5px;
    line-height: 2.5rem;
    font-weight: 300;
    letter-spacing: 0.05rem;
    max-width: 700px;
}

/* CONTACT */
#contact .contact {
    flex-direction: column;
    text-align: center;
    max-width: 500px;
    margin: 0 auto;
    padding: 100px 0;
}

#contact .section-title {
    font-size: 4rem;
    font-weight: 300;
    color: black;
    margin-bottom: 10px;
    letter-spacing: 2rem;
}

#contact .section-title span {
    color: crimson;
}

#contact .contact-items {
    width: 500px;
}

#contact .contact-item {
    width: 80%;
    padding: 20px;
    text-align: center;
    border-radius: 10px;
    margin: 30px auto;
    box-shadow: 0px 0px 18px 0px black;
    display: flex;
    justify-content: center;
    align-items: center;
    flex-direction: column;
}

#contact .contact-item:hover {
    box-shadow: 0px 0px 5px 0px black;
    transition: 0.3s ease;
}

#contact .icon {
    width: 70px;
    margin-bottom: 10px;
}

#contact .contact-info h1 {
    font-size: 2.5rem;
    font-weight: 500;
    margin-bottom: 5px;
}

#contact .contact-info h2 {
    font-size: 1.3rem;
    line-height: 2rem;
    font-weight: 500;
}

/* FOOTER */
#footer {
    background-image: linear-gradient(60deg, #29323c 0%, #485563 100%);
}

#footer .footer {
    min-height: 200px;
    flex-direction: column;
    padding-top: 50px;
    padding-bottom: 10px;
    display: flex;
    align-items: center;
}

#footer h2 {
    color: white;
    font-weight: 500;
    font-size: 1.8rem;
    letter-spacing: 1rem;
    margin-top: 10px;
    margin-bottom: 10px;
}

#footer .social-icon {
    display: flex;
    margin-bottom: 30px;
}

#footer .social-iteam {
    height: 50px;
    width: 50px;
    margin: 0 5px;
}

/* SCROLLBAR */
::-webkit-scrollbar {
    width: 20px;
}

::-webkit-scrollbar-track {
    background-color: transparent;
}

::-webkit-scrollbar-thumb {
    background-color: crimson;
}

/* RESPONSIVENESS */
@media (max-width: 1024px) {
    html {
        font-size: 9px;
    }

    #home .home {
        padding: 0 100px;
    }
}

@media (max-width: 768px) {
    html {
        font-size: 8px;
    }

    #home h1 {
        font-size: 5rem;
    }

    #home .cta {
        font-size: 2rem;
        padding: 8px 20px;
    }

    #home .home {
        padding: 0 30px;
    }

    .hamburger {
        display: block;
        z-index: 20;
    }

    #header .menu {
        display: none;
        flex-direction: column;
        position: absolute;
        top: 100%;
        left: 0;
        width: 100vw;
        background-color: rgba(0, 0, 0, 0.8);
        padding: 20px 0;
        text-align: center;
    }

    input[type=checkbox]:checked ~ .menu {
        display: flex;
    }

    #header .menu ul {
        flex-direction: column;
        width: 100%;
    }

    #header .menu ul li {
        margin: 10px 0;
        display: block;
    }

    .gallery img {
        width: 100%;
        height: auto;
    }

    #contact .contact-items {
        width: 100%;
    }

    #contact .contact-item {
        width: 90%;
    }

    #footer h2 {
        font-size: 1.5rem;
        letter-spacing: 0.5rem;
    }
}

@media (max-width: 480px) {
    html {
        font-size: 7px;
    }

    #home h1 {
        font-size: 4rem;
    }

    #service .section-title,
    #gallery .section-title,
    #about .section-title,
    #contact .section-title {
        font-size: 3rem;
        letter-spacing: 1rem;
    }

    .gallery img {
        width: 100%;
    }

    #contact .contact-item {
        padding: 15px;
    }
}
