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

.hamburger {
    display: none;
}

.navbar {
    position: fixed;
    top: 0;
    width: 100%;
    z-index: 1000;
}

.container {
    margin: 0 auto;
}


.navtop-background{
    background-color: #3A563A;
}

.navbar-top{
    display: flex;
    padding: 5px;
    padding-right: 22px;
    width: 100%;
    justify-content: flex-end;
    margin: 0 auto;

}

.navbot-background {
    box-shadow: 0 4px 8px rgba(0, 0, 0, 0.1);
    height: 60px;
    top: 0;
    width: 100%;
    z-index: 100;
    background-color: white;
    display: flex;
    justify-content: center;
    align-items: center;
}

 .navbar-bottom {
    display: flex;
    max-width: 1200px;
    margin: 0 auto;
    width: 100%;
    flex-direction: row;
    justify-content: space-between;
}

.content-top {
    display: flex;
    justify-content: flex-end;
    gap: 10px;
}


.flag {
    width: 20px;
    height: 20px;
}

.content-bottom-left {
    display: flex;
}

.content-bottom-left img{
    width: 150px;
    height: auto;
}


.menu {
    display: flex;
    gap: 20px;
    align-items: center;
    list-style: none;
    text-decoration: none;
}

.menu li{
    color: #3A563A;
    font-family: 'Outfit';
}

.menu li:hover{
    font-weight: 600;
}

.menu li a{
    color: #3A563A;
}

