@import url("https://fonts.googleapis.com/css2?family=Quicksand:wght@300..700&display=swap");
@import url("https://fonts.googleapis.com/css2?family=Rubik+Vinyl&display=swap");
@import url("https://fonts.googleapis.com/css2?family=Dancing+Script:wght@400..700&display=swap");
@import url("https://fonts.googleapis.com/css2?family=Passion+One:wght@400;700;900&display=swap");
* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
    font-family: "Quicksand", sans-serif;
}
:root {
    --white: #fff;
    --light: #f6f6f6;
    --dark: #343a40;
    --hijau: #073e29;
    --hijau-muda: #92e3a9;
    --hitam: #1e293b;
    --primary: #0d6efd;
    --red: #dc3545;
    --orange: #fd7e14;
    --warning: #ffc107;
    --coklat: #8a4524;
    --blue: #364d65;
    --bs-success: #71dd37;
    --text-success: #71dd37;
}

.bg-hijau {
    background-color: var(--hijau) !important;
}

.home .carousel-item {
    min-height: 100vh;
    background-position: center;
    background-size: cover;
    position: relative;
    z-index: 1;
}
.home .carousel-item::before {
    content: "";
    position: absolute;
    left: 0;
    top: 0;
    width: 100%;
    height: 100%;
    background-color: rgba(0, 0, 0, 0.7);
    z-index: -1;
}
.home .carousel-item .containerCaroul {
    position: absolute;
    left: 50%;
    top: 40%;
    transform: translate(-50%, -50%);
    text-align: center;
    width: 90%;
}
/* ? --------------------------------------------------------------------------------------------------------------- */
/* animasi teks */
.home .carousel-item.active h2 {
    animation: fadeInDown 1s ease forwards;
}
.home .carousel-item.active p {
    animation: fadeInUp 1s ease forwards;
}

.home .carousel-item.active button {
    animation: fadeInUp 1s ease forwards;
}

@keyframes fadeInDown {
    0% {
        opacity: 0;
        transform: translateY(-30px);
    }
    100% {
        opacity: 1;
        transform: translateY(0px);
    }
}

@keyframes fadeInUp {
    0% {
        opacity: 0;
        transform: translateY(30px);
    }
    100% {
        opacity: 1;
        transform: translateY(0px);
    }
}

#daftar-now {
    border-radius: 50px;
}

/* ? --------------------------------------------------------------------------------------------------------------- */
/* ? Ukuran Desktop responsive */
@media screen and (min-width: 1024px) {
    .home .carousel-item h2 {
        font-family: "Passion One", sans-serif;
        font-size: 4.5rem;
        font-weight: bold;
        color: var(--bs-success) !important;
        margin: 0 0 10px;
        opacity: 0;
    }
    .home .carousel-item p {
        font-size: 16px;
        margin: 0;
        opacity: 0;
    }
    .home .carousel-controls {
        position: absolute;
        left: 50%;
        bottom: 70px;
        z-index: 10;
        transform: translateX(-50%);
    }

    .home .carousel-indicators {
        position: relative;
        margin: 0;
    }
    .home .carousel-indicators button {
        height: 40px;
        width: 40px;
        margin: 0 5px;
        border-radius: 50% !important;
        background-position: center;
        background-size: cover;
        border: 2px solid transparent;
        transition: all 0.5s linear;
    }

    .home .carousel-indicators button.active {
        border-color: #fff;
        transform: scale(1.1);
    }
}
/* ? --------------------------------------------------------------------------------------------------------------- */
/* ? Ukuran Tablet responsive */
@media screen and (min-width: 768px) and (max-width: 1023px) {
    .home .carousel-item h2 {
        font-family: "Passion One", sans-serif;
        font-size: 3rem;
        font-weight: bold;
        color: var(--bs-success) !important;
        margin: 0 0 10px;
        opacity: 0;
    }
    .home .carousel-item p {
        font-size: 12px;
        margin: 0;
        opacity: 0;
    }
    .home .carousel-controls {
        position: absolute;
        left: 50%;
        bottom: 70px;
        z-index: 10;
        transform: translateX(-50%);
    }
    .home .carousel-indicators {
        position: relative;
        margin: 0;
    }
    .home .carousel-indicators button {
        height: 30px;
        width: 30px;
        margin: 0 5px;
        border-radius: 50% !important;
        background-position: center;
        background-size: cover;
        border: 2px solid transparent;
        transition: all 0.5s linear;
    }

    .home .carousel-indicators button.active {
        border-color: #fff;
        transform: scale(1.1);
    }
}
/* ? --------------------------------------------------------------------------------------------------------------- */
/* ? Ukuran HP responsive */
@media screen and (max-width: 767px) {
    .home .carousel-item h2 {
        font-family: "Passion One", sans-serif;
        font-size: 2rem;
        font-weight: bold;
        color: var(--bs-success) !important;
        margin: 0 0 10px;
        opacity: 0;
    }
    .home .carousel-item p {
        font-size: 12px;
        margin: 0;
        opacity: 0;
    }

    .home .carousel-controls {
        position: absolute;
        left: 50%;
        bottom: 70px;
        z-index: 10;
        transform: translateX(-50%);
    }
    .home .carousel-indicators {
        position: relative;
        margin: 0;
    }
    .home .carousel-indicators button {
        height: 20px;
        width: 20px;
        margin: 0 5px;
        border-radius: 50% !important;
        background-position: center;
        background-size: cover;
        border: 2px solid transparent;
        transition: all 0.5s linear;
    }

    .home .carousel-indicators button.active {
        border-color: #fff;
        transform: scale(1.1);
    }
}
