/*
Theme Name: Yamanara Elegant
Theme URI: https://yamanara.com
Author: Yamanara Property
Description: Tema elegan, mobile-friendly, aman tanpa error untuk Yamanara Property.
Version: 1.0
License: GPL v2 or later
Text Domain: yamanara-elegant
*/

body {
    margin: 0;
    font-family: Arial, Helvetica, sans-serif;
    background: #ffffff;
    color: #333;
}

header {
    position: sticky;
    top: 0;
    z-index: 9999;
    background: #ffffff;
    border-bottom: 1px solid #eee;
    padding: 12px 16px;
    display: flex;
    align-items: center;
    justify-content: space-between;
}

.brand {
    display: flex;
    align-items: center;
    gap: 10px;
}

.brand img {
    width: 40px;
    height: 40px;
    box-shadow: 0 4px 10px rgba(0,0,0,0.25);
    border-radius: 8px;
}

.brand span {
    font-weight: bold;
    font-size: 18px;
    color: #1565c0; /* biru */
}

.menu-toggle {
    font-size: 26px;
    cursor: pointer;
    color: #1565c0; /* biru */
}

.slide-menu {
    position: fixed;
    top: 0;
    left: -100%;
    width: 80%;
    height: 100%;
    background: #1565c0; /* biru */
    z-index: 10000;
    padding: 20px;
    transition: left 0.35s ease;
    box-shadow: 4px 0 20px rgba(0,0,0,0.2);
}

.slide-menu.active {
    left: 0;
}

.slide-menu ul {
    list-style: none;
    padding: 0;
    margin: 40px 0 0 0;
}

.slide-menu ul li {
    margin-bottom: 16px;
}

.slide-menu ul li a {
    text-decoration: none;
    font-size: 18px;
    color: #ffffff; /* biar kontras di background biru */
}

main {
    padding: 20px;
}

footer {
    background: #1565c0; /* biru */
    color: #ffffff;
    text-align: center;
    padding: 16px;
    margin-top: 40px;
}