/* RESET & UTIRITIES */
* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
    scroll-behavior: smooth;
}

body {
    font-family: 'Montserrat', sans-serif;
    color: #333;
    background-color: #faf7f5; /* Background warna rosy/creamy warm */
    line-height: 1.6;
}

/* TYPOGRAPHY */
h1, h2, h3 {
    font-family: 'Cormorant Garamond', serif;
    font-weight: 600;
    letter-spacing: 1px;
}

h2 {
    font-size: 2.5rem;
    text-align: center;
    margin-bottom: 10px;
    color: #2c2523;
}

.subtitle {
    text-align: center;
    font-style: italic;
    color: #8c7a73;
    margin-bottom: 40px;
    font-family: 'Cormorant Garamond', serif;
    font-size: 1.2rem;
}

/* NAVIGATION */
header {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 20px 8%;
    background-color: rgba(255, 255, 255, 0.95);
    position: fixed;
    width: 100%;
    top: 0;
    z-index: 1000;
    box-shadow: 0 2px 10px rgba(0,0,0,0.03);
}

.logo {
    font-family: 'Cormorant Garamond', serif;
    font-size: 1.8rem;
    font-weight: bold;
    letter-spacing: 2px;
    color: #4a3b32;
}

nav ul {
    display: flex;
    list-style: none;
}

nav ul li {
    margin-left: 30px;
}

nav ul li a {
    text-decoration: none;
    color: #555;
    font-size: 0.9rem;
    text-transform: uppercase;
    letter-spacing: 1px;
    transition: color 0.3s;
}

nav ul li a:hover {
    color: #b58d75;
}

/* HERO SECTION */
.hero {
    height: 100vh;
    background: linear-gradient(rgba(0, 0, 0, 0.3), rgba(0, 0, 0, 0.2)), 
                url('gambar/IMG_5184.jpg') no-repeat center center/cover;
    display: flex;
    justify-content: center;
    align-items: center;
    text-align: center;
    color: #fff;
    padding: 0 20px;
}

.hero-content h1 {
    font-size: 4rem;
    margin-bottom: 20px;
    animation: fadeInDown 1.2s ease;
}

.hero-content p {
    font-size: 1.2rem;
    margin-bottom: 30px;
    font-weight: 300;
    letter-spacing: 1px;
}

.btn-primary {
    display: inline-block;
    padding: 12px 35px;
    background-color: #b58d75;
    color: #fff;
    text-decoration: none;
    text-transform: uppercase;
    font-size: 0.85rem;
    letter-spacing: 2px;
    transition: background 0.3s, transform 0.3s;
}

.btn-primary:hover {
    background-color: #94705c;
    transform: translateY(-2px);
}

/* INTERACTIVE GALLERY */
.gallery-section {
    padding: 100px 8% 60px 8%;
}

.filter-buttons {
    display: flex;
    justify-content: center;
    gap: 15px;
    margin-bottom: 40px;
}

.filter-btn {
    padding: 8px 25px;
    background: none;
    border: 1px solid #b58d75;
    color: #b58d75;
    cursor: pointer;
    font-family: 'Montserrat', sans-serif;
    font-size: 0.85rem;
    text-transform: uppercase;
    transition: all 0.3s ease;
    border-radius: 20px;
}

.filter-btn.active, .filter-btn:hover {
    background-color: #b58d75;
    color: #fff;
}

.gallery-grid {
    display: grid;
    grid-template-columns: repeat(auto-fill, minmax(300px, 1fr));
    gap: 25px;
}

.gallery-item {
    position: relative;
    overflow: hidden;
    height: 400px;
    cursor: pointer;
    box-shadow: 0 4px 15px rgba(0,0,0,0.05);
    transition: transform 0.4s ease, opacity 0.4s ease;
}

.gallery-item img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: transform 0.5s ease;
}

.gallery-item:hover img {
    transform: scale(1.05);
}

.gallery-item .overlay {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: rgba(44, 37, 35, 0.7);
    display: flex;
    justify-content: center;
    align-items: center;
    opacity: 0;
    transition: opacity 0.4s ease;
}

