/* @font-face {
    font-family: "GothamHTF-Medium";
    src: url("../fonts/GothamHTF-Medium.woff2") format("woff2"),
        url("../fonts/GothamHTF-Medium.woff") format("woff");
    font-weight: normal;
}

@font-face {
    font-family: "PhontPhreaks-Handwriting";
    src: url("../fonts/PhontPhreaks-Handwriting.woff2") format("woff2"),
        url("../fonts/PhontPhreaks-Handwriting.woff") format("woff");
    font-weight: normal;
} */

/* -------- Global -------- */
body {
    margin: 0;
    font-family: "Montserrat", sans-serif;
    color: white;
    background: #333;
}

/* --------- Navbar Base --------- */
.navbar {
    position: fixed;
    top: 0;
    width: 100%;
    padding: 25px 47px;
    display: flex;
    justify-content: center;
    z-index: 99999 !important;
    transition: background 0.3s ease, padding 0.3s ease;
}

.navbar.scrolled {
    background: rgba(0, 0, 0, 0.65);
    backdrop-filter: blur(10px);
    padding: 15px 45px;
}

.nav-container {
    width: 90%;
    display: flex;
    justify-content: space-between;
    align-items: center;
}

/* ---------- Logo ---------- */
.logo {
    display: flex;
    flex-direction: column;
    line-height: 1;
}

.main-logo {
    font-family: "GothamHTF-Medium", sans-serif;
    font-size: 32px;
    letter-spacing: 3px;
    color: #fff;
}

.sub-logo {
    font-size: 12px;
    letter-spacing: 2px;
    color: #bbb;
}

.logo-area {
    display: flex;
    flex-direction: column;
    align-items: flex-start;
}

.logo-image {
    height: 45px;
    object-fit: contain;
    margin-bottom: 2px;
}

.sub-logo {
    font-size: 11px;
    letter-spacing: 2px;
    color: #dcdcdc;
    margin-top: -4px;
}

/* -------- Menu Desktop -------- */
.nav-menu {
    list-style: none;
    display: flex;
    gap: 30px;
    align-items: center;
    padding-left: 0px;
}

.nav-menu li {
    position: relative;
}

.nav-link {
    font-size: 15px;
    color: #f5f5f5;
    font-weight: 300;
    text-decoration: none;
    padding-bottom: 4px;
    letter-spacing: 0.2px;
}

/* Underline effect */
.nav-link::after {
    content: "";
    position: absolute;
    left: 0;
    bottom: -4px;
    width: 0%;
    height: 1.8px;
    background: #fff;
    transition: width 0.25s ease;
}

.nav-link:hover::after,
.nav-link.active::after {
    width: 100%;
}

/* Language position fix */
.nav-right .lang {
    margin-left: 18px;
    font-size: 18px;
}

/* -------- Language Desktop -------- */
.desktop-lang .lang {
    margin-left: 15px;
    font-size: 20px;
    text-decoration: none;
    color: white;
}

/* hide in mobile */
.mobile-lang {
    display: none;
}

.lang {
    line-height: 1.2;
    font-size: 20px;
    display: inline-block;
}

.lang img,
.mobile-lang img {
    width: 22px;
    height: auto;
    object-fit: contain;
    display: block;
}

/* Bahasa aktif — desktop & mobile */
.active-lang img {
    border: 2px solid #fff;
    border-radius: 4px;
    padding: 2px;
    transform: scale(1.12);
    transition: 0.25s;
}

/* -------- Hamburger Button -------- */
.hamburger {
    z-index: 99999 !important;
    display: none;
    cursor: pointer;
    flex-direction: column;
    gap: 5px;
    padding-right: 20px;
}

.hamburger span {
    width: 26px;
    height: 3px;
    background: #fff;
    display: block;
    transition: 0.35s ease;
}

