/* Basic */
html {
    scroll-behavior: smooth;
}

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

body {
    font-family: Arial, Helvetica, sans-serif;
    background-color: #000;
    overflow-x: hidden;
}

img {
    max-width: 100%;
}

a {
    text-decoration: none;
}

.container {
    width: 80%;
    margin: auto;
}

/* Basic End */



/* Header----------------------------- */
header {
    width: 100%;
    display: flex;
    flex-wrap: wrap;
    z-index: 99;
    background-color: rgba(0, 0, 0, 0.5);
    position: fixed;
    top: 0;
}

/* Logo-Web */
header .logo-web {
    width: 40%;
    padding: 10px;
    height: 80px;
    font-size: 3rem;
    font-weight: bold;
    letter-spacing: 7px;
    /* z-index: 9; */
}

header .logo-web a {
    color: aliceblue;
    transition: 0.5s;
}

header .logo-web span {
    color: orangered;
    transition: 0.4s;
}

/* Navigasi */
header nav {
    width: 60%;
    padding: 10px;
    height: 80px;
    display: flex;
    align-items: center;
    gap: 30px;
    justify-content: flex-end;
    /* z-index: 9; */
}

header nav .link {
    color: aliceblue;
    font-weight: bold;
}

header nav .link:hover {
    text-shadow: 0 0 10px #fff;
    border-bottom: 2px solid #fff;
}

header nav a button {
    padding: 10px;
    font-size: 1.1rem;
    background-color: orangered;
    border-radius: 10px;
    font-weight: bold;
    color: aliceblue;
    border: none;
    transition: 0.5s;
    cursor: pointer;
}

header nav a button:hover {
    background-color: aliceblue;
    color: #333;
    box-shadow: 0 0 4px #fff, 0 0 10px rgb(255, 255, 255, 0.5), 0 0 20px rgb(255, 255, 255, 0.3);
}



.responsive-nav {
    display: none;
}

.responsive-nav.active {
    background-color: rgba(0, 0, 0, 0.7);
    width: 100%;
    display: flex;
    flex-wrap: wrap;
    gap: 30px;
    align-items: center;
    padding: 10px;
    position: fixed;
    top: 55px;
    left: 0;
    z-index: 99;
}

.responsive-nav a {
    text-align: center;
    width: 100%;
    color: aliceblue;
    font-weight: 300;
    transition: 0.5s;
    padding: 20px 0;
}

.responsive-nav a:hover {
    color: #FF1700;
    text-shadow: 0 0 10px rgba(255, 255, 255, 0.5);
}

.hamburger {
    display: none;
    cursor: pointer;
}

.bar {
    display: block;
    width: 25px;
    height: 3px;
    margin: 5px auto;
    -webkit-transition: all 0.3s ease-in-out;
    transition: all 0.3s ease-in-out;
    background-color: #fff;
    border-radius: 7px;
}

/* Header End------------------------------ */




/* Hiro Slide------------------------------ */
.hiro-slide {
    width: 100%;
    height: 100vh;
    background-image: url(../img/slide.jpg);
    background-size: cover;
    position: relative;
    margin-top: -90px;
    color: aliceblue;
    display: flex;
    justify-content: center;
    align-items: center;
}

.hiro-slide font {
    z-index: 9;
    text-align: center;
}

.hiro-slide button {
    padding: 10px;
    font-size: 1.1rem;
    background-color: orangered;
    border-radius: 10px;
    font-weight: bold;
    color: aliceblue;
    border: none;
    transition: 0.5s;
    cursor: pointer;
}

.hiro-slide button:hover {
    background-color: aliceblue;
    color: #333;
    box-shadow: 0 0 4px #fff, 0 0 10px rgb(255, 255, 255, 0.5), 0 0 20px rgb(255, 255, 255, 0.3);
}

.hiro-slide::before {
    content: '';
    position: absolute;
    width: 100%;
    height: 100vh;
    top: 0;
    background-color: rgba(0, 0, 0, 0.85);
}

/* Hiro Slide End------------------------------ */



/* About------------------------------------- */
.about {
    width: 100%;
    padding: 10px;
    margin-top: 100px;
    display: flex;
    justify-content: space-around;
    align-items: center;
    flex-wrap: wrap;
}

.title {
    color: aliceblue;
    width: 100%;
    padding: 10px;
    text-align: center;
    font-size: 1.5rem;
    margin-bottom: 30px;
}

.title span {
    color: orangered;
}

.about .about-image {
    width: 40%;
    height: 320px;
    background-image: url(../img/about.jpg);
    background-size: cover;
    border-radius: 10px;
}

.about .about-descript {
    width: 50%;
    padding: 10px;
    color: aliceblue;
    font-size: 1.5rem;
    text-align: left;
    line-height: 2rem;
}

.about .about-descript button {
    padding: 10px;
    font-size: 1.1rem;
    background-color: orangered;
    border-radius: 10px;
    font-weight: bold;
    color: aliceblue;
    border: none;
    transition: 0.5s;
    cursor: pointer;
}

.about .about-descript button:hover {
    background-color: aliceblue;
    color: #333;
    box-shadow: 0 0 4px #fff, 0 0 10px rgb(255, 255, 255, 0.5), 0 0 20px rgb(255, 255, 255, 0.3);
}

/* About End------------------------------------- */



/* Our Service----------------------------------- */
.service {
    margin-top: 200px;
    width: 100%;
    padding: 10px;
    display: flex;
    justify-content: space-between;
    flex-wrap: wrap;
}

.service .our-service {
    width: 25%;
    padding: 20px;
    color: aliceblue;
    transition: 0.5s;
}

