@import url('https://fonts.googleapis.com/css2?family=Playfair+Display:ital,wght@0,400;0,700;1,400&family=Poppins:wght@300;400;600&display=swap');

/* --- Reset & Base Styles --- */
* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

body, html {
    width: 100%;
    min-height: 100vh;
    font-family: 'Poppins', sans-serif;
    background-color: #0a0a0a;
    color: #f4f4f4;
    overflow-x: hidden;
    display: flex;
    flex-direction: column;
}

h1, h2, h3, h4 {
    font-family: 'Playfair Display', serif;
    color: #d4af37;
    font-weight: 400;
}

a {
    text-decoration: none;
    color: inherit;
}

main {
    flex: 1;
}

/* --- NAVBAR --- */
header {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 1.5rem 5%;
    background-color: #000;
    border-bottom: 1px solid #333;
    position: sticky;
    top: 0;
    z-index: 100;
}

.logo {
    display: flex;
    align-items: center;
    gap: 15px;
    z-index: 101;
}

.logo img.logo-zoom {
    width: 55px;
    height: 55px;
    object-fit: cover;
    border-radius: 50%;
}

.logo-text {
    font-family: 'Playfair Display', serif;
    color: #d4af37;
    font-size: 1.5rem;
    line-height: 1;
    font-weight: 700;
}

.logo-text span {
    font-size: 0.9rem;
    font-family: 'Poppins', sans-serif;
    font-weight: 300;
    color: #f4f4f4;
    letter-spacing: 1px;
}

nav ul.nav-menu {
    list-style: none;
    display: flex;
    gap: 2rem;
}

nav ul.nav-menu li a {
    font-size: 1rem;
    text-transform: uppercase;
    letter-spacing: 2px;
    transition: color 0.3s ease;
}

nav ul.nav-menu li a:hover, nav ul.nav-menu li a.active {
    color: #d4af37;
}

/* Menu Toggle (Hamburger) */
.menu-toggle {
    display: none;
    cursor: pointer;
    flex-direction: column;
    gap: 5px;
    z-index: 101;
}

.menu-toggle .bar {
    width: 25px;
    height: 3px;
    background-color: #d4af37;
    transition: all 0.3s ease-in-out;
}

/* --- GLOBAL COMPONENTS --- */
.btn {
    display: inline-block;
    padding: 0.8rem 2rem;
    background-color: #d4af37;
    color: #000;
    font-weight: 600;
    text-transform: uppercase;
    letter-spacing: 1px;
    border-radius: 4px;
    transition: background 0.3s, transform 0.3s;
}

.btn:hover {
    background-color: #f3c94f;
    transform: translateY(-3px);
}

.fade-in {
    opacity: 0;
    transform: translateY(30px);
    transition: opacity 0.8s ease-out, transform 0.8s ease-out;
}

.fade-in.appear {
    opacity: 1;
    transform: translateY(0);
}

/* --- SPLIT SECTION --- */
.split-section {
    display: flex;
    flex-wrap: wrap;
    padding: 5rem 5%;
    gap: 4rem;
    align-items: center;
}

.split-text {
    flex: 1;
    min-width: 300px;
}

.split-text h2 {
    font-size: 2.5rem;
    margin-bottom: 1rem;
}

.split-text p {
    margin-bottom: 1rem;
    line-height: 1.8;
    color: #ccc;
}

.split-text .highlight {
    color: #d4af37;
    font-weight: 600;
    font-size: 1.1rem;
}

.split-image {
    flex: 1;
    min-width: 300px;
}

.split-image img {
    width: 100%;
    height: auto;
    border-radius: 8px;
    box-shadow: 0 10px 30px rgba(212, 175, 55, 0.1);
}

.split-height-fix img {
    height: auto;
    max-height: calc(400px - 7px);
    object-fit: cover;
    width: 100%;
    border-radius: 8px;
}

