/* ===================================
   RESET
=================================== */
* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

/* ===================================
   BODY
=================================== */
body {
    background: #f4f4f4;
    font-family: Arial, sans-serif;
}

/* ===================================
   NAVBAR STICKY DI BAWAH HEADER
=================================== */
nav {
    background: linear-gradient(90deg, #6F4E37, #C4A484);
    padding: 15px 30px;
    box-shadow: 0 4px 8px rgba(0,0,0,0.2);

    position: sticky;
    top: 0;

    z-index: 999;

    transition: all 0.3s ease;
}

/* Efek saat navbar sudah menempel */
nav.scrolled {
    background: linear-gradient(90deg, #5d4037, #b08968);
    box-shadow: 0 6px 18px rgba(0,0,0,0.25);
}

/* ===================================
   MENU
=================================== */
.menu {
    display: flex;
    justify-content: center;
    list-style: none;
    flex-wrap: wrap;
}

.menu li {
    position: relative;
    margin: 0 15px;
}

.menu a {
    display: block;
    text-decoration: none;
    color: white;
    font-size: 17px;
    font-weight: bold;
    padding: 12px 18px;
    border-radius: 8px;
    transition: 0.3s;
}

.menu a:hover {
    background: rgba(255,255,255,0.2);
}

/* ===================================
   DROPDOWN
=================================== */
.dropdown-content {
    display: none;
    position: absolute;
    top: 50px;
    left: 0;
    background: #fff;
    min-width: 220px;
    border-radius: 10px;
    overflow: hidden;
    box-shadow: 0 5px 15px rgba(0,0,0,.15);
}

.dropdown-content a {
    color: #333;
    padding: 12px 15px;
}

.dropdown-content a:hover {
    background: #f3f3f3;
}

.dropdown:hover .dropdown-content {
    display: block;
}

/* ===================================
   CONTAINER
=================================== */
.container {
    display: flex;
    max-width: 1600px;
    width: 95%;
    margin: 30px auto;
    gap: 25px;
    padding: 0 15px;
    align-items: flex-start;
}

/* ===================================
   MAIN CONTENT
=================================== */
.main-content {
    flex: 2.2;
    min-width: 0;
}

/* ===================================
   SIDEBAR
=================================== */
.sidebar {
    flex: 1;
    display: flex;
    flex-direction: column;
    gap: 20px;
}

/* ===================================
   CARD
=================================== */
.card-box {
    background: #fff;
    padding: 25px;
    border-radius: 18px;
    box-shadow: 0 4px 15px rgba(0,0,0,0.08);
    width: 100%;
    margin-bottom: 20px;
    height: auto;
}

/* ===================================
   SOCIAL MEDIA
=================================== */
.social-section {
    padding: 25px 20px;
}

.social-card {
    padding: 20px;
    margin-bottom: 15px;
    border-radius: 15px;
}

/* ===================================
   MAP
=================================== */
.map-container iframe {
    width: 100%;
    height: 220px;
    border-radius: 12px;
    border: none;
}

/* ===================================
   SLIDER
=================================== */
.luxury-slider,
.slider-box {
    max-height: 420px;
    overflow: hidden;
    border-radius: 15px;
}

.luxury-slider img,
.slider-box img {
    width: 100%;
    object-fit: cover;
}

/* ===================================
   IMAGE
=================================== */
img {
    max-width: 100%;
    height: auto;
    display: block;
}

/* ===================================
   BUTTON
=================================== */
button,
.btn {
    padding: 12px 22px;
    border-radius: 25px;
    border: none;
    cursor: pointer;
    transition: .3s;
}

button:hover,
.btn:hover {
    transform: translateY(-2px);
}

/* ===================================
   FOOTER
=================================== */
.footer {
    margin-top: 40px;
    padding: 25px;
}

/* ===================================
   RESPONSIVE TABLET
=================================== */
@media (max-width: 1100px) {

    .container {
        flex-direction: column;
        width: 100%;
    }

    .main-content,
    .sidebar {
        width: 100%;
    }

    .sidebar {
        margin-top: 20px;
    }
}

/* ===================================
   RESPONSIVE MOBILE
=================================== */
@media (max-width: 768px) {

    .menu {
        flex-direction: column;
        align-items: center;
    }

    .menu li {
        margin: 8px 0;
    }

    .dropdown-content {
        position: static;
        width: 100%;
        box-shadow: none;
    }

    .card-box {
        padding: 18px;
    }

    .social-card {
        padding: 15px;
    }

    .luxury-slider,
    .slider-box {
        max-height: 280px;
    }
}