/* ============================================= */
/* == STYLE GLOBAL & UMUM ====================== */
/* ============================================= */
* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

body {
    font-family: 'Plus Jakarta Sans', sans-serif;
    background-color: #121212;
    color: #ffffff;
    line-height: 1.6;
    animation: revealContent 0.8s ease-in;
}

.body-no-scroll {
    overflow: hidden;
}

.container {
    max-width: 1280px;
    margin: 0 auto;
    padding: 0 20px;
}

a {
    color: #ffffff;
    text-decoration: none;
    transition: color 0.3s ease;
}

a:hover {
    color: #aaaaaa;
}

img {
    max-width: 100%;
    display: block;
}

main {
    padding-top: 115px;
}

h1, h2, h3, h4 {
    line-height: 1.3;
}

h2 {
    font-size: 2rem;
    margin-bottom: 50px;
    text-transform: capitalize;
}

section {
    padding: 80px 0;
}

/* ============================================= */
/* == HEADER & NAVIGASI ======================== */
/* ============================================= */
header {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    z-index: 1001;
    background-color: #000000;
    padding: 8px 0;
    border-bottom: 1px solid #222;
    transition: padding 0.3s ease-in-out;
}

header.scrolled {
    padding: 3px 0;
}

.nav-bar {
    display: flex;
    justify-content: space-between;
    align-items: center;
}

.nav-left, .nav-right {
    flex: 1;
}

.nav-center {
    flex: 2;
    display: flex;
    justify-content: center;
}

.nav-right {
    display: flex;
    justify-content: flex-end;
    align-items: center;
}

.logo img {
    width: 130px;
    transition: width 0.3s ease-in-out;
}

header.scrolled .logo img {
    width: 100px;
}

.nav-links {
    list-style: none;
    display: flex;
    gap: 50px;
}

.nav-links a {
    text-transform: uppercase;
    font-size: 0.9rem;
    font-weight: bold;
    color: white; 
    text-decoration: none;
    position: relative;
}

.nav-links a.active {
    color: #EE8822; 
}

.nav-links a.active::after {
    content: "";
    position: absolute;
    bottom: -5px;
    left: 0;
    width: 100%;
    height: 2px;
    background-color: white; 
}


.social-icons {
    display: flex;
    gap: 50px;
    align-items: center;
    margin-right: 15px;
}

.social-icons a img {
    width: 35px;
    height: 35px;
    filter: brightness(100);
    transition: opacity 0.3s ease;
}

.social-icons a:hover img {
    opacity: 0.7;
}

#hamburger-icon {
    display: none;
    flex-direction: column;
    justify-content: space-around;
    width: 30px;
    height: 25px;
    cursor: pointer;
}

#hamburger-icon span {
    display: block;
    width: 100%;
    height: 3px;
    background-color: #ffffff;
    border-radius: 3px;
}

#mobile-menu-popup {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background-color: rgba(18, 18, 18, 0.95);
    backdrop-filter: blur(10px);
    z-index: 2000;
    opacity: 0;
    visibility: hidden;
    transition: opacity 0.4s ease, visibility 0.4s ease;
    display: flex;
    justify-content: center;
    align-items: center;
}

#mobile-menu-popup.open {
    opacity: 1;
    visibility: visible;
}

.popup-nav-links {
    list-style: none;
    padding: 0;
    text-align: center;
}

.popup-nav-links li {
    margin: 30px 0;
}

.popup-nav-links a {
    color: #ffffff;
    font-size: 2rem;
    font-weight: 600;
}

#close-icon {
    position: absolute;
    top: 20px;
    right: 30px;
    font-size: 3rem;
    color: #ffffff;
    cursor: pointer;
    line-height: 1;
}

/* ============================================= */
/* == FOOTER =================================== */
/* ============================================= */
footer {
    background-color: #2F2F2F;
    padding-top: 65px;
    border-top: 1px solid #222;
}

