*{
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

html, body{
    margin: 0;
    padding: 0;
    width: 100%;
    height: 100%;   
}   

/* HERO */
.hero{
    position: relative;
    width: 100vw;
    height: 100vh;
    overflow: hidden;
}

/* FOTO */
.slide{
    position: absolute;
    top: 0;
    left: 0;

    width: 100%;
    height: 100%;

    object-fit: cover;

    opacity: 0;
    transition: opacity 1.5s ease-in-out;
}

/* FOTO AKTIF */
.slide.active{
    opacity: 1;
}

/* =========================
   NAVBAR
========================= */
.navbar{
    position: fixed;

    top: 0;
    left: 0;

    width: 100%;

    padding: 20px 60px;

    display: flex;
    align-items: center;

    z-index: 9999;

    background: transparent;

    transition:
    background 1s ease,
    backdrop-filter 1s ease,
    box-shadow 1s ease,
    padding 1s ease;
}

/* SAAT DISCROLL */
.navbar.scrolled{

    background: rgba(255,255,255,0.92);

    backdrop-filter: blur(10px);
    -webkit-backdrop-filter: blur(10px);

    box-shadow:
    0 2px 15px rgba(0,0,0,0.08);

    padding: 16px 60px;
}

/* MENU */
.nav-links{
    display: flex;

    gap: 40px;

    list-style: none;
}

/* LINK */
.nav-links li a{

    color: white;

    text-decoration: none;

    font-size: 20px;
    font-weight: bold;

    position: relative;

    transition:
    color 0.35s ease;
}

/* WARNA LINK SAAT SCROLL */
.navbar.scrolled .nav-links li a{
    color: black;
}

/* UNDERLINE */
.nav-links li a::after{

    content: "";

    position: absolute;

    left: 0;
    bottom: -6px;

    width: 0%;
    height: 2px;

    border-radius: 10px;

    background: white;

    transition:
    width 0.35s ease,
    background 0.35s ease;
}

/* UNDERLINE SAAT SCROLL */
.navbar.scrolled .nav-links li a::after{
    background: black;
}

/* HOVER */
.nav-links li a:hover::after{
    width: 100%;
}

/* =========================
   RESPONSIVE TABLET
========================= */
@media(max-width:900px){

    .navbar{
        top: 0;
        left: 0;

        padding: 15px 20px;
    }

    .links{
        gap: 20px;

        flex-wrap: wrap;
    }

    .links li a{
        font-size: 15px;
    }
}

/* MOBILE */
@media(max-width:600px){

    .navbar{
        width: 100%;

        left: 0;

        padding: 12px 15px;

        justify-content: center;
    }

    .links{
        gap: 15px;

        justify-content: center;

        flex-wrap: wrap;
    }

    .links li a{
        font-size: 13px;
    }
}   

/* ==========================
   FOOTER
========================== */
.footer{
    width: 100%;

    padding: 70px 20px 40px;

    background: #111;

    text-align: center;
}

/* CONTENT */
.footer-content h2{
    color: white;

    font-size: 28px;

    letter-spacing: 2px;

    margin-bottom: 15px;
}

.footer-content p{
    color: #999;

    font-size: 15px;

    margin-bottom: 35px;
}

/* LINKS */
.footer-links{
    display: flex;

    justify-content: center;

    gap: 35px;

    flex-wrap: wrap;

    margin-bottom: 35px;
}

/* LINK */
.footer-links a{
    text-decoration: none;

    color: white;

    font-size: 15px;

    position: relative;

    transition: 0.3s;
}

/* UNDERLINE */
.footer-links a::after{
    content: "";

    position: absolute;

    left: 0;
    bottom: -5px;

    width: 0%;
    height: 1px;

    background: white;

    transition: 0.3s;
}

/* HOVER */
.footer-links a:hover::after{
    width: 100%;
}

/* COPYRIGHT */
.footer-content span{
    color: #666;

    font-size: 13px;
}

/* RESPONSIVE */
@media(max-width:600px){

    .footer-content h2{
        font-size: 22px;
    }

    .footer-links{
        gap: 18px;
    }
}

/* =========================
   HISTORY NAVBAR
========================= */
.history-navbar{
    position: fixed;
    top: 0;
    left: 0;

    width: 100%;

    padding: 20px 60px;

    display: flex;
    justify-content: flex-start; /* posisi seperti pertama */
    align-items: center;

    z-index: 1000;

    background: rgba(255,255,255,0.9);
    backdrop-filter: blur(10px);

    border-bottom: 1px solid #ddd;
}

/* MENU */
.history-nav-links{
    display: flex;
    gap: 40px;

    list-style: none;
}

/* LINK */
.history-nav-links li a{
    color: black;
    text-decoration: none;
    font-size: 20px;
    font-weight: bold;

    transition: 0.3s;
}

/* LINK */
.history-nav-links li a{
    color: black;
    text-decoration: none;
    font-size: 20px;
    font-weight: bold;

    transition: 0.3s;

    position: relative;
}

/* UNDERLINE */
.history-nav-links li a::after{
    content: "";

    position: absolute;

    left: 0;
    bottom: -6px;

    width: 0%;
    height: 2px;

    background: black;

    border-radius: 10px;

    transition: width 0.35s ease;
}

/* HOVER */
.history-nav-links li a:hover::after{
    width: 100%;
}

/* =========================
   RESPONSIVE HISTORY NAVBAR
========================= */
@media(max-width:900px){

    .history-navbar{
        top: 0;
        left: 0;

        padding: 15px 20px;
    }

    .history-nav-links{
        gap: 20px;

        flex-wrap: wrap;
    }

    .history-nav-links li a{
        font-size: 15px;
    }
}

/* MOBILE */
@media(max-width:600px){

    .history-navbar{
        width: 100%;

        left: 0;

        padding: 12px 15px;

        justify-content: center;
    }

    .history-nav-links{
        gap: 15px;

        justify-content: center;

        flex-wrap: wrap;
    }

    .history-nav-links li a{
        font-size: 13px;
    }
}   

/* =========================
   HISTORY SECTION
========================= */
.history{
    width: 85%;
    margin: auto;
    padding: 140px 0 100px;
}

/* TITLE */
.history-title{
    text-align: center;
    margin-bottom: 80px;
}

.history-title h1{
    font-size: 55px;
    color: #111;
    margin-bottom: 15px;
}

.history-title p{
    font-size: 18px;
    color: #666;
}

/* CARD */
.history-card{
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 70px;

    margin-bottom: 100px;
}

/* REVERSE */
.reverse{
    flex-direction: row-reverse;
}

/* IMAGE */
.history-image{
    width: 420px;
    overflow: hidden;

    border-radius: 24px;

    box-shadow: 0 15px 40px rgba(0,0,0,0.15);

    transition: 0.4s ease;
}

.history-image:hover{
    transform: translateY(-10px);
}

/* IMAGE */
.history-image img{
    width: 100%;
    height: 100%;

    object-fit: cover;
    display: block;

    transition: 0.5s;
}

.history-image:hover img{
    transform: scale(1.05);
}

/* CONTENT */
.history-content{
    width: 500px;
}

.history-content h2{
    font-size: 40px;
    margin-bottom: 20px;
    color: #111;
}

.history-content p{
    font-size: 17px;
    line-height: 1.9;
    color: #555;

    margin-bottom: 30px;
}


/* BOTTOM BOX */
.history-bottom{
    background: white;

    padding: 60px;

    border-radius: 30px;

    text-align: center;

    box-shadow: 0 15px 40px rgba(0,0,0,0.08);
}

.history-bottom h2{
    font-size: 40px;
    margin-bottom: 20px;
}

.history-bottom p{
    font-size: 17px;
    line-height: 1.9;
    color: #555;

    max-width: 900px;
    margin: auto;
}

/* RESPONSIVE */
@media(max-width: 900px){

    .history-card{
        flex-direction: column;
    }

    .history-content{
        width: 100%;
        text-align: center;
    }

    .history-image{
        width: 100%;
    }

    .history-title h1{
        font-size: 40px;
    }

    .history-content h2{
        font-size: 32px;
    }
}

/* ==========================
   OUR STORY
========================== */
.ourstory{
    width: 85%;
    margin: auto;
    padding: 130px 0 100px;
}

/* TITLE */
.ourstory-title{
    text-align: center;
    margin-bottom: 90px;
}

.ourstory-title h1{
    font-size: 55px;
    font-weight: 700;
    color: #111;
    margin-bottom: 12px;
}

.ourstory-title p{
    font-size: 18px;
    color: #666;
}

/* CARD */
.story-card{
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 70px;

    margin-bottom: 100px;
}

/* REVERSE */
.reverse{
    flex-direction: row-reverse;
}

/* IMAGE */
.story-image{
    width: 400px;
    height: 500px;

    border-radius: 28px;
    overflow: hidden;

    box-shadow: 0 15px 35px rgba(0,0,0,0.12);

    transition: 0.4s ease;
}

.story-image:hover{
    transform: translateY(-8px);
}

.story-image img{
    width: 100%;
    height: 100%;

    object-fit: cover;
    display: block;

    transition: 0.5s;
}

.story-image:hover img{
    transform: scale(1.05);
}

/* CONTENT */
.story-content{
    width: 520px;
}

/* TAG */
.story-tag{
    display: inline-block;

    background: #111;
    color: white;

    padding: 8px 18px;

    border-radius: 30px;

    font-size: 14px;
    margin-bottom: 18px;
}

/* TITLE */
.story-content h2{
    font-size: 42px;
    color: #111;

    margin-bottom: 20px;
}

/* TEXT */
.story-content p{
    font-size: 17px;
    color: #555;

    line-height: 1.9;
}

/* RESPONSIVE */
@media(max-width:900px){

    .story-card{
        flex-direction: column;
        text-align: center;
    }

    .story-content{
        width: 100%;
    }

    .story-image{
        width: 100%;
        height: auto;
    }

    .ourstory-title h1{
        font-size: 40px;
    }

    .story-content h2{
        font-size: 32px;
    }
}

/* ==========================
   PRODUCT
========================== */
.product{
    width: 90%;
    margin: auto;

    padding: 130px 0 100px;
}

/* TITLE */
.product-title{
    text-align: center;

    margin-bottom: 70px;
}

.product-title h1{
    font-size: 55px;
    color: #111;

    margin-bottom: 10px;
}

.product-title p{
    font-size: 18px;
    color: #666;
}

/* GRID */
.product-container{
    display: grid;

    grid-template-columns: repeat(5, 1fr);

    gap: 30px;
    
}

.product-link{
    text-decoration: none;
    color: inherit;
}

/* CARD */
.product-card{
    background: white;

    border-radius: 25px;

    overflow: hidden;

    box-shadow: 0 10px 30px rgba(0,0,0,0.10);

    transition: 0.4s;
}

/* HOVER */
.product-card:hover{
    transform: translateY(-10px);
}

/* IMAGE */
.product-card img{
    width: 100%;
    height: 280px;

    object-fit: cover;

    display: block;
}

/* CONTENT */
.product-content{
    padding: 20px;
}

/* NAME */
.product-content h2{
    font-size: 20px;
    color: #111;

    margin-bottom: 12px;
}

/* DESC */
.product-content p{
    font-size: 15px;
    color: #666;

    line-height: 1.7;

    margin-bottom: 18px;
}

/* PRICE */
.product-content h3{
    font-size: 18px;
    color: #000;

    margin-bottom: 18px;
}

/* BUTTON */
.product-content button{
    width: 100%;

    padding: 12px;

    border: none;

    border-radius: 50px;

    background: black;
    color: white;

    cursor: pointer;

    transition: 0.3s;
}

/* HOVER BUTTON */
.product-content button:hover{
    background: #00bfff;
}

/* RESPONSIVE */
@media(max-width:1400px){

    .product-container{
        grid-template-columns: repeat(3, 1fr);
    }
}

@media(max-width:900px){

    .product-container{
        grid-template-columns: repeat(2, 1fr);
    }
}

@media(max-width:600px){

    .product-container{
        grid-template-columns: 1fr;
    }

    .product-title h1{
        font-size: 40px;
    }
}

/* ==========================
   DETAIL PRODUCT
========================== */
.detail-product{
    width: 85%;

    margin: auto;

    padding: 140px 0 100px;

    display: flex;
    justify-content: center;
    align-items: center;

    gap: 80px;

    flex-wrap: wrap;
}

/* ==========================
   SLIDER
========================== */

/*BACK TEXT*/
.back-text{
    position: relative;
    top: 110px;
    left: 120px;

    font-family: Arial, Helvetica, sans-serif;

    text-decoration: none;

    color: #000;

    font-size: 15px;
    font-weight: 600;

    display: inline-block;

    transition: 0.3s ease;
}

/* UNDERLINE EFFECT */
.back-text::after{
    content: "";

    position: absolute;

    left: 0;
    bottom: -3px;

    width: 0%;
    height: 1.5px;

    background: black;

    transition: 0.3s ease;
}

/* HOVER */
.back-text:hover::after{
    width: 100%;
}

.detail-slider{
    position: relative;

    width: 500px;
    height: 650px;

    border-radius: 30px;

    overflow: hidden;

    box-shadow: 0 15px 40px rgba(0,0,0,0.12);

    background: white;
}

/* IMAGE */
.slider-images{
    width: 100%;
    height: 100%;
    position: relative;
}

/* SLIDE */
.detail-slide{
    position: absolute;
    top: 0;
    left: 0;

    width: 100%;
    height: 100%;

    object-fit: cover;

    opacity: 0;

    transition: opacity 0.8s ease;
}

/* ACTIVE */
.detail-slide.active{
    opacity: 1;
}

/* ==========================
   SLIDER BUTTON MODERN
========================== */
.slider-btn{
    position: absolute;
    top: 50%;

    transform: translateY(-50%);

    width: 42px;
    height: 42px;

    border: none;
    border-radius: 14px;

    background: rgba(255,255,255,0.55);

    backdrop-filter: blur(12px);
    -webkit-backdrop-filter: blur(12px);

    color: #222;

    font-size: 16px;
    font-weight: 600;

    cursor: pointer;

    z-index: 100;

    transition: all 0.25s ease;

    box-shadow:
    0 4px 12px rgba(0,0,0,0.08),
    inset 0 1px 1px rgba(255,255,255,0.35);
}

/* HOVER */
.slider-btn:hover{
    background: rgba(255,255,255,0.9);

    transform: translateY(-50%) scale(1.06);

    box-shadow:
    0 8px 20px rgba(0,0,0,0.12);
}

/* ACTIVE */
.slider-btn:active{
    transform: translateY(-50%) scale(0.96);
}

/* LEFT */
.prev{
    left: 18px;
}

/* RIGHT */
.next{
    right: 18px;
}

/* ==========================
   CONTENT
========================== */
.detail-content{
    width: 500px;
}

/* TITLE */
.detail-content h1{
    font-size: 52px;

    color: #111;

    margin-bottom: 20px;
}

/* PRICE */
.detail-content h2{
    font-size: 38px;

    color: black;

    margin-bottom: 25px;
}

/* TEXT */
.detail-content p{
    font-size: 18px;

    line-height: 1.9;

    color: #555;

    margin-bottom: 35px;
}

/* BUTTON */
.buy-btn{
    padding: 15px 45px;

    border: none;

    border-radius: 50px;

    background: black;
    color: white;

    font-size: 16px;

    cursor: pointer;

    transition: 0.3s;

    text-decoration: inherit;
}

/* HOVER */
.buy-btn:hover{
    background: #00bfff;

    transform: translateY(-3px);
}

/* RESPONSIVE */
@media(max-width:900px){

    .detail-product{
        flex-direction: column;
    }

    .detail-slider{
        width: 100%;
        height: 500px;
    }

    .detail-content{
        width: 100%;
        text-align: center;
    }

    .detail-content h1{
        font-size: 40px;
    }
}

/* =========================
   360 VIEW
========================= */
.view360{
    width: 100%;

    padding: 40px 0 120px;

    text-align: center;
}

/* TITLE */
.view360-title{
    margin-bottom: 40px;
}

.view360-title h2{
    font-size: 42px;

    color: #111;

    margin-bottom: 10px;
}

.view360-title p{
    font-size: 16px;

    color: #777;
}

/* CONTAINER */
.viewer-container{
    width: 650px;
    height: 650px;

    margin: auto;

    background: #f7f7f7;

    border-radius: 30px;

    overflow: hidden;

    display: flex;
    justify-content: center;
    align-items: center;

    box-shadow:
    0 15px 40px rgba(0,0,0,0.08);
}   

/* IMAGE */
.viewer-container img{
    width: 100%;
    height: 100%;

    object-fit: cover;

    user-select: none;

    cursor: grab;
}

/* ACTIVE DRAG */
.viewer-container img:active{
    cursor: grabbing;
}

/* ==========================
   CONTACT HERO
========================== */
.contact-hero{
    position: relative;

    width: 100%;
    min-height: 100vh;

    display: flex;
    justify-content: center;
    align-items: center;

    overflow: hidden;
}

/* BACKGROUND IMAGE */
.contact-hero img{
    position: absolute;
    top: 0;
    left: 0;

    width: 100%;
    height: 100%;

    object-fit: cover;

    z-index: 1;
}

/* DARK OVERLAY */
.contact-hero::after{
    content: "";

    position: absolute;
    top: 0;
    left: 0;

    width: 100%;
    height: 100%;

    background: rgba(0,0,0,0.25);

    z-index: 2;
}

/* CONTENT */
.contact-overlay{
    position: relative;

    z-index: 3;

    width: 100%;
    max-width: 900px;

    padding: 20px;

    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: center;

    text-align: center;

    color: white;
}

/* TITLE */
.contact-overlay h1{
    font-size: 70px;
    font-weight: 800;

    letter-spacing: 3px;

    margin-bottom: 20px;

    text-align: center;

    text-shadow:
    0 5px 25px rgba(0,0,0,0.35);
}

/* TEXT */
.contact-overlay p{
    font-size: 18px;

    line-height: 1.8;

    max-width: 700px;

    margin-bottom: 40px;

    text-align: center;

    text-shadow:
    0 4px 15px rgba(0,0,0,0.25);
}

/* SOCIAL */
.contact-social{
    margin-top: 35px;

    display: flex;
    justify-content: center;
    align-items: center;

    gap: 20px;

    flex-wrap: wrap;
}

/* BUTTON */
.contact-social a{
    padding: 14px 28px;

    border-radius: 50px;

    text-decoration: none;

    color: white;

    font-size: 15px;
    font-weight: 600;

    transition: 0.35s ease;

    display: flex;
    align-items: center;
    justify-content: center;

    gap: 10px;

    line-height: 1;

    backdrop-filter: blur(14px);
    -webkit-backdrop-filter: blur(14px);

    border: 1px solid rgba(255,255,255,0.12);

    background: rgba(30,30,30,0.45);

    box-shadow:
    0 8px 25px rgba(0,0,0,0.18);
}

/* ICON */
.contact-social a img{
    width: 18px;
    height: 18px;

    object-fit: contain;

    display: block;

    position: relative;
    top: 0;
}

/* HOVER */
.contact-social a:hover{
    transform: translateY(-3px);

    background: rgba(255,255,255,0.12);

    box-shadow:
    0 12px 30px rgba(0,0,0,0.22);
}

/* ==========================
   TABLET
========================== */
@media(max-width:992px){

    .contact-overlay h1{
        font-size: 52px;
    }

    .contact-overlay p{
        font-size: 16px;
        max-width: 600px;
    }

    .contact-social{
        gap: 15px;
    }

    .contact-social a{
        min-width: 160px;
    }
}

/* ==========================
   MOBILE
========================== */
@media(max-width:600px){

    .contact-hero{
        min-height: 100vh;
    }

    .contact-overlay{
        width: 100%;
        padding: 20px;
    }

    .contact-overlay h1{
        font-size: 38px;

        line-height: 1.2;

        margin-bottom: 15px;
    }

    .contact-overlay p{
        font-size: 14px;

        line-height: 1.7;

        margin-bottom: 30px;
    }

    .contact-social{
        width: 100%;
    }

    .contact-social a{

        font-size: 14px;

        padding: 13px 20px;
    }

    .contact-social a img{
        width: 16px;
        height: 16px;
    }
}

/* ===================================================================== */

/* ===================================
   RESPONSIVE TABLET
=================================== */
@media(max-width:992px){

    /* NAVBAR */
    .navbar{
        left: 20px;
        top: 15px;
    }

    .nav-links{
        gap: 20px;
        flex-wrap: wrap;
    }

    .nav-links li a{
        font-size: 15px;
    }

    /* HISTORY */
    .history-card{
        flex-direction: column;
        text-align: center;
    }

    .history-content{
        width: 100%;
    }

    .history-image{
        width: 100%;
        max-width: 500px;
    }

    /* STORY */
    .story-card{
        flex-direction: column;
        text-align: center;
    }

    .story-content{
        width: 100%;
    }

    .story-image{
        width: 100%;
        max-width: 450px;
        height: auto;
    }

    /* PRODUCT */
    .product-container{
        grid-template-columns: repeat(2,1fr);
    }

    /* DETAIL */
    .detail-product{
        flex-direction: column;
        gap: 40px;
    }

    .detail-slider{
        width: 100%;
        max-width: 500px;
        height: 550px;
    }

    .detail-content{
        width: 100%;
        text-align: center;
    }

    /* 360 */
    .viewer-container{
        width: 90%;
        height: auto;
        aspect-ratio: 1/1;
    }

    /* CONTACT */
    .contact-overlay h1{
        font-size: 50px;
    }

    .contact-overlay p{
        font-size: 16px;
    }
}


/* ===================================
   RESPONSIVE MOBILE
=================================== */
@media(max-width:600px){

    /* BODY */
    body{
        overflow-x: hidden;
    }

    /* NAVBAR */
    .navbar{
        width: 100%;
        left: 0;
        top: 10px;

        padding: 0 15px;
    }

    .nav-links{
        justify-content: center;
        gap: 14px;
        flex-wrap: wrap;
    }

    .nav-links li a{
        font-size: 12px;
    }

    /* HERO */
    .hero{
        height: 100vh;
    }

    .slide{
        object-fit: cover;
    }

    /* HISTORY */
    .history{
        width: 92%;
        padding-top: 110px;
    }

    .history-title h1{
        font-size: 34px;
    }

    .history-content h2{
        font-size: 28px;
    }

    .history-content p{
        font-size: 15px;
        line-height: 1.8;
    }

    .history-bottom{
        padding: 35px 25px;
    }

    .history-bottom h2{
        font-size: 28px;
    }

    /* STORY */
    .ourstory{
        width: 92%;
    }

    .ourstory-title h1{
        font-size: 34px;
    }

    .story-content h2{
        font-size: 28px;
    }

    .story-content p{
        font-size: 15px;
    }

    .story-image{
        border-radius: 20px;
    }

    /* PRODUCT */
    .product{
        width: 92%;
    }

    .product-title h1{
        font-size: 34px;
    }

    .product-title p{
        font-size: 15px;
    }

    .product-container{
        grid-template-columns: 1fr;
        gap: 25px;
    }

    .product-card img{
        height: 350px;
    }

    .product-content h2{
        font-size: 18px;
    }

    /* DETAIL */
    .detail-product{
        width: 92%;
        padding-top: 120px;
    }

    .detail-slider{
        height: 430px;
        border-radius: 22px;
    }

    .detail-content h1{
        font-size: 32px;
    }

    .detail-content h2{
        font-size: 28px;
    }

    .detail-content p{
        font-size: 15px;
    }

    .buy-btn{
        width: 100%;
    }

    /* BACK */
    .back-text{
        top: 90px;
        left: 20px;

        font-size: 13px;
    }

    /* SLIDER BUTTON */
    .slider-btn{
        width: 36px;
        height: 36px;

        font-size: 14px;
    }

    /* 360 */
    .view360{
        padding: 30px 0 80px;
    }

    .view360-title h2{
        font-size: 30px;
    }

    .view360-title p{
        font-size: 14px;
    }

    .viewer-container{
        width: 92%;
        border-radius: 20px;
    }

    /* CONTACT */
    .contact-hero{
        height: 100vh;
    }

    .contact-hero img{
        object-fit: cover;
    }

    .contact-overlay{
        width: 92%;
    }

    .contact-overlay h1{
        font-size: 38px;
        line-height: 1.1;
    }

    .contact-overlay p{
        font-size: 14px;
        line-height: 1.7;
    }

    /* BUTTON */
    .contact-btn{
        padding: 13px 28px;
        font-size: 14px;
    }

    /* SOCIAL */
    .contact-social{
        gap: 12px;
    }

    .contact-social a{
        padding: 12px 20px;
        font-size: 13px;
    }

    .contact-social a img{
        width: 15px;
        height: 15px;
    }

    /* FOOTER */
    .footer{
        padding: 50px 20px 30px;
    }

    .footer-content h2{
        font-size: 22px;
    }

    .footer-content p{
        font-size: 14px;
    }

    .footer-links{
        gap: 15px;
    }

    .footer-links a{
        font-size: 13px;
    }
}

/* ===================================
   POPUP ANIMATION
=================================== */

/* ANIMASI AWAL */
.hero,
.product-card,
.history-card,
.story-card,
.detail-slider,
.detail-content,
.viewer-container,
.contact-overlay,
.footer,
.history-bottom{
    opacity: 0;

    transform: translateY(40px) scale(0.97);

    animation: popupFade 1s ease forwards;
}

/* DELAY BIAR BERURUTAN */
.product-card:nth-child(1){ animation-delay: 0.1s; }
.product-card:nth-child(2){ animation-delay: 0.2s; }
.product-card:nth-child(3){ animation-delay: 0.3s; }
.product-card:nth-child(4){ animation-delay: 0.4s; }
.product-card:nth-child(5){ animation-delay: 0.5s; }

.history-card:nth-child(1){
    animation-delay: 0.2s;
}

.history-card:nth-child(2){
    animation-delay: 0.4s;
}

.story-card:nth-child(1){
    animation-delay: 0.2s;
}

.story-card:nth-child(2){
    animation-delay: 0.4s;
}

/* KEYFRAME */
@keyframes popupFade{

    from{
        opacity: 0;

        transform:
        translateY(40px)
        scale(0.96);

        filter: blur(8px);
    }

    to{
        opacity: 1;

        transform:
        translateY(0)
        scale(1);

        filter: blur(0);
    }
}

/* SMOOTH HOVER */
.product-card,
.history-image,
.story-image,
.viewer-container,
.contact-btn,
.contact-social a,
.buy-btn{
    transition:
    transform 0.35s ease,
    box-shadow 0.35s ease;
}

/* HOVER EFFECT */
.product-card:hover,
.history-image:hover,
.story-image:hover,
.viewer-container:hover{
    transform: translateY(-8px);

    box-shadow:
    0 20px 45px rgba(0,0,0,0.15);
}

/* ===================================
   SCROLL POPUP EFFECT
=================================== */

/* AWAL */
.reveal{
    opacity: 0;

    transform:
    translateY(70px)
    scale(0.96);

    filter: blur(8px);

    transition:
    opacity 1s ease,
    transform 1s ease,
    filter 1s ease;
}

/* SAAT MUNCUL */
.reveal.active{
    opacity: 1;

    transform:
    translateY(0)
    scale(1);

    filter: blur(0);
}