/* RESET & GLOBAL */
* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
    font-family: "Montserrat", sans-serif;
}

body {
    line-height: 1.6;
    color: #333;
    background: #f3f1e6;
    display: flex;
    height: 100vh;
    overflow: hidden;
    font-family: "Montserrat", sans-serif;
}

/* NAVBAR */
header {
    background: #f3f1e6;
}

.navbar-wrapper {
    width: 100%;
    padding: 30px 0;
}

.nav-links {
    /* display: flex;
        justify-content: space-between;
        align-items: center;
        padding: 15px 30px; */

    display: flex;
    justify-content: center;
    gap: 32px;
}

.navbar a {
    text-decoration: none;
    font-size: 18px;
    color: #222;
    font-weight: 400;
    position: relative;
    padding-bottom: 6px;
}

.navbar a.active::after {
    content: "";
    position: absolute;
    left: 0;
    bottom: 0;
    width: 100%;
    height: 1px;
    background-color: #222;
}

.navbar a:hover::after {
    content: "";
    position: absolute;
    left: 0;
    bottom: 0;
    width: 100%;
    height: 1px;
    background-color: #222;
}

.logo {
    font-size: 24px;
    font-weight: bold;
}

.nav-links {
    list-style: none;
    display: flex;
}

/* HERO */
.hero {
    text-align: center;
    padding: 80px 20px;
    background: #f3f1e6;
}

.hero h1 {
    font-size: 96px;
    font-family: "Playfair Display", serif;
    padding-top: 0px;
    margin-bottom: 10px;
}

.hero p {
    font-size: 24px;
    font-family: "Montserrat", sans-serif;
}

.content-hero {
    text-align: center;
    display: grid;
    align-items: center;
    height: calc(100vh - 160px);
}

.hero-description {
    font-size: 18px;
    margin-top: 15px;
    max-width: 600px;
    margin-left: auto;
    margin-right: auto;
}

.content {
    width: 70%;
    overflow-y: auto;
}

/* GAMBAR */
.fixed-image {
    width: 30%;
    height: 100vh;
    position: fixed;
    right: 0;
    top: 0;
}

.fixed-image img {
    width: 100%;
    height: 100%;
    object-fit: cover;
}

/* CONTENT SECTIONS */
.content-section {
    padding: 60px 30px;
    max-width: 800px;
    margin: auto;
}

.content-section h2 {
    font-size: 28px;
    margin-bottom: 15px;
}

/* FOOTER */
footer {
    text-align: center;
    padding: 20px;
    background: #f3f1e6;
    font-size: 14px;
    color: #555;
}

/* RESPONSIVE */
@media (max-width: 768px) {
    .hero h1 {
        font-family: "Playfair Display", serif;
        font-size: clamp(28px, 6vw, 106px);
        line-height: 1.2;
        margin-bottom: 10px;
    }

    .hero p {
        font-size: 14px;
        font-family: "Montserrat", sans-serif;
    }

    .hero-description {
        font-family: "Montserrat", sans-serif;
        font-size: medium;
        line-height: 1.6;
        max-width: 600px;
        margin: 12px auto 0;
    }

    .navbar-wrapper {
        padding: 0;
    }

    .nav-links {
        position: fixed;
        bottom: 0;
        left: 0;

        width: 100%;
        height: 64px;
        background: #fff;
        border-top: 1px solid #eaeaea;

        display: flex;
        justify-content: space-around;
        align-items: center;

        gap: 3px !important;
        z-index: 1000;
    }

    .nav-link {
        flex: 1;
        color: #8a8a8a;

        display: flex;
        flex-direction: column;
        align-items: center;
        justify-content: center;
        font-size: 11px;
    }

    .nav-link i {
        display: block;
        font-size: 20px;
        line-height: 1;
    }

    .nav-link span {
        margin-top: 5px;
        line-height: 1;
        font-size: 11px;
    }

    .nav-link.active {
        color: #1f2f2a;
        font-weight: 600;
    }

    .nav-link::after {
        display: none;
    }

    body {
        align-items: center;
        display: flex;
        flex-direction: column;
    }

    @supports (padding-bottom: env(safe-area-inset-bottom)) {
        .nav-links {
            padding-bottom: env(safe-area-inset-bottom);
            height: calc(64px + env(safe-area-inset-bottom));
        }
    }

    /* GAMBAR */
    /* WRAPPER GAMBAR */
    .fixed-image {
        position: relative;
        width: 70%;
        height: 60vh;
        order: -1;
        overflow: hidden;
        background: #f3f1e6;
    }

    .fixed-image img {
        width: 100%;
        height: 100%;
        /* max-height: 65vh; */
        object-fit: cover;
        display: block;
    }

    .content {
        width: 100%;
        padding: 0px 24px 20px 24px;
    }

    .hero {
        padding-bottom: 0px;
        padding-top: 0px;
    }

    .content-hero {
        height: auto;
        padding-top: 0;
        padding-bottom: 0;
    }

    footer {
        display: none;
    }
}