/* -------- Mobile View -------- */
@media (max-width: 920px) {
    .navbar {
        padding: 0px;
    }

    .nav-container {
        width: 100%;
        padding: 20px 50px;
    }

    .hamburger {
        display: flex;
    }

    .hamburger.active {
        position: absolute;
        top: 45px;
        right: 15px;
        z-index: 100000 !important;
    }

    .nav-menu {
        position: fixed;
        top: 0;
        right: -100%;
        width: 100vw;
        height: 100vh;
        background: rgba(0, 0, 0, 0.92);
        backdrop-filter: blur(12px);
        display: block;
        transition: right 0.35s ease;
        z-index: 9999;
        overflow-y: auto;
    }

    .nav-menu.show {
        margin-top: 0px;
        right: 0;
    }

    .nav-menu li {
        margin: 45px 45px;
    }

    .desktop-lang {
        display: none;
    }

    .mobile-lang {
        display: flex;
        gap: 18px;
        margin-top: 40px;
        padding-left: 3px;
    }

    .nav-link {
        font-size: 18px;
    }

    .nav-link.active {
        position: relative;
        padding-bottom: 6px;
    }

    .nav-link.active::after {
        display: block;
        content: "";
        width: 100%;
        height: 2px;
        background: #fff;
        position: absolute;
        left: 0;
        bottom: -2px;
    }

    .navbar.scrolled {
        padding: 0px;
    }
}

/* -------- Hamburger Animation -------- */
.hamburger.active span:nth-child(1) {
    transform: translateY(8px) rotate(45deg);
}

.hamburger.active span:nth-child(2) {
    opacity: 0;
}

.hamburger.active span:nth-child(3) {
    transform: translateY(-8px) rotate(-45deg);
}

/* -------- HERO SECTION -------- */
.hero {
    height: 100vh;
    background: url("/assets/images/home-banner.jpg") center/cover no-repeat;
    display: flex;
    align-items: center;
    padding-left: 60px;
}

.hero-content h1 {
    color: #fff;
    font-size: 64px;
    max-width: 800px;
    line-height: 1.1;
}

.subtitle {
    margin-top: 20px;
    font-size: 20px;
}

/* =============================
   ABOUT SECTION
============================= */
.about-section {
    background: #333;
    padding: 80px 60px;
    color: #eaeaea;
}

.about-container {
    display: flex;
    justify-content: center;
    align-items: center;
    max-width: 1300px;
    margin: 0 auto;
    gap: 60px;
}

.about-text {
    flex: 1.2;
    text-align: center;
}

.about-text h2 {
    font-size: 36px;
    letter-spacing: 3px;
    margin-bottom: 25px;
    color: #fff;
}

.about-text p {
    font-size: 16px;
    line-height: 1.7;
    margin-bottom: 18px;
}

/* Kolom kanan (gambar) */
.about-image {
    flex: 1;
    display: flex;
    justify-content: center;
}

.about-image img {
    width: 100%;
    max-width: 520px;
    border-radius: 4px;
    object-fit: cover;
}

/* -------- Responsive -------- */
@media (max-width: 992px) {
    .about-container {
        flex-direction: column;
        text-align: center;
    }

    .about-image {
        margin-top: 30px;
    }
}

/* =============================
   TREATMENT SECTION
============================= */
.treatment-section {
    background: url("/assets/images/treatment-bg.jpg") center/cover no-repeat;
    color: white;
    background-attachment: fixed;
    position: relative;
}

.treatment-overlay {
    background: rgba(10, 10, 10, 0.55);
    padding: 80px 60px;
}

.treatment-title {
    text-align: center;
    font-size: 28px;
    letter-spacing: 2px;
    margin-bottom: 25px;
}

/* Tabs */
.treatment-tabs {
    display: flex;
    flex-wrap: wrap;
    gap: 12px 15px;
    padding: 10px 0 20px;
    justify-content: center;
    overflow: visible;
}

.treatment-tabs .tab {
    background: rgba(0, 0, 0, 0.55);
    border: 1px solid #444;
    color: #fff;
    padding: 8px 18px;
    border-radius: 4px;
    cursor: pointer;
    white-space: nowrap;
}

