* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
    font-family: 'Segoe UI', sans-serif;
}

body {
    background: #f7f6f4;
    color: #2b2b2b;
}

/* CONTAINER */
.container {
    max-width: 1200px;
    padding: 60px 20px;
    margin: auto;
}

/* ===== NAVBAR ===== */
.navbar {
    background: #ffffff;
    border-bottom: 1px solid #eaeaea;
    position: sticky;
    top: 0;
    z-index: 999;
}

.navbar .container {
    display: flex;
    align-items: center;
    justify-content: space-between;
    padding: 12px 20px; /* ⬅ DIPERKECIL */
}

/* LOGO */
.logo img {
    width: auto;
    height: 50px; /* ⬅ sebelumnya terlalu besar */
}

/* MENU */
.nav-menu {
    display: flex;
    gap: 28px;
    align-items: center;
}

.nav-menu a {
    text-decoration: none;
    color: #2b2b2b;
    font-size: 14px;
    font-weight: 500;
    position: relative;
    padding-bottom: 4px;
    transition: 0.3s;
}

/* ACTIVE + HOVER */
.nav-menu a:hover,
.nav-menu a.active {
    color: #8d6e3f;
}

.nav-menu a.active::after {
    content: '';
    position: absolute;
    left: 0;
    bottom: -2px;
    width: 100%;
    height: 2px;
    background: #8d6e3f;
}
.btn-nav {
    border: 1px solid #8d6e3f;
    padding: 6px 16px;
    border-radius: 20px;
    font-size: 13px;
    color: #8d6e3f;
    transition: 0.3s;
}

.btn-nav:hover {
    background: #8d6e3f;
    color: #fff;
}
/* HAMBURGER */
.nav-toggle {
    display: none;
    font-size: 26px;
    cursor: pointer;
}

/* HERO */
.hero {
    padding: 100px 20px;
    text-align: center;
}
/* ================= HERO SLIDER ================= */
.hero-slider {
    position: relative;
    width: 100%;
    height: 100vh;
    overflow: hidden;
}

.hero-slide {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background-size: cover;
    background-position: center;
    opacity: 0;
    transition: opacity 1s ease-in-out;
}

.hero-slide.active {
    opacity: 1;
}

.hero-slider::after {
    content: "";
    position: absolute;
    inset: 0;
    background: rgba(0,0,0,0.45);
}

.hero-content {
    position: relative;
    z-index: 2;
    height: 100%;
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: center;
    text-align: center;
    color: #fff;
    padding: 20px;
}

.hero-content h1 {
    font-size: 3rem;
    margin-bottom: 10px;
}

.hero-content p {
    font-size: 1.2rem;
    margin-bottom: 25px;
    max-width: 700px;
}

.btn-primary {
    padding: 12px 28px;
    background: #c9a14a;
    color: #fff;
    text-decoration: none;
    border-radius: 30px;
    font-weight: 600;
}

.btn-primary:hover {
    background: #b08b3c;
}

.slide {
    position: absolute;
    inset: 0;
    background-size: cover;
    background-position: center;
    opacity: 0;
    transition: opacity 1s ease;
}

.slide.active {
    opacity: 1;
}

.hero-overlay {
    position: absolute;
    inset: 0;
    background: rgba(0,0,0,.45);
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    color: #fff;
    text-align: center;
}

.hero-overlay h1 {
    font-size: 48px;
    margin-bottom: 10px;
}

.hero-overlay p {
    font-size: 18px;
    margin-bottom: 25px;
}


/* FOOTER */
/* ===== MODERN FOOTER ===== */
.footer-modern {
    background: #ffffff;
    border-top: 1px solid #eaeaea;
    margin-top: 100px;
}

.footer-modern-grid {
    display: grid;
    grid-template-columns: 2fr 1fr 1.5fr 1fr;
    gap: 40px;
    padding: 60px 20px;
}

.footer-modern h4 {
    margin-bottom: 15px;
    font-size: 18px;
    color: #2b2b2b;
}

.footer-modern p,
.footer-modern li,
.footer-modern small {
    color: #666;
    line-height: 1.7;
    font-size: 15px;
}

.footer-modern a {
    color: #2b2b2b;
    text-decoration: none;
}