.service .our-service:hover {
    background-color: aliceblue;
    color: #333;
}

.service .our-service:hover i {
    transform: rotateY(360deg);
    transition: 0.5s;
}

.service .icon-service {
    width: 100%;
    padding: 20px;
    display: flex;
    justify-content: center;
    align-items: center;
    color: orangered;
    font-size: 4rem;
}

.service .descript-service {
    width: 100%;
    margin-top: 15px;
    text-align: left;
    line-height: 1.5rem;
    font-size: 0.9rem;
}


.service .descript-service button {
    padding: 10px;
    font-size: 1.1rem;
    background-color: orangered;
    border-radius: 10px;
    font-weight: bold;
    color: aliceblue;
    border: none;
    transition: 0.5s;
    cursor: pointer;
}

.service .descript-service button:hover {
    background-color: aliceblue;
    color: #333;
    box-shadow: 0 0 10px rgba(0, 0, 0, 0.6);
}

/* Our Service End----------------------------------- */


/* Support--------------------------------- */
.support {
    width: 100%;
    margin-top: 200px;
}

.support .support-by {
    width: 100%;
    padding: 10px;
    display: flex;
    justify-content: space-around;
}

.support .item-support {
    width: 100px;
    height: 100px;
    padding: 20px;
    border-radius: 50%;
    transition: 0.5s;
}

.support .item-support:hover {
    background-color: aliceblue;
    box-shadow: 0 0 7px rgb(255, 255, 255, 0.4), 0 0 15px rgba(211, 211, 211, 0.7), 0 0 25px rgba(255, 243, 243, 0.7);
}

/* Support End--------------------------------- */


/* Join Member-------------------------------- */
.join {
    width: 100%;
    margin-top: 200px;
}

.join .hiro-join {
    width: 100%;
    height: 70vh;
    background-image: url(../img/map.png);
    background-size: cover;
    background-position: center;
    display: flex;
    justify-content: center;
    align-items: center;
    position: relative;
}

.join .hiro-join::before {
    content: '';
    display: block;
    position: absolute;
    width: 100%;
    height: 70vh;
    background-color: rgba(255, 91, 0, 0.5);
}

.join .member {
    width: 40%;
    padding: 10px;
    color: aliceblue;
    text-align: center;
    line-height: 1.5rem;
    z-index: 9;
}

.join .member button {
    padding: 10px;
    font-size: 1.1rem;
    background-color: orangered;
    border-radius: 10px;
    font-weight: bold;
    color: aliceblue;
    border: none;
    transition: 0.5s;
    cursor: pointer;
}

.join .member button:hover {
    background-color: aliceblue;
    color: #333;
    box-shadow: 0 0 4px #fff, 0 0 10px rgb(255, 255, 255, 0.5), 0 0 20px rgb(255, 255, 255, 0.3);
}

/* Join Member End-------------------------------- */



/* Footer------------------------------------- */
footer {
    color: aliceblue;
    width: 100%;
    height: 40vh;
    display: flex;
    background-color: #1d2b34;
    padding-top: 20px;
}

footer .footer-items {
    width: 50%;
    padding: 10px 10px 10px 100px;
}

footer ul li {
    list-style: none;
    margin-top: 10px;
}

footer ul li a {
    color: aliceblue;
    transition: 0.5s;
}

footer ul li a:hover {
    margin-left: 6px;
    border-bottom: 1px solid aliceblue;
    text-shadow: 0 0 5px aliceblue;
}

.copyright {
    background-color: #1d2b34;
    padding: 10px;
    width: 100%;
    text-align: center;
    font-size: 0.9rem;
    color: aliceblue;
}

.copyright hr {
    display: inline-block;
    border: none;
    height: 0.8px;
    width: 100%;
    background-color: bisque;
    margin-bottom: 10px;
}

/* Footer End------------------------------------- */


/* Responsive**************************************** */
/* For Tablet */

/* For Androin */
@media screen and (max-width: 576px) {
    .title {
        font-size: 1rem;
    }

    header {
        background-color: rgba(0, 0, 0, 0.7);
    }

    header .logo-web {
        font-size: 2rem;
        width: 60%;
        height: 55px;
    }

    header nav {
        width: 40%;
        height: 55px;
    }

    header nav a.link {
        display: none;
    }

    header nav button {
        display: none;
    }

    .hamburger {
        display: block;
    }

    .hamburger.active .bar:nth-child(2) {
        opacity: 0;
    }

    .hamburger.active .bar:nth-child(1) {
        transform: translateY(8px) rotate(45deg);
    }

    .hamburger.active .bar:nth-child(3) {
        transform: translateY(-8px) rotate(-45deg);
    }

    .hiro-slide {
        padding: 200px 20px 0 20px;
        font-size: 0.9rem;
    }

    .about .about-image {
        width: 100%;
        height: 200px;
    }

    .about .about-descript {
        width: 100%;
        font-size: 0.9rem;
        line-height: 1.2rem;
    }

    .service .our-service {
        width: 100%;
        margin-bottom: 10px;
    }

    .support .support-by {
        flex-wrap: wrap;
    }

    .support .item-support {
        width: 70px;
        height: 70px;
        padding: 20px;
        border-radius: 50%;
        transition: 0.5s;
        margin-bottom: 10px;
    }

    .join .member {
        width: 90%;
        padding: 10px;
        line-height: 1.5rem;
    }

    footer {
        flex-wrap: wrap;
        height: auto;
    }

    footer .footer-items {
        width: 100%;
        margin-top: 20px;
        padding-left: 50px;
    }

    .copyright {
        font-size: 0.8rem;
    }
}