body {
    margin: 0;
    font-family: Poppins;
    background: #f5f5f5
}

.hidden {
    display: none
}

/* --- NAVBAR --- */
.navbar {
    position: sticky;
    top: 0;
    z-index: 1000;
    background: #fff;
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 20px 60px;
    box-shadow: 0 5px 15px rgba(0, 0, 0, .05)
}

.logo {
    font-family: "Playfair Display";
    font-size: 28px;
    color: #d4a12c;
    text-decoration: none;
}

.nav-center a {
    margin: 0 18px;
    text-decoration: none;
    color: #555;
    font-weight: 500
}

.nav-center a:hover {
    color: #d4a12c
}

.nav-auth {
    display: flex;
    gap: 15px;
    align-items: center;
}

.btn-login {
    background: #e0e0e0;
    color: #333;
    padding: 10px 22px;
    border-radius: 10px;
    text-decoration: none;
    font-weight: 600;
    transition: background 0.3s ease;
}

.btn-login:hover {
    background: #d4d4d4;
    color: #000;
}

.btn-register {
    background: #d4a12c;
    color: white;
    padding: 10px 22px;
    border-radius: 10px;
    text-decoration: none;
    font-weight: 600;
    transition: background 0.3s ease;
}

.btn-register:hover {
    background: #b38a10;
    color: white;
}

/* --- HERO SECTION --- */
.hero {
    position: relative;
    height: 80vh;
    background: url('https://images.unsplash.com/photo-1542314831-068cd1dbfeeb?q=80&w=2070&auto=format&fit=crop') center/cover no-repeat;
    display: flex;
    align-items: center;
    justify-content: center;
    text-align: center;
    overflow: hidden;
    background-color: #333;

}

.hero-overlay {
    position: absolute;
    inset: 0;
    background: linear-gradient(rgba(15, 23, 42, .75), rgba(15, 23, 42, .45));
    z-index: 1
}

.hero-content {
    position: relative;
    color: #fff;
    max-width: 1000px;
    width: 100%;
    padding: 40px;
    z-index: 2;
    display: flex;
    flex-direction: column;
    align-items: center;
}

/* Tombol Hero Baru */
.btn-hero {
    display: inline-block;
    background: #d4a12c;
    color: #fff;
    padding: 16px 40px;
    border-radius: 50px;
    text-decoration: none;
    font-weight: 600;
    font-size: 17px;
    margin-top: 40px;
    box-shadow: 0 8px 20px rgba(212, 161, 44, 0.4);
    transition: all 0.3s ease;
}

.btn-hero:hover {
    background: #b38a10;
    transform: translateY(-3px);
    box-shadow: 0 12px 25px rgba(212, 161, 44, 0.6);
}

/* --- ABOUT SECTION --- */
.about {
    padding: 80px 0;
    background: #fff;
}

.about-wrapper {
    display: flex;
    align-items: center;
    gap: 60px;
    flex-wrap: wrap;
}

.about-text {
    flex: 1;
    min-width: 300px;
}

.about-text h2 {
    font-family: "Playfair Display";
    font-size: 42px;
    color: #d4a12c;
    margin-bottom: 20px;
    line-height: 1.2;
}

.about-text p {
    color: #666;
    font-size: 16px;
    line-height: 1.8;
    margin-bottom: 30px;
    font-weight: 400;
}

.about-image {
    flex: 1;
    min-width: 300px;
}

.about-image img {
    width: 100%;
    border-radius: 20px;
    box-shadow: 0 15px 40px rgba(0, 0, 0, 0.1);
    object-fit: cover;
    height: 400px;
}

.btn-more {
    display: inline-block;
    background: #d4a12c;
    color: white;
    padding: 12px 30px;
    border-radius: 50px;
    text-decoration: none;
    font-weight: 600;
    transition: 0.3s;
}

.btn-more:hover {
    background: #b38a10;
    transform: translateY(-2px);
}

/* --- MAIN CONTENT --- */
main {
    padding: 60px 0
}

.container {
    max-width: 1200px;
    margin: auto;
    padding: 0 40px
}

.section-title {
    text-align: center;
    margin-bottom: 50px
}

.section-title h2 {
    font-family: "Playfair Display";
    font-size: 42px;
    margin-bottom: 10px
}

.section-title p {
    color: #777
}

.hotels {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: 30px;
    justify-content: center;
}

.hotel {
    background: white;
    border-radius: 18px;
    overflow: hidden;
    box-shadow: 0 10px 25px rgba(0, 0, 0, .08);
    transition: .3s;
    position: relative;
    display: flex;
    flex-direction: column;
}

.hotel:hover {
    transform: translateY(-6px);
    box-shadow: 0 20px 40px rgba(0, 0, 0, .15)
}

.hotel img {
    width: 100%;
    height: 220px;
    object-fit: cover
}

.hotel div {
    padding: 20px;
    flex-grow: 1;
    display: flex;
    flex-direction: column;
}

.hotel h3 {
    margin: 0 0 0px 0;
    color: #333;
    font-size: 20px;
}

.description {
    list-style: none;
    padding: 0;
    margin-bottom: 10px;
    color: #555;
    font-size: 15px;
}

.price {
    color: #d4a12c;
    font-weight: 700;
    font-size: 18px;
    margin-bottom: 15px;
}

/* Style untuk List Amenity */
.amenities {
    list-style: none;
    padding: 0;
    margin-bottom: 20px;
    color: #555;
    font-size: 14px;
}

.amenities li {
    margin-bottom: 8px;
    position: relative;
    padding-left: 20px;
}

.amenities li::before {
    content: "✓";
    position: absolute;
    left: 0;
    color: #d4a12c;
    font-weight: bold;
}

.btn-book {
    margin-top: auto;
    display: block;
    width: 100%;
    padding: 12px 0;
    background: #d4a12c;
    color: white;
    text-align: center;
    text-decoration: none;
    border-radius: 8px;
    font-weight: 600;
    transition: background 0.3s;
}

.btn-book:hover {
    background: #b38a10;
}