:root {
    --primary-pink: #E91E63;
    --soft-pink: #F8BBD0;
    --dark-bg: #1a1a1a;
    --text-color: #333;
    --gold: #D4AF37;
}

* { margin: 0; padding: 0; box-sizing: border-box; }

body {
    font-family: 'Lato', sans-serif;
    line-height: 1.6;
    color: var(--text-color);
}

h1, h2, h3, .logo {
    font-family: 'Playfair Display', serif;
}

/* Navigation */
nav {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 20px 5%;
    background-color: #fff;
    box-shadow: 0 2px 10px rgba(0,0,0,0.1);
    position: sticky;
    top: 0;
    z-index: 1000;
}

.logo {
    font-size: 1.8rem;
    font-weight: 700;
    color: var(--dark-bg);
}

.logo span { color: var(--primary-pink); }

.nav-links { list-style: none; display: flex; }
.nav-links li { margin-left: 30px; }
.nav-links a { text-decoration: none; color: var(--dark-bg); font-weight: 700; transition: 0.3s; }
.nav-links a:hover { color: var(--primary-pink); }

.btn-contact {
    background: var(--primary-pink);
    color: #fff !important;
    padding: 10px 20px;
    border-radius: 25px;
}

/* Hero Section */
header {
    height: 90vh;
    background: linear-gradient(rgba(0,0,0,0.5), rgba(0,0,0,0.5)), url('https://images.unsplash.com/photo-1514362545857-3bc16c4c7d1b?ixlib=rb-1.2.1&auto=format&fit=crop&w=1950&q=80'); /* Gambar Cocktail Default */
    background-size: cover;
    background-position: center;
    display: flex;
    align-items: center;
    justify-content: center;
    text-align: center;
    color: #fff;
}

.hero-content h1 { font-size: 4rem; margin-bottom: 20px; text-shadow: 2px 2px 4px rgba(0,0,0,0.5); }
.hero-content p { font-size: 1.5rem; margin-bottom: 30px; font-weight: 300; }
.cta-button {
    padding: 15px 40px;
    background: transparent;
    border: 2px solid var(--primary-pink);
    color: #fff;
    text-decoration: none;
    font-weight: bold;
    transition: 0.3s;
}
.cta-button:hover { background: var(--primary-pink); }

/* Layout Utilities */
.container { padding: 80px 10%; }
.section-title { text-align: center; margin-bottom: 50px; }
.section-title h2 { font-size: 2.5rem; }
.divider { width: 60px; height: 3px; background: var(--primary-pink); margin: 15px auto; }
.divider.white { background: #fff; }

.row { display: flex; flex-wrap: wrap; justify-content: space-between; align-items: center; }
.col-text, .col-img { flex-basis: 48%; }

.img-box {
    height: 300px;
    background: #eee;
    display: flex;
    align-items: center;
    justify-content: center;
    border: 1px solid #ddd;
}

/* Pillars */
#pillars {
    display: flex;
    justify-content: space-around;
    padding: 50px 10%;
    background: #f9f9f9;
}
.pillar-card {
    text-align: center;
    padding: 20px;
    flex-basis: 30%;
}
.pillar-card h3 { color: var(--primary-pink); margin-bottom: 10px; }

/* Contact */
#contact { background: var(--dark-bg); color: #fff; padding: 80px 10%; }
.contact-form {
    max-width: 600px;
    margin: 0 auto;
    display: flex;
    flex-direction: column;
}
.contact-form input, .contact-form select, .contact-form textarea {
    margin-bottom: 20px;
    padding: 15px;
    border: none;
    font-family: 'Lato', sans-serif;
}
.contact-form button {
    padding: 15px;
    background: var(--gold);
    border: none;
    color: var(--dark-bg);
    font-weight: bold;
    cursor: pointer;
    transition: 0.3s;
}
.contact-form button:hover { background: #fff; }

/* Footer */
footer { text-align: center; padding: 20px; background: #000; color: #666; font-size: 0.9rem; }

/* Mobile */
.burger { display: none; cursor: pointer; }
.burger div { width: 25px; height: 3px; background-color: var(--dark-bg); margin: 5px; }

@media screen and (max-width: 768px) {
    .nav-links {
        position: absolute;
        right: 0px;
        height: 92vh;
        top: 8vh;
        background-color: #fff;
        display: flex;
        flex-direction: column;
        align-items: center;
        width: 50%;
        transform: translateX(100%);
        transition: transform 0.5s ease-in;
    }
    .nav-links li { opacity: 1; margin: 30px 0; }
    .burger { display: block; }
    .nav-active { transform: translateX(0%); }
    .hero-content h1 { font-size: 2.5rem; }
    .col-text, .col-img, .pillar-card { flex-basis: 100%; margin-bottom: 20px; }
}