@import url('https://fonts.googleapis.com/css2?family=Playfair+Display:wght@700&family=Poppins:wght=300;400;600;700&display=swap');

* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

:root {
    --hitam: #121212;
    --cream: #F5EEE6;
    --gold: #D4AF37;
    --abu: #2A2A2A;
}

html {
    scroll-behavior: smooth;
}

body {
    background-color: var(--hitam);
    color: var(--cream);
    overflow-x: hidden;
    font-family: 'Poppins', sans-serif;
    line-height: 1.6;
}

/* SCROLLBAR */
::-webkit-scrollbar {
    width: 8px;
}
::-webkit-scrollbar-track {
    background: var(--hitam);
}
::-webkit-scrollbar-thumb {
    background: var(--gold);
    border-radius: 10px;
}

/* NAVBAR */
.navbar {
    position: fixed;
    top: 0;
    width: 100%;
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 1.5rem 5%;
    background: rgba(0,0,0,0.8);
    backdrop-filter: blur(10px);
    z-index: 9999;
    border-bottom: 1px solid rgba(212, 175, 55, 0.2);
}

.navbar .logo {
    font-size: 1.5rem;
    font-weight: 700;
    color: var(--gold);
    font-family: 'Playfair Display', serif;
}

.nav-links {
    display: flex;
    list-style: none;
    gap: 1.5rem;
}

.nav-links a {
    color: var(--cream);
    text-decoration: none;
    font-size: 0.95rem;
    transition: 0.3s;
}

.nav-links a:hover {
    color: var(--gold);
}

/* HERO SECTION */
.hero {
    height: 100vh;
    display: flex;
    align-items: center;
    justify-content: center;
    text-align: center;
    padding-top: 80px;
    background-image: url('desain.png');
    background-size: cover;
    background-position: center;
}

.hero-content h1 {
    font-family: 'Playfair Display', serif;
    font-size: clamp(3rem, 10vw, 5rem);
    color: var(--gold);
    margin-bottom: 1rem;
    text-shadow: 0 0 20px rgba(212, 175, 55, 0.5);
    animation: glow 2s ease-in-out infinite alternate;
}

@keyframes glow {
    from { text-shadow: 0 0 10px var(--gold), 0 0 20px var(--gold); }
    to { text-shadow: 0 0 20px var(--gold), 0 0 30px #FFD700; }
}

.hero-content h2 {
    font-size: clamp(1.5rem, 5vw, 2rem);
    margin-bottom: 1.5rem;
    color: #fff;
}

.features {
    display: flex;
    justify-content: center;
    gap: 1.5rem;
    margin: 3rem 0;
    flex-wrap: wrap;
}

.feat-item {
    background: rgba(255,255,255,0.05);
    padding: 1rem 2rem;
    border-radius: 50px;
    border: 1px solid var(--gold);
}

.btn-book {
    display: inline-block;
    padding: 1rem 3rem;
    background: linear-gradient(45deg, var(--gold), #FFD700);
    color: var(--hitam);
    font-weight: bold;
    border-radius: 50px;
    text-decoration: none;
    box-shadow: 0 5px 15px rgba(212, 175, 55, 0.4);
    margin-top: 1rem;
}

/* JUDUL SECTION */
.section-title {
    font-family: 'Playfair Display', serif;
    font-size: 3.5rem;
    color: var(--gold);
    margin-bottom: 3rem;
    text-align: center;
}

/* ABOUT */
.about {
    padding: 100px 5%;
    background: var(--abu);
}

.about .container {
    display: grid;
    grid-template-columns: 1fr 1.5fr;
    gap: 3rem;
    align-items: center;
    max-width: 1000px;
    margin: auto;
}

.about-img img {
    width: 300px;
    height: 300px;
    border-radius: 50%;
    object-fit: cover;
    border: 5px solid var(--gold);
}

/* PORTFOLIO */
.portfolio {
    padding: 100px 5%;
    background: var(--abu);
    text-align: center;
}

.gallery {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
    gap: 1.5rem;
    max-width: 1200px;
    margin: auto;
}

.port-item {
    border-radius: 15px;
    overflow: hidden;
    height: 400px;
}

.port-item img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: transform 0.5s ease;
}

.port-item:hover img {
    transform: scale(1.1);
}

/* SERVICES */
.services {
    padding: 100px 5%;
    background: var(--abu);
    text-align: center;
}

.services-container {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
    gap: 2rem;
    max-width: 1000px;
    margin: auto;
}

.service-card {
    background: rgba(255,255,255,0.05);
    padding: 2.5rem;
    border-radius: 20px;
    border: 1px solid rgba(212, 175, 55, 0.2);
}

.service-card .price {
    font-size: 1.5rem;
    color: var(--gold);
    font-weight: bold;
}

.service-card .price span {
    font-size: 1.8rem;
}

.additional {
    margin-top: 3rem;
    text-align: left;
    max-width: 500px;
    margin-left: auto;
    margin-right: auto;
}

.additional ul {
    list-style: none;
    margin: 1rem 0;
}

.note {
    color: var(--gold);
    font-style: italic;
}

/* TESTIMONI */
.testimoni {
    padding: 100px 5%;
    background: var(--abu);
    text-align: center;
}

.testi-container {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: 2rem;
    max-width: 1000px;
    margin: auto;
}

.testi-box {
    background: rgba(255,255,255,0.05);
    padding: 2rem;
    border-radius: 15px;
    border-left: 4px solid var(--gold);
}

/* FAQ */
.faq {
    padding: 100px 5%;
    background: var(--abu);
    text-align: center;
}

.faq-container {
    max-width: 800px;
    margin: auto;
    text-align: left;
}

.faq-item {
    background: rgba(255,255,255,0.05);
    padding: 1.5rem;
    border-radius: 10px;
    margin-bottom: 1.5rem;
}

.faq-item h4 {
    color: var(--gold);
    margin-bottom: 0.5rem;
}

/* CONTACT */
.contact {
    padding: 100px 5%;
    background: var(--abu);
    text-align: center;
}

.contact-info {
    font-size: 1.3rem;
    margin: 2rem 0;
}

.contact-info a {
    color: var(--gold);
    text-decoration: none;
}

/* FOOTER */
footer {
    text-align: center;
    padding: 2rem;
    background: #000;
    border-top: 1px solid var(--gold);
}

/* ========== RESPONSIVE HP ========== */
@media (max-width: 768px) {
    .navbar {
        padding: 1rem 3%;
    }
    .navbar .logo {
        font-size: 1rem;
    }
    .nav-links {
        gap: 0.6rem;
        font-size: 0.8rem;
    }

    .hero-content h1 {
        font-size: 2.5rem;
    }
    .hero-content h2 {
        font-size: 1.2rem;
    }
    .features {
        flex-direction: column;
        gap: 1rem;
    }

    .section-title {
        font-size: 2.2rem;
    }

    .about .container {
        grid-template-columns: 1fr;
    }
    .about-img img {
        width: 220px;
        height: 220px;
    }

    .services-container {
        grid-template-columns: 1fr;
    }

    .gallery {
        grid-template-columns: repeat(2, 1fr);
    }

    .port-item {
        height: 300px;
    }

    .contact-info {
        font-size: 1rem;
    }
}