@keyframes colorAnimation {
    0% { color: #F54F00; }
    25% { color: #FF6A00; }
    50% { color: #FF8F00; }
    75% { color: #FFA600; }
    100% { color: #F54F00; }
}

.menu .highlight {
    animation: colorAnimation 2s infinite;
    font-family: 'Outfit';
    font-weight: 700;
}

.menu .highlight:hover{
    color: #F54F00;
    font-weight: 900;
}

.content-bottom-right {
    display: flex;
}

.reserve-button {
    padding: 10px 15px;
    border-radius: 10px;
    background-color: #F54F00;
    color: white;
    font-family: 'Outfit';
    margin-left: 20px;
    border: none;
    cursor: pointer;
    transition: background-color 0.5s ease, font-weight 0.5s ease;
}

.reserve-button h2 {
    font-size: 15px;
}

.reserve-button:hover {
    background-color: #3A563A;
    font-weight: 600;
}


@media (max-width: 768px) {

    .navbar {
        position: fixed;
        top: 0;
        width: 100%;
        z-index: 1000;
    }


    .navbar-top {
        width: calc(100% - 40px); /* Menyesuaikan padding 20px di kiri dan kanan */
    }

    .navbar-bottom {
        padding: 0 20px;
        position: relative;
        display: flex;
        align-items: center;
        justify-content: space-evenly;
    }

    .hamburger {
        display: inline-block;
        cursor: pointer;
        width: 30px;
        height: 30px;
        position: relative;
    }

    .hamburger span {
        display: block;
        width: 100%;
        height: 4px;
        background-color: #F54F00;
        position: absolute;
        transition: all 0.4s ease;
    }

    .hamburger span:nth-child(1) {
        top: 0;
    }
    
    .hamburger span:nth-child(2) {
        top: 10px; /* Adjust sesuai kebutuhan */
    }
    
    .hamburger span:nth-child(3) {
        top: 20px;
    }

    .hamburger.active span:nth-child(1) {
        transform: rotate(45deg);
        top: 12px;
    }

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

    .hamburger.active span:nth-child(3) {
        transform: rotate(-45deg);
        top: 12px;
    }

    .navbar.active {
        display: block;
    }


    .content-bottom-right {
        display: none;
        flex-direction: column;
        background-color: #fff;
        position: absolute;
        top: 100%;
        right: 0;
        left: 0;
        width: auto;
        padding: 10px;
        box-shadow: 0 4px 8px rgba(0, 0, 0, 0.1);
        border-radius: 8px;
        align-items: center; /* Untuk memusatkan secara horizontal */
    }
    .content-bottom-right ul.menu {
        flex-direction: column;
        text-align: center;
        padding: 0;
        margin: 0;
        list-style: none;
    }

    .content-bottom-right ul.menu li {
        padding: 10px 0;
        border-bottom: 1px solid #ddd;
    }

    .content-bottom-right ul.menu li:last-child {
        border-bottom: none;
    }

    .content-bottom-right.active {
        display: flex;
    }

    .reserve-button {
        display: block;
        max-width: 300px;
        width: 100%;
        padding: 12px;
        background-color: #F54F00;
        color: white;
        border: none;
        
        border-radius: 8px;
        text-align: center;
        font-size: 16px;
        cursor: pointer;
        margin-top: 10px;
        transition: background-color 0.3s ease;
        margin: 0 auto;

    }

    .reserve-button:hover {
        background-color: #e04800;
    }

    .reserve-button h2 {
        margin: 0;
        font-size: 18px;
    }
}

@media screen and (min-width: 769px) and (max-width: 960px) {
    
    .navbar {
        position: relative;
    }

    .navbar-bottom {
        max-width: 960px;
        display: flex;
        flex-direction: row;
        justify-content: space-evenly;
    }

    .menu {
        gap: 10px;
    }

    .menu li {
        font-size: 14px;
    }

    .content-top {
        gap: 5px;
    }

    .flag {
        width: 18px;
        height: 18px;
    }

    .content-bottom-left img {
        width: 120px;
    }

    .reserve-button {
        padding: 8px 12px;
        font-size: 14px;
    }

    .reserve-button h2 {
        font-size: 13px;
    }

    .navbot-background {
        height: 50px;
    }
    
    .bg-one-hero-section{
        top: 0%;
    }
    
    .slide-2 img{
        padding-top: 0;
    }


}

@media (min-width: 961px) and (max-width: 1023px) {
    .navbar {
        position: fixed;
        top: 0;
        width: 100%;
        z-index: 1000;
    }

    .container {
        margin: 0 auto;
    }

    .navtop-background {
        background-color: #3A563A;
    }

    .navbar-top {
        display: flex;
        padding: 5px;
        padding-right: 10px; /* Mengurangi padding-right untuk ukuran lebih kecil */
        width: 100%;
        justify-content: flex-end;
        margin: 0 auto;
    }

    .navbot-background {
        box-shadow: 0 4px 8px rgba(0, 0, 0, 0.1);
        height: 50px; /* Mengurangi tinggi navbar */
        top: 0;
        width: 100%;
        z-index: 100;
        background-color: white;
        display: flex;
        justify-content: center;
        align-items: center;
    }

    .navbar-bottom {
        display: flex;
        max-width: 960px; /* Mengurangi max-width agar sesuai dengan lebar layar */
        margin: 0 auto;
        width: 100%;
        flex-direction: row;
        justify-content: space-evenly;
    }

    .content-top {
        display: flex;
        justify-content: flex-end;
        gap: 5px; /* Mengurangi jarak antar elemen */
    }

    .flag {
        width: 18px; /* Mengurangi ukuran bendera */
        height: 18px;
    }

    .content-bottom-left {
        display: flex;
    }

    .content-bottom-left img {
        width: 120px; /* Mengurangi ukuran logo */
        height: auto;
    }

    .menu {
        display: flex;
        gap: 15px; /* Mengurangi jarak antar item menu */
        align-items: center;
        list-style: none;
        text-decoration: none;
    }

    .menu li {
        color: #3A563A;
        font-family: 'Outfit';
    }

    .menu li:hover {
        font-weight: 600;
    }

    .menu li a {
        color: #3A563A;
    }

    .menu .highlight {
        animation: colorAnimation 2s infinite;
        font-family: 'Outfit';
        font-weight: 700;
    }

    .menu .highlight:hover {
        color: #F54F00;
        font-weight: 900;
    }

    .content-bottom-right {
        display: flex;
    }

    .reserve-button {
        padding: 8px 12px; /* Mengurangi padding tombol */
        border-radius: 8px; /* Mengurangi border-radius */
        background-color: #F54F00;
        color: white;
        font-family: 'Outfit';
        margin-left: 10px; /* Mengurangi margin */
        border: none;
        cursor: pointer;
        transition: background-color 0.5s ease, font-weight 0.5s ease;
    }

    .reserve-button h2 {
        font-size: 14px; /* Mengurangi ukuran font */
    }

    .reserve-button:hover {
        background-color: #3A563A;
        font-weight: 600;
    }
}

@media (min-width: 1023px) and (max-width: 1210px) {
    
    .navbar-bottom {
        display: flex;
        max-width: 960px; /* Mengurangi max-width agar sesuai dengan lebar layar */
        margin: 0 auto;
        width: 100%;
        flex-direction: row;
        justify-content: space-evenly;
    }

}