.gallery-item:hover .overlay {
    opacity: 1;
}

.gallery-item .overlay span {
    color: #fff;
    font-family: 'Cormorant Garamond', serif;
    font-size: 1.6rem;
    border-bottom: 1px solid #b58d75;
    padding-bottom: 5px;
}

/* LIGHTBOX MODAL */
.modal {
    display: none;
    position: fixed;
    z-index: 2000;
    padding-top: 80px;
    left: 0;
    top: 0;
    width: 100%;
    height: 100%;
    background-color: rgba(0,0,0,0.9);
}

.modal-content {
    margin: auto;
    display: block;
    max-width: 80%;
    max-height: 80vh;
    object-fit: contain;
}

.close-modal {
    position: absolute;
    top: 30px;
    right: 50px;
    color: #fff;
    font-size: 40px;
    font-weight: bold;
    cursor: pointer;
    transition: color 0.3s;
}

.close-modal:hover {
    color: #b58d75;
}

/* SERVICES SECTION */
.services-section {
    padding: 80px 8%;
    background-color: #f2ede9;
}

.services-container {
    display: flex;
    justify-content: center;
    gap: 30px;
    flex-wrap: wrap;
    margin-top: 40px;
}

.service-card {
    background: #fff;
    padding: 40px 30px;
    width: 320px;
    text-align: center;
    box-shadow: 0 10px 30px rgba(0,0,0,0.03);
    border-top: 3px solid transparent;
    transition: transform 0.3s;
}

.service-card:hover {
    transform: translateY(-5px);
}

.service-card.highlighted {
    border-top: 3px solid #b58d75;
}

.service-card h3 {
    font-size: 1.8rem;
    margin-bottom: 15px;
    color: #4a3b32;
}

.service-card .price {
    font-size: 1.4rem;
    color: #b58d75;
    font-weight: 500;
    margin-bottom: 25px;
}

.service-card ul {
    list-style: none;
    text-align: left;
    font-size: 0.9rem;
    color: #666;
}

.service-card ul li {
    margin-bottom: 12px;
    position: relative;
    padding-left: 20px;
}

.service-card ul li::before {
    content: "✦";
    position: absolute;
    left: 0;
    color: #b58d75;
}

/* CONTACT SECTION */
.contact-section {
    padding: 100px 8%;
    text-align: center;
}

.contact-form {
    max-width: 600px;
    margin: 40px auto 0 auto;
    display: flex;
    flex-direction: column;
    gap: 20px;
}

.contact-form input, .contact-form textarea {
    width: 100%;
    padding: 15px;
    border: 1px solid #ddd;
    background-color: #fff;
    font-family: 'Montserrat', sans-serif;
    font-size: 0.9rem;
    outline: none;
    transition: border 0.3s;
}

.contact-form input:focus, .contact-form textarea:focus {
    border-color: #b58d75;
}

.btn-submit {
    padding: 15px;
    background-color: #4a3b32;
    color: #fff;
    border: none;
    text-transform: uppercase;
    letter-spacing: 2px;
    font-size: 0.9rem;
    cursor: pointer;
    transition: background 0.3s;
}

.btn-submit:hover {
    background-color: #2c2523;
}

/* FOOTER */
footer {
    background-color: #2c2523;
    color: #a69892;
    text-align: center;
    padding: 30px 20px;
    font-size: 0.85rem;
    letter-spacing: 1px;
}

/* ANIMATIONS */
@keyframes fadeInDown {
    from {
        opacity: 0;
        transform: translateY(-30px);
    }
    to {
        opacity: 1;
        transform: translateY(0);
    }
}

/* RESPONSIVE DESIGN (HP) */
@media (max-width: 768px) {
    header {
        flex-direction: column;
        padding: 15px;
    }
    nav ul {
        margin-top: 15px;
    }
    nav ul li {
        margin: 0 10px;
    }
    .hero-content h1 {
        font-size: 2.5rem;
    }
    h2 {
        font-size: 2rem;
    }
    .modal-content {
        max-width: 95%;
    }
    .close-modal {
        right: 20px;
        top: 20px;
    }
}