/* ---- HOME ---- */
body {
    margin: 0;
    font-family: 'Inter', sans-serif;
    background-color: #ffffff;
    color: #000000;
}

.header {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 15px 100px;
    background-color: #ffffff;
    position: relative;
    z-index: 10;
}

.halaman-shop .header::after {
    content: '';
    display: block;
    position: absolute;
    width: 89.5%;
    height: 2px;
    background-color: black;
    bottom: 0;
    left: 50%;
    transform: translateX(-50%);
}

.logo img {
    height: 50px;
}

.navbar a {
    text-decoration: none;
    color: #000;
    margin-left: 40px;
    font-size: 1.2rem;
    font-weight: 400;
    text-transform: lowercase;
}

.navbar a.active {
    color: #000000;
    font-weight: 700;
    position: relative;
}

.navbar a.active::after {
    content: '';
    display: block;
    position: absolute;
    height: 3px;
    width: 80%;
    background-color: #000000;
    bottom: -8px;
    left: 50%;
    transform: translateX(-50%);
}

.hero {
    height: 80vh;
    background-image: url('asset/HOME/HOME-AWAL.webp');
    background-size: cover;
    background-position: center 28%;
    display: flex;
    font-family: 'Space Grotesk', sans-serif;
    justify-content: center;
    align-items: center;
    text-align: left;
}

.hero-text {
    margin-left: 48%;
    margin-bottom: 13%;
    transition: transform 0.1s ease-out;
    transform-style: preserve-3d;
}

.hero-text h1 {
    color: #ffffff;
    font-size: 4rem;
    font-weight: 700;
    line-height: 1.2;
    text-shadow: 2px 2px 8px rgba(0, 0, 0, 0.7);
    margin: 0;
}

.tagline {
    background-color: #f0f0f0;
    text-align: center;
    padding: 25px 50px;
}

.tagline h1 {
    font-size: 1.5rem;
    font-weight: 400;
    font-family: 'Inter', sans-serif;
    color: black;
    margin: 0;
    letter-spacing: 3px;
    animation-name: slideInFromLeft;
    animation-duration: 1.5s;
    animation-timing-function: ease-out;
    animation-fill-mode: forwards;
    animation-delay: 0.5s;
    opacity: 0;
}

.footer {
    background-color: #000000;
    color: #FFFFFF;
    padding: 60px 5%;
    min-height: 15vh;
    display: flex;
    justify-content: space-between;
    align-items: flex-start;
    flex-wrap: wrap;
    gap: 20px;
}

.footer-left h2 {
    font-size: 30px;
    font-weight: 700;
    margin: 0 0 20px 0;
    letter-spacing: 1px;
}

.footer-left p {
    font-size: 22px;
    line-height: 1.6;
    margin: 0;
}

.footer-right {
    display: flex;
    flex-direction: column;
    align-items: flex-end;
    gap: 65px; 
}

.social-icons {
    display: flex;
    align-items: center;
    gap: 70px; 
    margin-right: 20px;
    margin-top: 1;
}


.social-icons img {
    width: 38px; 
    height: 38px; 
    transition: transform 0.3s ease; 
}

.social-icons a:hover img {
    transform: scale(1.15); 
}

.footer-bottom-right {
    display: flex;
    align-items: center;
    gap: 105px;
    position: relative;
    top: 30px; 
}

.footer-bottom-right span {
    font-size: 22px;
}

@keyframes slideInFromLeft {
    from {
        transform: translateX(-100%);
        opacity: 0;
    }
    to {
        transform: translateX(0);
        opacity: 1;
    }
}

/* ---- ABOUT ---- */
.product-link {
    text-decoration: none;
    color: inherit;
}

.about-hero {
    height: 90vh;
    background-image: url('asset/about/HOME-ABOUT.webp');
    background-size: cover;
    background-position: center 90%;
    display: flex;
    justify-content: center;
    align-items: center;
    text-align: center;
    color: #ffffff;
}

.about-hero-content h1 {
    font-family: 'Space Grotesk', sans-serif;
    font-size: 6.5rem;
    font-weight: 700;
    text-shadow: 3px 10px 10px rgba(0, 0, 0, 0.6);
    margin: 0 0 10px 0;
}

.about-hero-content p {
    font-size: 1.63rem;
    text-shadow: 1px 1px 4px rgba(0, 0, 0, 0.8);
    margin: 0;
}