.tab.active {
    background: #222;
}

/* Content */
.treatment-content {
    margin-top: 30px;
}

/* Accordion */
.accordion {
    max-width: 850px;
    margin: 0 auto;
}

.acc-item {
    border-bottom: 1px solid #666;
    margin-bottom: 10px;
    padding-bottom: 10px;
}

.acc-header {
    cursor: pointer;
    font-size: 16px;
    display: flex;
    align-items: center;
    gap: 10px;
    padding: 8px 0;
}

.acc-header span {
    font-size: 22px;
    display: inline-block;
    width: 20px;
}

.acc-body {
    margin-left: 28px;
    font-size: 15px;
    line-height: 1.6;
    max-height: 0;
    overflow: hidden;
    opacity: 0;
    transition: max-height 0.4s ease, opacity 0.3s ease;
}

.acc-body.show {
    max-height: 800px;
    opacity: 1;
}

.tab-box {
    display: none;
}

.tab-box.active {
    display: block;
}

.pill.active {
    background: #222;
    color: #fff;
}

/* Responsive */
@media (max-width: 768px) {
    .treatment-section {
        background-position: 85% center;
    }

    .treatment-tabs {
        justify-content: flex-start;
    }
}

/* ------- Hair & Body Treatment Shared Style ------- */
.treatment-subtitle {
    text-align: center;
    font-size: 26px;
    letter-spacing: 2px;
    margin-top: 80px;
    margin-bottom: 25px;
    color: #fff;
}

/* Pills */
.treatment-pills {
    display: flex;
    justify-content: center;
    gap: 15px;
    flex-wrap: wrap;
    margin-bottom: 25px;
}

.pill {
    background: rgba(0, 0, 0, 0.65);
    border: 1px solid #333;
    padding: 9px 22px;
    border-radius: 6px;
    color: #fff;
    cursor: pointer;
    font-size: 15px;
    white-space: nowrap;
}

.pill:hover {
    background: rgba(255, 255, 255, 0.1);
    transition: 0.2s;
}

/* Description Hair */
.hair-desc {
    display: none;
    max-width: 900px;
    margin: 0 auto;
    text-align: left;
    line-height: 1.6;
    color: #ddd;
    padding: 0 20px;
    font-size: 15px;
}

.hair-desc.active {
    display: block;
}

/* Description Body — SAME STYLE */
.body-desc {
    display: none;
    max-width: 900px;
    margin: 0 auto;
    text-align: left;
    line-height: 1.6;
    color: #ddd;
    padding: 0 20px;
    font-size: 15px;
}

.body-desc.active {
    display: block;
}

/* Responsive */
@media (max-width: 768px) {
    .treatment-subtitle {
        margin-top: 60px;
        font-size: 22px;
    }

    .pill {
        font-size: 14px;
        padding: 7px 18px;
    }
}

/* ==============================
   BEFORE & AFTER SECTION
============================== */
.before-after-section {
    background: #333;
    padding: 40px 60px;
    color: #fff;
    text-align: center;
}

.before-after-section h2 {
    font-size: 32px;
    margin-bottom: 20px;
    letter-spacing: 2px;
}

.ba-block {
    opacity: 0;
    transform: translateY(40px);
    transition: all 0.8s ease;
}

.ba-block.show {
    opacity: 1;
    transform: translateY(0);
}

/* Styles tambahan (optional) */
.ba-images {
    display: flex;
    justify-content: center;
    gap: 20px;
}

.ba-labels {
    display: flex;
    justify-content: space-between;
    max-width: 500px;
    margin: 8px auto 0;
    color: #ccc;
    font-size: 12px;
}

.ba-caption {
    text-align: center;
    margin-top: 10px;
    color: #fff;
}

.ba-category {
    display: inline-block;
    padding: 6px 12px;
    background: rgba(255, 255, 255, 0.15);
    border-radius: 8px;
    margin: 10px auto 20px;
    color: #fff;
}