.footer-modern a:hover {
    color: #8d6e3f;
}

/* BRAND */
.footer-logo img {
    width: 110px;
    margin-bottom: 15px;
}

/* NAV */
.footer-nav ul {
    list-style: none;
}

.footer-nav li {
    margin-bottom: 8px;
}

/* CONTACT ICON */
.footer-contact p {
    display: flex;
    gap: 10px;
    align-items: flex-start;
}

.footer-contact svg {
    width: 16px;
    height: 16px;
    fill: #8d6e3f;
    margin-top: 4px;
}

/* SOCIAL */
.social-icons {
    display: flex;
    gap: 14px;
    margin-bottom: 10px;
}

.social-icons a {
    width: 42px;
    height: 42px;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    transition: .3s;
}

.social-icons svg {
    width: 18px;
    height: 18px;
    fill: #fff;
}

.social-icons .ig { background: #E1306C; }
.social-icons .wa { background: #25D366; }
.social-icons .tt { background: #000; }

.social-icons a:hover {
    transform: translateY(-4px);
    opacity: .9;
}

/* BOTTOM */
.footer-bottom-modern {
    display: flex;
    border-top: 1px solid #eee;
    justify-content: space-between;
    align-items: center;
    padding: 20px;
    font-size: 14px;
    flex-wrap: wrap;
    color: #777;
}


.footer-text {
    font-size: 0.9rem;
    color: #777;
}

/* RESPONSIVE */
@media (max-width: 900px) {
    .footer-modern-grid {
        grid-template-columns: 1fr 1fr;
    }
}

@media (max-width: 600px) {
    .footer-modern-grid {
        grid-template-columns: 1fr;
        text-align: center;
    }

    .footer-contact p {
        justify-content: center;
    }

    .social-icons {
        justify-content: center;
    }
}

/* RESPONSIVE HP */
@media (max-width: 768px) {
    .nav-menu {
        position: absolute;
        top: 64px;
        right: 20px;
        background: #ffffff;
        flex-direction: column;
        width: 220px;
        padding: 20px;
        border-radius: 14px;
        box-shadow: 0 15px 40px rgba(0,0,0,.12);
        display: none;
        gap: 18px;
    }

    .nav-menu.active {
        display: flex;
    }

    .nav-toggle {
        display: block;
        font-size: 26px;
        cursor: pointer;
    }

    .footer-grid {
        grid-template-columns: 1fr;
        text-align: center;
    }
}

/* BUTTON */
.btn-primary {
    display: inline-block;
    margin-top: 30px;
    padding: 12px 28px;
    border: 1px solid #2b2b2b;
    text-decoration: none;
    color: #2b2b2b;
    transition: 0.3s;
}

.btn-primary:hover {
    background: #2b2b2b;
    color: #fff;
}

/* SERVICES */
.services {
    padding: 80px 20px;
    text-align: center;
}

.services h2 {
    margin-bottom: 50px;
}

.services-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 30px;
}

.service-card {
    background: #ffffff;
    padding: 30px;
    border: 1px solid #eaeaea;
    transition: 0.3s;
}

.service-card:hover {
    transform: translateY(-5px);
}

/* RESPONSIVE SERVICES */
@media (max-width: 768px) {
    .services-grid {
        grid-template-columns: 1fr;
    }
}

.gallery {
    padding: 80px 30px;
    text-align: center;
}
.gallery-container {
    max-width: 1200px;
    margin: auto;
    padding: 60px 20px;
    text-align: center;
}

h1 {
    font-size: 36px;
    margin-bottom: 10px;
}

.subtitle {
    color: #777;
    margin-bottom: 40px;
}

/* ===== ALBUM GRID ===== */
.album-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(260px, 1fr));
    gap: 25px;
}

.album-card {
    position: relative;
    overflow: hidden;
    border-radius: 14px;
}

.album-card img {
    width: 100%;
    height: 320px;
    object-fit: cover;
    transition: transform .5s;
}

.album-card:hover img {
    transform: scale(1.1);
}

.album-overlay {
    position: absolute;
    inset: 0;
    background: linear-gradient(to top, rgba(0,0,0,.6), transparent);
    display: flex;
    align-items: flex-end;
    padding: 20px;
    color: #fff;
}

