:root {
    --primary-color: #0d6efd;
    --secondary-color: #4a90e2;
    --accent-color: #67c6b3;
}

body {
    font-family: "Segoe UI", Tahoma, Geneva, Verdana, sans-serif;
}

.hero-section {
    background-color: #fff;
    padding: 120px 0 80px;
    position: relative;
    overflow: hidden;
}

.hero-section::before {
    content: "";
    position: absolute;
    top: 0;
    right: 0;
    width: 50%;
    height: 100%;
    background-color: #f8f9fa;
    clip-path: polygon(20% 0%, 100% 0%, 100% 100%, 0% 100%);
    z-index: 0;
}

.hero-content {
    position: relative;
    z-index: 1;
}

.hero-section h1 {
    font-size: 3.5rem;
    font-weight: 700;
    margin-bottom: 1.5rem;
    color: var(--primary-color);
}

.reservation-section {
    background: linear-gradient(
        135deg,
        var(--primary-color),
        var(--secondary-color)
    );
    padding: 100px 0;
    color: white;
    position: relative;
}

.reservation-section::after {
    content: "";
    position: absolute;
    bottom: 0;
    left: 0;
    width: 100%;
    height: 50px;
    background: #fff;
    clip-path: polygon(0 50%, 100% 0, 100% 100%, 0% 100%);
}

.reservation-card {
    background: white;
    border-radius: 20px;
    padding: 40px;
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.1);
    transform: translateY(-20px);
}

.navbar {
    background-color: var(--primary-color) !important;
    padding: 20px 0;
    transition: all 0.3s ease;
}

.navbar.scrolled {
    padding: 10px 0;
    box-shadow: 0 5px 15px rgba(0, 0, 0, 0.1);
}

.navbar-center {
    position: absolute;
    left: 50%;
    transform: translateX(-50%);
}

.nav-link {
    font-weight: 500;
    margin: 0 15px;
    position: relative;
}

.nav-link::after {
    content: "";
    position: absolute;
    width: 0;
    height: 2px;
    background: #fff;
    bottom: -5px;
    left: 50%;
    transform: translateX(-50%);
    transition: width 0.3s ease;
}

.nav-link:hover::after {
    width: 100%;
}

.btn-primary {
    padding: 15px 40px;
    border-radius: 30px;
    font-weight: 600;
    text-transform: uppercase;
    letter-spacing: 1px;
    transition: all 0.3s ease;
    background: var(--primary-color);
    border: none;
}

.btn-primary:hover {
    transform: translateY(-3px);
    box-shadow: 0 5px 15px rgba(13, 110, 253, 0.3);
    background: var(--secondary-color);
}

.form-control {
    padding: 15px;
    border-radius: 10px;
    border: 1px solid #e1e1e1;
    background: #f8f9fa;
    transition: all 0.3s ease;
}

.form-control:focus {
    box-shadow: 0 0 0 3px rgba(13, 110, 253, 0.1);
    border-color: var(--primary-color);
}

.about-section {
    padding: 120px 0;
    background: #fff;
    position: relative;
}

.about-section .row {
    position: relative;
    z-index: 1;
}

.about-image {
    border-radius: 20px;
    overflow: hidden;
    box-shadow: 0 15px 30px rgba(0, 0, 0, 0.1);
}

.about-content h2 {
    font-size: 2.5rem;
    color: var(--primary-color);
    margin-bottom: 30px;
    position: relative;
}

.about-content h2::after {
    content: "";
    position: absolute;
    bottom: -10px;
    left: 0;
    width: 60px;
    height: 3px;
    background: var(--accent-color);
}

.contact-section {
    padding: 120px 0;
    background: #f8f9fa;
    position: relative;
}

.contact-info {
    padding: 40px;
    background: white;
    border-radius: 20px;
    box-shadow: 0 15px 30px rgba(0, 0, 0, 0.1);
    height: 100%;
}

.contact-item {
    margin-bottom: 40px;
    position: relative;
    padding-left: 60px;
}

.contact-item i {
    position: absolute;
    left: 0;
    top: 0;
    width: 40px;
    height: 40px;
    background: var(--primary-color);
    color: white;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 20px;
    transition: all 0.3s ease;
}

.contact-item:hover i {
    transform: scale(1.1);
    background: var(--secondary-color);
}

.map-container {
    height: 100%;
    min-height: 400px;
    border-radius: 20px;
    overflow: hidden;
    box-shadow: 0 15px 30px rgba(0, 0, 0, 0.1);
}

/* footer {
    background: var(--primary-color);
    color: white;
    padding: 30px 0;
    text-align: center;
} */

@media (max-width: 991px) {
    .navbar-center {
        position: static;
        transform: none;
    }

    .hero-section::before {
        width: 100%;
        clip-path: polygon(0 0, 100% 0, 100% 100%, 0 85%);
    }

    .hero-section h1 {
        font-size: 2.5rem;
    }
}
.dropdown-scroll {
    max-height: 200px; /* Batas tinggi dropdown */
    overflow-y: auto; /* Tambahkan scroll untuk overflow */
    scrollbar-width: thin; /* Khusus Firefox */
}

/* Styling untuk scrollbar (khusus WebKit) */
.dropdown-scroll::-webkit-scrollbar {
    width: 8px;
}

.dropdown-scroll::-webkit-scrollbar-thumb {
    background-color: #ccc;
    border-radius: 4px;
}

.dropdown-scroll::-webkit-scrollbar-thumb:hover {
    background-color: #aaa;
}

.room-card {
    transition: transform 0.3s ease;
    margin-bottom: 2rem;
    height: 100%;
}

.room-card:hover {
    transform: translateY(-5px);
    box-shadow: 0 4px 15px rgba(0, 0, 0, 0.1);
}

.room-img {
    height: 200px;
    object-fit: cover;
    width: 100%;
}

.facility-card {
    text-align: center;
    padding: 1.5rem;
    height: 100%;
    transition: transform 0.3s ease;
}

.facility-card:hover {
    transform: scale(1.05);
}

/* .facility-img {
    height: 200px;
    object-fit: cover;
    width: 100%;
    margin-bottom: 1rem;
} */

.btn-pesan {
    background-color: #0d6efd;
    color: white;
    width: 100%;
    margin-top: 1rem;
}

.btn-pesan:hover {
    background-color: #0b5ed7;
    color: white;
}

.section-title {
    text-align: center;
    margin: 3rem 0;
    color: #333;
}

footer {
    background-color: #0d6efd;
    color: white;
    padding: 1rem 0;
    text-align: center;
    margin-top: 3rem;
    position: relative;
    width: 100vw;
    left: 50%;
    right: 50%;
    margin-left: -50vw;
    margin-right: -50vw;
}