/* -------- Mobile View -------- */
@media (max-width: 920px) {
    .ba-images {
        flex-direction: column;
        gap: 5px;
    }
}

/* ==============================
   WINKY TREATMENT SECTION
============================== */

.winky-section {
    background: #1a1a1a;
    padding: 80px 0;
    color: #fff;
}

.winky-container {
    max-width: 1300px;
    margin: auto;
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 0 40px;
    gap: 50px;
}

/* LEFT TEXT */
.winky-text {
    width: 50%;
    text-align: center;
    line-height: 1.7;
    font-size: 15px;
    color: #ddd;
}

.winky-text h2 {
    font-size: 30px;
    margin-bottom: 25px;
    letter-spacing: 1px;
    color: #fff;
}

/* RIGHT IMAGE */
.winky-image {
    width: 50%;
}

.winky-image img {
    width: 100%;
    border-radius: 10px;
    object-fit: cover;
}

/* Responsive */
@media (max-width: 992px) {
    .winky-container {
        flex-direction: column;
        text-align: center;
    }

    .winky-text,
    .winky-image {
        width: 100%;
    }
}

@media (max-width: 768px) {
    .winky-text h2 {
        font-size: 26px;
    }

    .winky-text {
        font-size: 14px;
        padding: 0 10px;
    }
}

/* ===============================
   FAQ SECTION
=============================== */

.faq-section {
    padding: 80px 50px;
    background: #f5f5e8;
    color: #222;
}

.faq-title {
    text-align: center;
    font-size: 28px;
    margin-bottom: 40px;
    letter-spacing: 1px;
}

.faq-grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 25px 50px;
    align-items: start;
}

.faq-item {
    background: #fff;
    padding: 18px 18px;
    border-left: 4px solid #000;
    border-radius: 5px;
}

.faq-question {
    display: flex;
    align-items: center;
    cursor: pointer;
    font-weight: 600;
    font-size: 15px;
}

.faq-icon {
    margin-right: 8px;
    font-weight: bold;
    font-size: 30px;
}

.faq-answer {
    max-height: 0;
    overflow: hidden;
    opacity: 0;
    transform: translateY(-4px);
    transition: max-height 0.45s ease, opacity 0.35s ease, transform 0.35s ease;
    line-height: 1.3;
}

.faq-item.active .faq-answer {
    max-height: 500px;
    opacity: 1;
    transform: translateY(0);
    margin-top: 12px;
}

.faq-item.active .faq-icon {
    color: #000;
}

/* Mobile Responsive */
@media (max-width: 768px) {
    .faq-grid {
        grid-template-columns: 1fr;
    }
}

/* ==============================
   VIDEO GALLERY SECTION
============================== */
.video {
    padding: 40px 50px;
    background: #333;
    color: #fff;
}

/* ---- Section Title ---- */
.video-title {
    text-align: center;
    /* font-size: 50px; */
    letter-spacing: 1px;
    margin-bottom: 40px;
    color: white;
}

/* ---- Grid ---- */
.video-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
    gap: 40px;
    max-width: 1100px;
    margin: 0 auto;
    padding: 0 20px;
}

/* ---- Video Card ---- */
.video-card {
    text-align: center;
}

.video-thumb {
    position: relative;
    display: block;
    overflow: hidden;
    border-radius: 6px;
}

.video-thumb img {
    width: 100%;
    border-radius: 6px;
    transition: transform 0.3s ease;
}

.video-thumb:hover img {
    transform: scale(1.05);
}

/* ---- Play Button ---- */
.play-button {
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    font-size: 45px;
    color: white;
    opacity: 0.8;
}

/* ---- Modal Overlay ---- */
.video-modal {
    display: none;
    position: fixed;
    inset: 0;
    background: rgba(0, 0, 0, 0.75);
    backdrop-filter: blur(4px);
    justify-content: center;
    align-items: center;
    z-index: 9999;
}