.about-content {
    padding: 80px 0 0;
    margin-top: 60px;
    background-color: #ffffff;
}

.content-wrapper {
    max-width: 1400px;
    margin: 80px auto;
    padding: 0 5%;
    display: flex;
    align-items: center;
    gap: 150px;
}

.text-column {
    display: flex;
    flex-direction: column;
    justify-content: center;
    flex: 1 1 100%;
    font-size: 1.4rem;
    line-height: 1.2;
    text-transform: uppercase;
    margin: 0 0 20px 0;
    text-align: justify;
    opacity: 0;
    filter: blur(5px);
    transform: translateY(20px);
    transition: all 0.8s ease-out;
}

.image-column {
    flex: 1 1 110%;
    opacity: 0;
    filter: blur(5px);
    transform: translateY(20px);
    transition: all 0.8s ease-out;
}

.image-column img {
    width: 104%;
    height: 100%;
    object-fit: cover;
    display: block;
}

.text-column.visible,
.image-column.visible {
    opacity: 1;
    filter: blur(0);
    transform: translateY(0);
}

.image-column.visible {
    transition-delay: 200ms;
}


/* ---- SHOP ---- */
.shop-section {
    padding: 80px 0;
}

.shop-container {
    max-width: 1700px;
    margin: 0 auto;
    padding: 0 20px;
}

.product-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: 40px;
}

.product-image-wrapper {
    height: 1000px;
    overflow: hidden;
    margin-bottom: 20px;
}

.product-image-wrapper img {
    width: 100%;
    height: 100%;
    display: block;
    object-fit: cover;
    transform: scale(2.7);
    transition: transform 0.8s cubic-bezier(0.25, 1, 0.5, 1);
}

.focus-bawah img {
    transform: scale(2.5) translate(3%, 4%);
}

.product-info {
    display: flex;
    justify-content: space-between;
    align-items: center;
    gap: 15px;
}

.product-name {
    font-size: 1.2rem;
    font-weight: 300;
    white-space: nowrap;
}

.product-price {
    margin: 0;
    font-size: 0.9rem;
}

.product-link:hover .product-image-wrapper img {
    transform: scale(2.55);
}

.product-link:hover .focus-bawah img {
    transform: scale(2.4) translate(3%, 2%);
}

/* ---- DETAIL PRODUK ---- */
.product-detail-section {
    padding: 80px 0;
}

.detail-container {
    max-width: 1500px;
    margin: 0 6%;
    padding: 0 5%;
    display: flex;
    gap: 50px;
    align-items: flex-start;
}

.product-gallery {
    flex: 1 1 55%;
    position: relative;
    overflow: hidden;
}

.product-gallery img {
    width: 100%;
    height: auto;
    transform: scale(1.2) translate(3%, 5%);
}

.product-specs {
    flex: 1 1 50%;
    padding: 170px 0px 0px 170px;
}

.product-specs h1 {
    font-size: 1.8rem;
    margin-top: 0;
    margin-bottom: 10px;
    line-height: 1.3;
    text-transform: uppercase;
}

.product-specs .price {
    font-size: 1.3rem;
    font-weight: 400;
    margin-bottom: 100px;
}

.product-specs .details-group {
    margin-bottom: 150px;
}

.product-specs h3 {
    margin-bottom: 20px;
    font-size: 1.2rem;
    font-weight: 500;
}

.product-specs p,
.product-specs li {
    font-size: 1.2rem;
    line-height: 1.2;
    color: black;
    margin-top: 0;
}

.product-specs ul {
    list-style-type: none;
    padding-left: 0;
    margin-bottom: 0;
}

.slider-images img {
    width: 100%;
}

.slider-image {
    display: none;
}

.slider-image.active {
    display: block;
    animation: fadeIn 0.5s;
}

@keyframes fadeIn {
    from { opacity: 0.4; }
    to { opacity: 1; }
}

.slider-btn {
    position: absolute;
    top: 50%;
    transform: translateY(-50%) scale(3, 5);
    z-index: 10;
    cursor: pointer;
    border: none;
    padding: 10px;
    background: none;
    color: #ffffff;
    font-size: 25px;
    text-shadow: 1px 1px 5px rgba(0, 0, 0, 0.5);
}

.slider-btn:hover {
    background-color: transparent;
}

.prev-btn {
    left: 30px;
}