/* ===== PHOTO GRID ===== */
.photo-grid {
    margin-top: 40px;
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(220px, 1fr));
    gap: 18px;
}

.photo-item {
    width: 100%;
    border-radius: 12px;
    cursor: pointer;
    transition: .3s;
}

.photo-item:hover {
    transform: scale(1.03);
}

/* ===== LIGHTBOX ===== */
#lightbox {
    position: fixed;
    inset: 0;
    background: rgba(0,0,0,.9);
    display: none;
    align-items: center;
    justify-content: center;
    z-index: 999;
}

#lightbox img {
    max-width: 90%;
    max-height: 90%;
}

#close {
    position: absolute;
    top: 30px;
    right: 40px;
    font-size: 40px;
    color: #fff;
    cursor: pointer;
}

.back-link {
    display: inline-block;
    margin-bottom: 20px;
    color: #555;
    text-decoration: none;
}

/* HP */
@media (max-width: 768px) {
    .gallery-grid {
        grid-template-columns: 1fr;
    }
    .footer-bottom-modern {
        flex-direction: column;
        text-align: center;
        gap: 1rem;
    }
}


.packages {
    padding: 100px 20px;
    text-align: center;
}

.packages-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 30px;
}

.package-card {
    background: #fff;
    padding: 50px;
    border: 1px solid #eaeaea;
}

.package-card h4 {
    margin: 15px 0;
    font-weight: normal;
}

/* HP */
@media (max-width: 768px) {
    .packages-grid {
        grid-template-columns: 1fr;
    }
}


.page-hero {
    background: linear-gradient(to right, #c8a165, #8d6e3f);
    color: #fff;
    padding: 80px 20px;
    text-align: center;
}

.container {
    max-width: 1100px;
    margin: auto;
    padding: 60px 20px;
}

.testimoni {
    padding: 80px 20px;
    text-align: center;
}

.about-grid,
.services-grid,
.testimoni-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
    gap: 30px;
}

.card {
    background: #fff;
    padding: 25px;
    border-radius: 12px;
    box-shadow: 0 8px 20px rgba(0,0,0,0.08);
}

.contact-box {
    text-align: center;
}

    /* PAGE HEADER */
.page-header {
    text-align: center;
    padding: 70px 20px 40px;
}

.page-header h1 {
    font-size: 34px;
    color: #050505;
    margin-bottom: 10px;
}

/* CONTACT PAGE */
.contact-page {
    padding: 40px 0 80px;
}

.contact-wrapper {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 50px;
    align-items: center;
}

/* LEFT */
.contact-list {
    list-style: none;
    padding: 0;
    margin-bottom: 30px;
}

.contact-list li {
    display: flex;
    gap: 14px;
    margin-bottom: 18px;
    font-size: 16px;
}

.contact-list .icon {
    font-size: 18px;
    color: #0057d8;
}

.contact-list a {
    color: inherit;
    text-decoration: none;
}

.follow-title {
    font-weight: 600;
    margin-bottom: 15px;
}

/* SOCIAL */
.social-icons {
    display: flex;
    gap: 15px;
}

.social {
    width: 42px;
    height: 42px;
    border-radius: 50%;
    background: #0057d8;
    color: #fff;
    display: flex;
    align-items: center;
    justify-content: center;
    text-decoration: none;
    font-size: 14px;
    transition: 0.3s;
}

.social:hover {
    opacity: 0.85;
    transform: translateY(-3px);
}

/* MAP */
.contact-right iframe {
    width: 100%;
    height: 320px;
    border: none;
    border-radius: 12px;
}

/* SOCIAL ICON SVG */
.social svg {
    width: 20px;
    height: 20px;
    fill: #fff;
}

/* WARNA KHUSUS */
.social.ig { background: #E1306C; }
.social.wa { background: #25D366; }
.social.tt { background: #000000; }

.social:hover {
    transform: translateY(-3px) scale(1.05);
    opacity: 0.9;
}


/* RESPONSIVE */
@media (max-width: 768px) {
    .contact-wrapper {
        grid-template-columns: 1fr;
    }

    .contact-right iframe {
        height: 260px;
    }
}