/* ---- Modal Content ---- */
.video-modal-content {
    position: relative;
    width: 80%;
    max-width: 900px;
    background: #000;
    border-radius: 8px;
    overflow: hidden;
    animation: fadeIn 0.3s ease;
}

@keyframes fadeIn {
    from {
        opacity: 0;
        transform: scale(0.95);
    }
    to {
        opacity: 1;
        transform: scale(1);
    }
}

/* ---- Close Button ---- */
.video-modal-close {
    position: absolute;
    top: 10px;
    right: 20px;
    font-size: 32px;
    color: white;
    cursor: pointer;
    z-index: 100;
}

/* ---- YouTube Frame ---- */
#videoFrame {
    width: 100%;
    height: 500px;
}

@media (max-width: 768px) {
    .video-grid {
        grid-template-columns: 1fr;
        gap: 25px;
        padding: 0 10px;
    }

    #videoFrame {
        height: 250px;
    }
}

/* ==============================
   LOCATION SECTION
============================== */
.lokasi-section {
    padding: 60px 0;
    color: #fff;
    background: #222;
}

.lokasi-title {
    text-align: left;
    font-size: 32px;
    margin-bottom: 30px;
    margin-left: 25px;
    letter-spacing: 2px;
}

.lokasi-wrapper {
    display: grid;
    grid-template-columns: 200px 1fr 200px;
    gap: 40px;
    padding: 0 40px;
}

.lokasi-title-wrapper {
    display: flex;
    align-items: center;
    gap: 20px;
    margin-left: 25px;
    margin-bottom: 30px;
}

.lokasi-title-wrapper h2 {
    font-size: 32px;
    letter-spacing: 2px;
    white-space: nowrap;
}

.lokasi-title-line {
    height: 2px;
    background: white;
    flex-grow: 1;
    margin-right: 40px;
}

.lokasi-logo img {
    width: 150px;
}

.lokasi-outlet h3,
.lokasi-social h3 {
    margin-bottom: 15px;
    font-size: 20px;
    font-weight: bold;
}

.lokasi-item h4 {
    font-size: 16px;
}

.social-icons {
    display: flex;
    gap: 15px;
}

.social-btn {
    width: 34px;
    height: 34px;
    border-radius: 50%;
    background: #fff;
    display: flex;
    justify-content: center;
    align-items: center;
    color: #000;
    font-size: 18px;
}

.lokasi-footer {
    text-align: center;
    margin-top: 40px;
    color: #ccc;
    font-size: 13px;
}

.lokasi-columns {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 40px;
}

.left-col,
.right-col {
    display: flex;
    flex-direction: column;
    gap: 20px;
}

/* Mobile Responsive */
@media (max-width: 768px) {
    .lokasi-columns {
        grid-template-columns: 1fr !important; /* dari 2 kolom → 1 kolom */
        gap: 20px;
    }

    .left-col,
    .right-col {
        gap: 20px;
    }

    .lokasi-outlet {
        display: block;
        columns: 1;
    }

    .lokasi-social {
        text-align: center;
        margin-top: 20px;
    }

    .social-icons {
        justify-content: center;
    }

    .lokasi-wrapper {
        grid-template-columns: 1fr;
        text-align: center;
    }

    .lokasi-title {
        text-align: center;
        margin-left: 0;
    }

    .lokasi-logo img {
        margin: 0 auto;
    }
}

/* =============================
    SCROLL TO TOP SECTION
============================= */
/* Scroll to Top Button */
.scroll-top-btn {
    position: fixed;
    bottom: 40px;
    right: 40px;
    width: 42px;
    height: 42px;
    background: rgba(255, 255, 255, 0.35);
    color: #222;
    border: none;
    border-radius: 50%;
    cursor: pointer;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 18px;
    transition: 0.3s ease;
    opacity: 0;
    pointer-events: none;
    z-index: 999999;
}

.scroll-top-btn.show {
    opacity: 1;
    pointer-events: auto;
}

.scroll-top-btn:hover {
    background: rgba(255, 255, 255, 0.55);
}