/* --- MODERN FOOTER --- */
footer {
    background-color: #080808;
    border-top: 1px solid #222;
    padding-top: 3rem;
    display: flex;
    flex-direction: column;
}

.footer-container {
    display: flex;
    flex-wrap: wrap;
    justify-content: flex-start;
    gap: 3rem;
    padding: 0 5% 2rem;
    text-align: left;
}

.footer-col {
    flex: 1;
    min-width: 280px;
}

.footer-col h3 {
    font-family: 'Poppins', sans-serif;
    font-size: 1.2rem;
    color: #fff;
    margin-bottom: 1.5rem;
    position: relative;
    font-weight: 600;
}

.footer-col h3::after {
    content: '';
    position: absolute;
    left: 0;
    bottom: -8px;
    background-color: #d4af37;
    width: 40px;
    height: 2px;
}

.brand-col .logo-text {
    margin-bottom: 1rem;
}

.brand-col p {
    color: #aaa;
    line-height: 1.6;
    font-size: 0.95rem;
}

.contact-info {
    list-style: none;
}

.contact-info li {
    display: flex;
    align-items: flex-start;
    gap: 12px;
    margin-bottom: 1rem;
    color: #aaa;
    font-size: 0.95rem;
}

.contact-info li svg {
    width: 20px;
    height: 20px;
    color: #d4af37;
    flex-shrink: 0;
    margin-top: 3px;
}

.contact-info li a {
    transition: color 0.3s;
}

.contact-info li a:hover {
    color: #d4af37;
}

.social-links {
    display: flex;
    gap: 15px;
}

.social-links a {
    display: flex;
    align-items: center;
    justify-content: center;
    width: 40px;
    height: 40px;
    background-color: #111;
    border: 1px solid #333;
    border-radius: 50%;
    color: #ccc;
    transition: all 0.3s ease;
}

.social-links a svg {
    width: 18px;
    height: 18px;
}

.social-links a:hover {
    background-color: #d4af37;
    border-color: #d4af37;
    color: #000;
    transform: translateY(-3px);
}

.map-wrapper iframe {
    width: 100%;
    height: 180px;
    border-radius: 8px;
    border: none;
}

.footer-bottom {
    background-color: #000;
    text-align: center;
    padding: 1.2rem 5%;
    border-top: 1px solid #111;
    margin-bottom: 0;
}

.footer-bottom p {
    color: #555;
    font-size: 0.85rem;
    margin-bottom: 0;
}

/* --- RESPONSIVE FOR GLOBAL COMPONENTS (NAVBAR & FOOTER) --- */
@media (max-width: 768px) {
    .menu-toggle {
        display: flex;
        margin-right: -140px; /* Diberikan margin negatif agar ikon hamburger menempel pepet ke kanan */
    }

    /* Animasi navbar turun dari bawah navbar */
    nav ul.nav-menu {
        position: absolute;
        top: 100%;
        left: 0;
        width: 100%;
        flex-direction: column;
        background-color: #080808;
        text-align: center;
        padding: 0;
        max-height: 0;
        overflow: hidden;
        opacity: 0;
        visibility: hidden;
        transition: all 0.4s ease-in-out;
        border-bottom: 1px solid #333;
        box-shadow: 0 10px 20px rgba(0,0,0,0.5);
    }

    nav ul.nav-menu.active {
        max-height: 300px;
        opacity: 1;
        visibility: visible;
        padding: 2rem 0;
    }

    nav ul.nav-menu li {
        margin: 1.2rem 0;
    }

    .menu-toggle.is-active .bar:nth-child(2) {
        opacity: 0;
    }
    .menu-toggle.is-active .bar:nth-child(1) {
        transform: translateY(8px) rotate(45deg);
    }
    .menu-toggle.is-active .bar:nth-child(3) {
        transform: translateY(-8px) rotate(-45deg);
    }

    .split-section {
        padding: 3rem 5%;
        gap: 2rem;
    }
    
    .footer-container {
        flex-direction: column;
        gap: 3rem;
    }
}