/* =========================================
   GLOBAL STYLE
========================================= */
body {
    font-family: 'IBM Plex Mono', monospace;
    margin: 0;
    background: #FFFBF3;
    color: #111;
}

/* =========================================
   NAVBAR
========================================= */
.navbar {
    background: #111;
    color: white;
    padding: 10px 0;
    position: sticky;
    top: 0;
}

.nav-container {
    max-width: 1000px;
    position: relative;
    margin: auto;
    display: flex;
    justify-content: space-between;
    padding: 0 20px;
}

.logo{
    color: white;
    text-decoration: none;
    font-weight: bold;
    display: flex;
    align-items: center;
}

.logo a:link,
.logo a:visited,
.logo a:hover,
.logo a:active {
    color: white;
    text-decoration: none;
}

.nav-menu {
    list-style: none;
    display: flex;
    gap: 30px;
}

.nav-menu a {
    color: #ccc;
    text-decoration: none;
}

.nav-menu a:hover,
.nav-menu a.active {
    color: white;
    border-bottom: 2px solid white;
}

/* Hamburger (mobile only) */
.menu-toggle {
    display: none;
}

/* =========================================
   SECTION (GLOBAL)
========================================= */
section:not(.hero-full) {
    max-width: 800px;
    margin: auto;
    padding: 5px 20px;
    text-align: center;
}



/* =========================================
   TYPOGRAPHY
========================================= */
.title {
    font-size: 40px;
    margin-bottom: 30px;
}

.section-label {
    font-size: 14px;
    margin-bottom: 10px;
    text-align: left;
}

/* =========================================
   BUTTON SYSTEM (FIXED & CONSISTENT)
========================================= */
button,
.btn {
    display: inline-block;
    width: 220px;              /* 🔥 KUNCI: semua sama */
    text-align: center;

    padding: 12px 0;           /* tinggi konsisten */
    background: #555;
    color: white;

    border: none;
    border-radius: 6px;

    text-decoration: none;
    cursor: pointer;

    margin-top: 20px;
    margin-bottom: 20px;
    font-family: inherit;
    font-size: 14px;
}

button:hover,
.btn:hover {
    background: #333;
}

.btn-pricelist {
    margin-top: 20px;
    margin-bottom: 60px; /* 🔥 ini yang bikin jarak ke divider lebih jauh */
}

/* =========================================
   HERO SECTION
========================================= */
.hero-content {
    display: flex;
    flex-direction: column;
    align-items: center;
}

.hero-full h1 {
    font-size: 48px;
    margin-bottom: 10px;
}

.hero-full h2 {
    font-size: 32px;
    margin: 20px 0;
}

.tagline {
    font-size: 14px;
    letter-spacing: 2px;
}

.subtitle {
    font-style: italic;
    text-align:center;
    margin-bottom: 20px;
}

/* =========================================
   ABOUT / WHY / SERVICES
========================================= */
.about,
.why,
.services {
    text-align: center;
}


.about h3,
.why h3,
.services h3 {
    font-size: 32px;
    margin-bottom: 20px;
    
}

.about p,
.why p {
    line-height: 1.7;
}

.why-item {
    margin-bottom: 25px;
}

.service-list {
    list-style: none;
    padding-left: 0px;
}


/* =========================================
   PRICELIST PAGE
========================================= */
.pricelist {
    max-width: 800px;
    margin: auto;
    padding: 40px 20px;
}

.price-box {
    margin-bottom: 60px;
}

.price-box h2 {
    font-size: 26px;
    margin-bottom: 10px;
}

.price-box p {
    font-size: 18px;
    margin: 10px 0;
}

.duration {
    color: #555;
}

/* =========================================
   CTA SECTION
========================================= */
.cta {
    text-align: center;
    margin-top: 60px;
        color: #555;
}

/* =========================================
   ABOUT PAGE
========================================= */
.about-page {
    max-width: 800px;
    margin: auto;
    padding: 40px 20px;
}

.about-page h2 {
    font-size: 26px;
    margin-top: 20px;
}

.about-page p {
    line-height: 1.8;
}

.about-image img {
    width: 100%;
    border-radius: 5px;
}

/*==========================================
    OUR LAB
============================================*/
.our-lab {
    max-width: 1100px;
    margin: 60px auto;
    text-align: center;
}

.our-lab h1 {
    margin-bottom: 10px;
}

.subtitle {
    color: #666;
    margin-bottom: 40px;
}

/* GRID GALLERY */
.gallery {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
    gap: 15px;
}

/* ITEM */
.gallery-item {
    overflow: hidden;
    border-radius: 10px;
}

/* IMAGE */
.gallery-item img {
    width: 100%;
    height: 250px;
    object-fit: cover;
    transition: 0.3s;
}

/* HOVER EFFECT */
.gallery-item:hover img {
    transform: scale(1.08);
}

/*=========================================
FREQUENTLY ASKED QUESTION
==========================================*/

.faq {
    max-width: 750px;
    margin: auto;
}

.faq h1 {
    text-align: center;
}

.faq p {
    text-align: left;
    line-height: 1.6;
}

/*=========================================
   DIVIDER (UNIVERSAL)
=========================================*/
.divider,
hr {
    width: 85%;
    margin: 20px auto;
    border: none;
    border-top: 1px dashed #444;
}

/*=========================================
   FOOTER
=========================================*/
footer {
    text-align: center;
    padding: 20px;
    border-top: 1px solid #555;
}

.footer-container {
    display: flex;
    justify-content: center;
    gap: 40px;
    flex-wrap: wrap;
}

.footer a {
    text-decoration: none;
    color: #000000;
}
/*=========================================
   MOBILE RESPONSIVE
=========================================*/
@media (max-width: 768px) {

    /* NAVBAR */
    .menu-toggle {
        display: block;
        font-size: 26px;
        cursor: pointer;
        color: white;

        margin: 0 auto;       /* 🔥 ini bikin ke tengah */
        text-align: center;
    }

    .nav-container {
        flex-direction: column;
        gap: 10px;
    }

    .nav-menu {
        display: none;
        flex-direction: column;
        background: #111;
        position: absolute;
        top: 50px;
        left: 0;
        width: 100%;
        padding: 15px 0;
        text-align: center;
    }

    .nav-menu.active {
        display: flex;
    }

    /* HERO */
    .hero-full h1 { font-size: 32px; }
    .hero-full h2 { font-size: 22px; }

    /* TEXT */
    .title { font-size: 28px; }

    /* BUTTON (FIXED — NO CHANGE IN SIZE) */
    .btn,
    button {
        width: 220px; /* 🔥 tetap sama, tidak 100% */
    }

    /* CTA */
    .cta-buttons {
        flex-direction: column;
    }

    .about-list {
        padding-left: 15px;   /* 🔥 kecilin indent */
        margin: 0;
        text-align: center;
    }

    .about-list li {
        margin-bottom: 12px;
        line-height: 1.5;
    }

    .footer-container {
        flex-direction: column;
        gap: 4px;
        text-align: center;
    }
}