
:root{
    --gold:#D4AF37;
}
body{
    font-family:'Cormorant Garamond',serif;
    background:#111;
    color:#fff;
}

/* Header */
.navbar-custom{
    background:#111;
    backdrop-filter:blur(8px);
}

.logo{
    width:50px;
    height:50px;
    border-radius:50%;
    background:#111;
    color:#fff;
    display:flex;
    align-items:center;
    justify-content:center;
    font-size:24px;
    font-style:italic;
}

/* Hero */
.hero{
    min-height:100vh;
    padding-top:120px;
}

.hero h1{
    font-size:clamp(30px,4vw,60px);
    font-weight:400;
    line-height:1.3;
}

.hero em{
    font-style:italic;
}

.byline{
    font-family:'Inter',sans-serif;
    font-size:12px;
    letter-spacing:4px;
    margin-top:40px;
}

/* Featured */
.featured-label{
    font-family:'Inter',sans-serif;
    font-size:11px;
    letter-spacing:3px;
    color:#666;
}

.badge-item{
    text-align:center;
}

.circle{
    width:70px;
    height:70px;
    border:1px solid #333;
    border-radius:50%;
    display:flex;
    align-items:center;
    justify-content:center;
    margin:0 auto 10px;
    font-size:20px;
    font-style:italic;
}

/* Gallery */
.gallery img{
    width:100%;
    aspect-ratio:2/3;
    object-fit:cover;
    transition:.3s;
}

.gallery img:hover{
    opacity:.85;
}

/* Footer */
.footer{
    padding:80px 0 40px;
}

.signature{
    font-size:36px;
    font-style:italic;
}

.footer-text{
    font-family:'Inter',sans-serif;
    font-size:12px;
    letter-spacing:2px;
}

.navbar-custom{
    background:#fff !important;
    box-shadow: 0 2px 10px rgba(0,0,0,.08);
}

.logo{
    width:50px;
    height:50px;
    border-radius:50%;
    background:#111;
    color:#fff;
    display:flex;
    align-items:center;
    justify-content:center;
    font-size:24px;
    font-style:italic;
}

/* Header */
.navbar-custom{
    background:#111 !important;
    border-bottom:1px solid rgba(255,215,0,.15);
}

.logo{
    width:50px;
    height:50px;
    border-radius:50%;
    color:#111;
    display:flex;
    align-items:center;
    justify-content:center;
    font-size:24px;
    font-style:italic;
    font-weight:bold;
}

/* Menu */
.navbar-custom .nav-link{
    color:#FFD700 !important;
    font-family:'Inter',sans-serif;
    font-size:14px;
    font-weight:500;
    letter-spacing:1px;
    transition:.3s;
}

.navbar-custom .nav-link:hover{
    color:#fff3b0 !important;
}

/* Hamburger menu */
.navbar-toggler{
    border-color:#FFD700;
}

.navbar-toggler:focus{
    box-shadow:none;
}

/* Ganti icon hamburger jadi kuning */
.navbar-toggler-icon{
    background-image:url("data:image/svg+xml,%3csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 30 30'%3e%3cpath stroke='rgba(255,215,0,1)' stroke-linecap='round' stroke-miterlimit='10' stroke-width='2' d='M4 7h22M4 15h22M4 23h22'/%3e%3c/svg%3e");
}