.next-btn {
    right: 30px;
}
/* ---- ATURAN RESPONSIVE UNTUK TABLET & HP ---- */
@media (max-width: 992px) {

    .detail-container {
        flex-direction: column;
        margin: 0;
        padding: 0 20px; 
    }

    .product-specs {
        padding: 40px 0 0 0;
    }
    
    .product-gallery img {
        transform: none;
    }

    .product-specs .price {
        margin-bottom: 40px;
    }

    .product-specs .details-group {
        margin-bottom: 40px;
    }
}

/* ---- CONTACT ---- */
.contact-section {
    padding: 150px 0;
}

.contact-container {
    max-width: 800px;
    padding: 0 5%;
}

.contact-container h1 {
    font-size: 2rem;
    text-transform: uppercase;
    margin-top: 0;
    margin-bottom: 80px;
}

.contact-intro {
    font-size: 1.3rem;
    line-height: 1.2;
    margin-bottom: 80px;
    text-align: justify;
}

.contact-details p {
    font-size: 1rem;
    line-height: 1.1;
}

.contact-details strong {
    font-weight: 700;
}


/* ---- GET READY WITH MIRACLE ---- */
.get-ready-section {
    margin: 60px 0;
}

.get-ready-container {
    max-width: 1700px;
    margin: 0 auto;
    padding: 40px 20px;
    display: flex;
    align-items: center;
    gap: 60px;
}

.media-column {
    flex: 0.8;
    height: 850px;
    overflow: hidden;
    position: relative;
    cursor: pointer;
    left: 81px; 
}

.media-column video {
    width: 100%;
    height: 100%;
    display: block;
    object-fit: cover;
    transform: scale(1.004);
    transform-origin: center center;
}

.play-button-overlay {
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    width: 0;
    height: 0;
    border-top: 30px solid transparent;
    border-bottom: 30px solid transparent;
    border-left: 50px solid white;
    transition: opacity 0.3s ease;
    pointer-events: none;
}

.outfit-details-column {
    flex: 1;
    padding-left: 150px;
}

.outfit-details-column h1 {
    font-size: 2.5rem;
    margin: 0 0 20px 0;
    color: #000;
}

.outfit-details-column h2 {
    font-size: 1.125rem;
    font-weight: 400;
    color: #000000;
    margin: 0 0 150px 1px;
}

.outfit-details-column .item-list {
    list-style-type: none;
    padding: 0;
    margin: 0;
}

.outfit-details-column .item-list li {
    font-size: 1.1rem;
    line-height: 0.5;
    margin-bottom: 12px;
    font-weight: 300;
    color: black;
}

.play-button-overlay.hidden {
    opacity: 0;
    pointer-events: none;
}

/* ===================================== */
/* === STYLE UNTUK MOBILE NAVIGATION === */
/* ===================================== */

/* Tombol Menu (Burger Icon) */
.menu-toggle {
    display: none; 
    flex-direction: column;
    justify-content: space-around;
    width: 30px;
    height: 25px;
    background: transparent;
    border: none;
    cursor: pointer;
    padding: 0;
    z-index: 20; 
}

.menu-toggle .bar {
    display: block;
    width: 100%;
    height: 3px;
    background-color: #000;
    border-radius: 3px;
    transition: all 0.3s ease-in-out;
}


/* === Tampilan Mobile (Menggunakan Media Query) === */
@media (max-width: 768px) {
    .header {
        padding: 15px 5%; 
    }

    .menu-toggle {
        display: flex; 
    }

 

.navbar {
    
    display: flex; 
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100vh;
    background-color: #ffffff;
    flex-direction: column;
    justify-content: center;
    align-items: center;
    z-index: 15;
    opacity: 0; 
    pointer-events: none; 
    transform: translateX(100%); 
    transition: opacity 0.35s ease-in-out, transform 0.35s ease-in-out; 
}

.navbar.active {

    opacity: 1; 
    pointer-events: auto; 
    transform: translateX(0); 
}

    .navbar a {
        margin: 20px 0; 
        font-size: 2rem; 
        text-transform: uppercase;
    }
    
    /* Animasi untuk tombol burger menjadi 'X' */
    .menu-toggle.is-active .bar:nth-child(1) {
        transform: rotate(45deg) translate(5px, 6px);
    }
    .menu-toggle.is-active .bar:nth-child(2) {
        opacity: 0;
    }
    .menu-toggle.is-active .bar:nth-child(3) {
        transform: rotate(-45deg) translate(5px, -6px);
    }
}