.footer-container {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 40px;
}

.footer-column h3 {
    margin-bottom: 20px;
    text-transform: uppercase;
}

.footer-column p {
    color: #999;
}

.copyright-bar {
    margin-top: 60px;
    padding: 20px 0;
    background-color: #1B1B1B;
    text-align: center;
}

.copyright-bar p {
    color: #BCBABA;
    font-size: 1rem;
    letter-spacing: 1px;
    margin: 0;
}

/* ============================================= */
/* == ANIMASI & EFEK =========================== */
/* ============================================= */
.fade-in { opacity: 0; transform: translateY(20px); transition: opacity 1s ease-out, transform 1s ease-out; }
.fade-in.show { opacity: 1; transform: translateY(0); }

.animated-item { opacity: 0; transition: opacity 0.8s ease-out, transform 0.8s ease-out; }
.animated-item.slide-from-left { transform: translateX(-100px); }
.animated-item.slide-from-bottom { transform: translateY(50px); }
.animated-item.slide-from-right { transform: translateX(100px); }
.animated-item.in-view { opacity: 1; transform: translate(0, 0); }
.animated-item.in-view h4, .animated-item.in-view .deskripsi { opacity: 0; transform: translateY(20px); transition: opacity 0.6s ease-out 0.5s, transform 0.6s ease-out 0.5s; }
.animated-item.in-view h4 { opacity: 1; transform: translate(0, 0); }
.animated-item.in-view .deskripsi { opacity: 1; transform: translate(0, 0); transition-delay: 0.7s; }

@keyframes revealContent {
    from {
        opacity: 0;
    }
    to {
        opacity: 1;
    }
}


@keyframes fadeOutOverlay {
    to {
        opacity: 0;
        visibility: hidden; 
    }
}

.fade-in {
    opacity: 0;
    transform: translateY(20px);
    transition: opacity 1s ease-out, transform 1s ease-out;
}

.fade-in.show {
    opacity: 1;
    transform: translateY(0);
}

.slide-from-left,
.slide-from-right,
.slide-from-bottom {
  opacity: 0;
  transition: opacity 0.7s ease-out, transform 0.7s ease-out;
}

.slide-from-left {
  transform: translateX(-100px);
}

.slide-from-right {
  transform: translateX(100px);
}

.slide-from-bottom {
  transform: translateY(50px);
}

.slide-from-left.in-view,
.slide-from-right.in-view,
.slide-from-bottom.in-view {
  opacity: 1;
  transform: translate(0, 0);
}
.product-image-container {
    position: relative;
}

.product-image-container::after {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background-color: rgba(0, 0, 0, 0.3);
    opacity: 0;
    transition: opacity 0.4s ease;
}

.product-item:hover .product-image-container::after {
    opacity: 1;
}

.product-item:hover .shop-now-link {
    color: #ffffff;
    font-weight: bold;
}

.animated-item {
    opacity: 0;
    transform: scale(0.9);
    transition: opacity 0.5s ease-out, transform 0.5s ease-out;
}

.animated-item.in-view {
    opacity: 1;
    transform: scale(1);
}

.product-item:nth-child(2).animated-item { transition-delay: 0.1s; }
.product-item:nth-child(3).animated-item { transition-delay: 0.2s; }
.product-item:nth-child(4).animated-item { transition-delay: 0.15s; }
.product-item:nth-child(5).animated-item { transition-delay: 0.25s; }
.product-item:nth-child(6).animated-item { transition-delay: 0.35s; }

/* ============================================= */
/* == HALAMAN HOME ============================= */
/* ============================================= */
.hero {
    height: 80vh;
    background-image: linear-gradient(rgba(0, 0, 0, 0.5), rgba(0, 0, 0, 0.5)), url('Asset/Home/AWAL.webp');
    background-size: cover;
    background-position: center;
    display: flex;
    align-items: center;
    justify-content: flex-start;
}

.hero-content {
    max-width: 50%;
    padding-left: 8%;
}

.hero-content p {
    font-size: 1.2rem;
}

.hero-content h1 {
    font-size: 3.5rem;
    margin-top: 10px;
}

.collection, .categories {
    text-align: center;
}

.categories {
    background-color: #383838;
}

.collection-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 33px;
    text-align: left;
}

.collection-item img {
    width: 100%;
    object-fit: cover;
    margin-bottom: 20px;
}

.collection-item h3 {
    font-size: 1rem;
    color: white;
    margin-bottom: 10px;
}

.collection-item .deskripsi {
    font-size: 0.9rem;
    color: #bbbbbb;
}

.categories-grid {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 20px;
}

.category-item {
    position: relative;
    height: 350px;
    display: flex;
    padding: 20px;
    background-size: cover;
    background-position: center;
    cursor: pointer;
    overflow: hidden;
    align-items: flex-end;
    justify-content: flex-start;
    transition: transform 0.4s ease-out;
    cursor: default;
}


.category-item::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: linear-gradient(to top, rgba(0,0,0,0.8), transparent);
}

.category-overlay {
    position: relative;
    z-index: 2;
    text-align: left;
}

.category-overlay h3 {
    font-size: 1.2rem;
    text-transform: uppercase;
    font-weight: bold;
}

#cat1 { background-image: url('Asset/Home/KAT.1.webp'); }
#cat2 { background-image: url('Asset/Home/KAT.2.webp'); }
#cat3 { background-image: url('Asset/Home/KAT.3.webp'); }
#cat4 { background-image: url('Asset/Home/KAT.4.webp'); }

/* ============================================= */
/* == HALAMAN ABOUT ============================ */
/* ============================================= */
.about-hero {
    height: 80vh;
    background-image: linear-gradient(to right, rgba(0,0,0,0.6) 0%, transparent 100%), url('Asset/About/awal.webp');
    background-size: cover;
    background-position: center;
    display: flex;
    align-items: center;
}

.hero-text-container {
    max-width: 100%;
    padding-right: 70%;
    padding-top: 25%;
}

.about-hero h1 {
    font-size: 3.5rem;
}

.about-intro {
    background-color: #121212;
}

.intro-text-wrapper {
    max-width: 750px;
    margin: 0 auto;
}

.about-intro p {
    font-size: 1.1rem;
    color: #c0c0c0;
}

.about-intro p:first-of-type {
    margin-bottom: 25px; 
}

.about-mission {
    background-color: #121212;
}

.mission-grid {
    display: grid;
    grid-template-columns: 4fr 5fr;
    gap: 70px;
    align-items: center;
}

.mission-image img {
    width: 100%;
    border-radius: 4px;
}

.mission-text h4 {
    color: #a0a0a0;
    text-transform: uppercase;
    letter-spacing: 2px;
    font-size: 0.9rem;
    margin-bottom: 15px;
}

.mission-text h2 {
    font-size: 2.2rem;
    margin-bottom: 25px;
}

.mission-text p {
    color: #b0b0b0;
}
/* ============================================= */
/* == HALAMAN COLLECTION ======================= */
/* ============================================= */
.collection-hero {
    height: 80vh;
    background-image: linear-gradient(rgba(0, 0, 0, 0.5), rgba(0, 0, 0, 0.5)), url('Asset/Koleksi/awal.webp');
    background-size: cover;
    background-position: center;
    display: flex;
    align-items: center;
    justify-content: flex-start;
}

.collection-hero .hero-content {
    max-width: 100%;
    padding-right: 60%;
    padding-top: 25%;
}

.collection-hero .hero-content h1 {
    font-size: 3.5rem;
}

.contact-introoo {
    background-color: #111111;
    padding-top: 77px;
    padding-bottom: 77px;
}

.intro-wrapperrr {
    max-width: 800px;
    margin: 0 auto;
    text-align: left;
    color: #E0E0E0;
    font-size: 1.1rem;
}

.intro-wrapperrr p:not(:last-child) {
    margin-bottom: 2em;
}

.product-gallery-section {
    background-color: #383838;
}

.product-gallery-section .section-title {
    text-align: center;
    font-size: 2rem;
    margin-bottom: 50px;
    text-transform: capitalize;
}

.product-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 30px;
    text-align: left;
}

.product-image-container {
    background-color: #ffffff;
    padding: 20px;
    margin-bottom: 15px;
    position: relative;
}

.product-image-container img {
    width: 100%;
    object-fit: cover;
}

.shop-now-link {
    display: inline-block;
    color: #c0c0c0;
    text-decoration: underline;
    font-size: 0.9rem;
    transition: color 0.3s ease;
}

.shop-now-link:hover {
    color: #ffffff;
}

/* ============================================= */
/* == HALAMAN BLOG ============================= */
/* ============================================= */
.blog-hero {
    height: 95vh;
    background-image: linear-gradient(rgba(0, 0, 0, 0.5), rgba(0, 0, 0, 0.5)), url('Asset/Blog/awal.webp');
    background-size: cover;
    background-position: 100% center;
    display: flex;
    align-items: center;
    justify-content: flex-start;
}

.blog-hero .hero-content {
   max-width: 50%;
    padding-left: 8%;
    padding-top: 6%;
}

.blog-hero .hero-content h1 {
    font-size: 3.5rem;
    margin-top: 10px;
}

.contact-introo {
    background-color: #383838;
    display: flex;
    justify-content: center;
}

.intro-wrapperr {
    max-width: 850px;
    text-align: left;
}

.featured-looks-section {
    background-color: black;
}

.looks-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 40px;
    align-items: start;
    text-align: center;
}

.look-item img {
    width: 100%;
    margin-bottom: 50px;
}

.look-item p {
    font-size: 0.9rem;
    color: #b0b0b0;
    max-width: 380px;
    text-align: left;
}

.bikers-story-section {
    background-color: #383838;
}

.bikers-story-section h2 {
    text-align: center;
    font-size: 1.5rem;
    text-transform: uppercase;
    letter-spacing: 3px;
    margin-bottom: 50px;
    font-weight: 600;
}

.story-grid {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 25px;
    align-items: start;
    cursor: default;
}


.story-image-wrapper {
    position: relative;
    margin-bottom: 15px;
    height: 300px;
    border-radius: 4px;
    overflow: hidden;
}

.story-image-wrapper img {
    width: 100%;
    height: 100%;
    object-fit: cover;
}

.story-author {
    position: absolute;
    bottom: 130px;
    left: 20px;
    color: white;
    padding: 5px 10px;
    font-size: 1.3rem;
    border-radius: 3px;
}

.story-content {
    padding: 0 5px;
}

.story-content h3 {
    font-size: 1.1rem;
    margin-bottom: 10px;
    text-transform: uppercase;
    font-weight: 700;
}

.story-content p {
    font-size: 0.9rem;
    color: #a0a0a0;
}

/* ============================================= */
/* == HALAMAN CONTACT ========================== */
/* ============================================= */
.contact-hero {
    height: 80vh;
    background-image: linear-gradient(rgba(0, 0, 0, 0.5), rgba(0, 0, 0, 0.5)), url('Asset/kontak.webp');
    background-size: cover;
    background-position: center;
    display: flex;
    align-items: center;
    justify-content: flex-start;
}

.contact-hero .hero-content {
    max-width: 100%;
    padding-right: 60%;
    padding-top: 25%;
}

.contact-hero .hero-content h1 {
    font-size: 3.5rem;
    margin-top: 10px;
}

.contact-intro {
    background-color: #383838;
}

.intro-wrapper {
    max-width: 850px;
    margin: 0 auto;
    text-align: center;
}

.intro-wrapper p {
    font-size: 1.1rem;
}

/* ============================================= */
/* == CSS BARU UNTUK PETA & DAFTAR ALAMAT ======= */
/* ============================================= */

/* Untuk bagian peta besar */
.map-section {
    background-color: #121212;
    padding: 60px 0;
    text-align: center;
}

.map-section h2 {
    color: #ffffff;
    font-size: 2.5rem;
    margin-bottom: 10px;
}

.map-section p {
    color: #d3d3d3;
    margin-bottom: 30px;
    font-size: 1.1rem;
}

.map-section iframe {
    border-radius: 8px;
    border: none;
    max-width: 100%;
}

/* ================================================== */
/* == CSS GABUNGAN: DAFTAR VERTIKAL YANG BISA DI-KLIK  */
/* ================================================== */


.address-list-section {
    background-color: #121212;
    color: #ffffff;
    padding: 50px 0;
}

.address-list-section h3 {
    font-size: 2.5rem; 
    text-align: center;
    margin-bottom: 40px;
}

.address-list-section ul {
    list-style-type: none;
    padding: 0;
    max-width: 700px;
    margin: 0 auto;
}

.address-list-section li {
    margin-bottom: 15px;
    border-radius: 8px; 
    background-color: #4a4a4a; 
    transition: background-color 0.3s ease, transform 0.2s ease; 
}


.address-list-section li:hover {
    background-color: #5f5f5f;
    transform: translateY(-5px);
}


.address-list-section li a {
    display: block;
    padding: 25px; 
    text-decoration: none;
    color: #d3d3d3;
}


.address-list-section li a strong {
    color: #ffffff;
    display: block;
    font-size: 1.4rem; 
    margin-bottom: 8px;
}


.address-list-section li a span {
    font-size: 1.1rem;
    line-height: 1.5;
}

.map-section iframe {
    border-radius: 8px;
    border: none;
    max-width: 100%;
    filter: invert(100%) grayscale(80%) brightness(95%) contrast(100%);
}

/* ============================================= */
/* == MEDIA QUERIES (RESPONSIVE) =============== */
/* ============================================= */
@media (max-width: 992px) {
    .collection-grid,
    .categories-grid,
    .product-grid,
    .story-grid {
        grid-template-columns: repeat(2, 1fr);
    }

    .footer-container {
        grid-template-columns: 1fr;
        gap: 30px;
        text-align: center;
    }
}

@media (max-width: 768px) {
    main {
        padding-top: 80px;
    }

    section, .contact-introoo {
        padding-top: 60px;
        padding-bottom: 60px;
    }

    h1, .hero-content h1, .about-hero h1, .collection-hero h1, .blog-hero h1, .contact-hero h1 {
        font-size: 2.2rem;
    }
    h2, .mission-text h2 {
        font-size: 1.8rem;
    }
    h3 {
        font-size: 1.3rem;
    }
    p, .deskripsi, .story-content p, .about-intro p {
        font-size: 0.95rem;
    }

    header,
    header.scrolled {
        padding: 15px 0;
    }

    .logo img,
    header.scrolled .logo img {
        width: 100px;
    }

    .nav-center, .social-icons {
        display: none;
    }

    #hamburger-icon {
        display: flex;
    }

    .hero, .about-hero, .collection-hero, .blog-hero, .contact-hero {
        height: 60vh;
        justify-content: center;
        background-position: center;
    }

    .hero-content, .hero-text-container, .collection-hero .hero-content, .blog-hero .hero-content, .contact-hero .hero-content {
        max-width: 90%;
        padding: 0;
        text-align: center;
    }

    .collection-grid,
    .categories-grid,
    .footer-container,
    .product-grid,
    .story-grid,
    .address-grid,
    .mission-grid,
    .looks-grid {
        grid-template-columns: 1fr;
        gap: 40px;
    }

    .animated-item.slide-from-left,
    .animated-item.slide-from-right {
        transform: translateY(50px);
    }
}
