/* Responsive Mobile */
/* Dekstop or Laptop */
@media  (max-width: 1024px) {
     .hideOnMObile {
        display: none;
    }
    .footer-container {
        grid-template-columns: 1fr;
    }
    .sidebar {
        right: -100%;
    }
}
   
@media (max-width: 786px) {
    .hideOnMObile {
        display: none;
    }
}


/* Tablets */
@media  (max-width: 440px){
   .hideOnMObile {
        display: none;
   }
   .footer-container {
        gap: 40px;
        flex-direction: column;
        align-items: flex-start;
        grid-template-columns: 1fr;
    }
    
    .bottom-flex {
        flex-direction: column;
        gap: 20px;
        text-align: center;
    }
    .hero {
        height: 90vh;
    }
    .btn-outline-cta {
        flex-direction: column;
    }
}


:root {
    --blue: #0066ff;
    --dark: #050505;
    --gray: #111;
    --text: #fff;
    --biru: #
}

* { 
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

html {
    scroll-behavior: smooth;
}

body {
    font-family: 'Plus Jakarta Sans', sans-serif;
    background-color: var(--dark);
    color: var(--text);
    line-height: 1.6;
}
.container { max-width: 1200px; 
    margin: 0 auto; 
    padding: 0 20px; 
}

/* Navbar */
.navbar {
    position: fixed; 
    top: 0; 
    width: 100%;
    z-index: 1000;
    padding: 20px 0;
    background: rgba(5, 5, 5, 0.8); 
    backdrop-filter: blur(10px);
}
.nav-container {
    display: flex; 
    justify-content: space-between; 
    align-items: center;
    max-width: 1200px; 
    margin: 0 auto; 
    padding: 0 20px;
}
.logo {
    font-weight: 800;
    letter-spacing: 4px; 
    font-size: 1.5rem; 
}
.logo span {
    color: var(--blue)
}
.nav-links {
    display: flex;
    list-style: none;
    gap: 30px; 
}
.nav-links a {
    text-decoration: none;
    color: #ccc;
    font-size: 0.8rem; 
    text-transform: uppercase; 
    transition: 0.3s; 
}
.nav-links a:hover {
    color: var(--blue); 
}
.btn-login{
    background: var(--blue); 
    color: #fff;
    padding: 15px 35px; 
    text-decoration: none;
    font-weight: 700;
    border-radius: 5px;
    display: inline-block;
}

/* Sidebar Nav */
.sidebar {
    position: fixed;
    top: 0;
    right: 0;
    height: 100vh;
    width: 250px;
    z-index: 9999;
    background: rgba(5, 5, 5, 0.8);
    backdrop-filter: blur(10px);
    display: none;
    flex-direction: column;
    align-items: flex-start;
    justify-content: flex-start;
    transition: all 2s ease;
}

.sidebar ul {
    width: 100%;
    list-style: none;
    flex-direction: column;
    margin-top: 100%;
    margin-left: 50px;
}

.sidebar a {
    width: 100%;
    text-decoration: none;
    gap: 10px;
    color: var(--text);
}

.sidebar li {
    margin-bottom: 50px;
}

.sidebar button {
    margin-left: 50px;
}


/******************************
    Tampilan Utama - Hero Area
*******************************/
.hero {
    height: 100vh;
    display: flex;
    align-items: center;
    position: relative; 
    min-height: 80vh;
    background-position: top;
}
.hero-overlay::before {
    content: '';
    width: 100%;
    height: 100%;
    position: absolute;
    background-image: linear-gradient(to top, black, transparent);
}
.hero-overlay img {
    background-position: center;
    background-repeat: no-repeat;
    background-size: cover;
    width: 100%;
    height: 100%;
    object-fit: cover;
}
.hero-overlay[data-show="show"] {
    opacity: 1;
}
.hero-overlay[data-show="hidden"] {
    z-index: -1;
    opacity: 0;
}

.hero-overlay  {
    position: absolute; 
    top: 0; 
    left: 0px; 
    width: 100%; 
    height: 100%;
    background: linear-gradient(to right, rgba(0,0,0,0.9), transparent);
    transition: opacity 1000ms;
}
.hero-content {
    position: relative; 
    z-index: 2; 
    padding-left: 10%; 
}
.hero-content p {
    margin-bottom: 16px;
}

.hero-content h1 {
    font-size: clamp(2rem, 5vw, 4rem); 
    font-weight: 800; 
    line-height: 1; 
    margin: 20px 0; 
}
.hero-content h4 {
    text-shadow: 2px 3px 10px var(--gray);
}
.hero-content p {
    text-shadow: 2px 3px 9px var(--gray);
}
.outline {
    -webkit-text-stroke: 1px #fff;
    color: transparent; 
    }
.btn-primary { 
    background: var(--blue); color: #fff; 
    padding: 15px 35px; 
    text-decoration: none; 
    font-weight: 700;
    border-radius: 5px;
    display: inline-block;
}

/* Container Tombol */
.hero-btns {
    display: flex;
    gap: 20px;
    align-items: center;
    margin-top: 40px;
    max-height: 80vh;
}

/* Tombol Utama (Solid Blue Glow) */
.btn-premium-cta {
    position: relative;
    display: flex;
    align-items: center;
    gap: 15px;
    background: var(--blue);
    color: #fff;
    padding: 18px 40px;
    text-decoration: none;
    font-size: 0.8rem;
    font-weight: 700;
    letter-spacing: 3px;
    border-radius: 2px; /* Sedikit lengkung saja agar terlihat tegas */
    transition: all 0.4s cubic-bezier(0.25, 1, 0.5, 1);
    box-shadow: 0 10px 20px rgba(0, 102, 255, 0.2);
}
.btn-premium-cta svg {
    width: 18px;
    transition: transform 0.4s ease;
}
.btn-premium-cta:hover {
    transform: translateY(-5px);
    background: #0052cc;
    box-shadow: 0 15px 30px rgba(0, 102, 255, 0.4);
}
.btn-premium-cta:hover svg {
    transform: translateX(8px);
}

/* Tombol Kedua (Outline Minimalis) */
.btn-outline-cta {
    padding: 18px 40px;
    border: 1px solid rgba(255, 255, 255, 0.3);
    color: #fff;
    text-decoration: none;
    font-size: 0.8rem;
    font-weight: 500;
    letter-spacing: 2px;
    border-radius: 2px;
    transition: all 0.4s ease;
    backdrop-filter: blur(5px);
    
}
.btn-outline-cta:hover {
    background: #fff;
    color: #000;
    border-color: #fff;
}


/* bentar 
.popup {
    display: none;
    position: fixed;
    z-index: 999;
    left: 0;
    top: 0;
    width: 100%;
    height: 100%;
    background-color: rgba(0,0,0,0.7);
}

.popup-modal {
    position: relative;
    margin: 5%;
    padding: 0;
    width: 50%;
    max-width: 500px;
    animation: fadeIn 0.5s;
}

.popup-modal img {
    width: 1098px;
    display: block;
    margin-left: 85%;
}

.close-btn {
    position: absolute;
    top:-10px;
    right: -10px;
    background: #111;
    color: white;
    font-size: 28px;
    font-weight: bold;
    width: 35px;
    height: 35px;
    line-height: 35px;
    text-align: center;
    border-radius: 50%;
    cursor: pointer;
}

@keyframes fadeIn {
    from {
        opacity: 0; 
        transform: translateY(-20px);}
    to {
        opacity: 1;
        transform: translateY(0);
    }
}




/******************
    Catalog Area
*******************/
.catalog {
    padding: 100px 0; 
    background: var(--dark);
}

.section-title {text-align: center; 
    font-size: 2.5rem;
     margin-bottom: 50px;
      letter-spacing: 5px;
}

.product-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: 30px;
}

.card {
    background: var(--gray);
    border-radius: 15px;
    overflow: hidden;
    border: 1px solid #222; 
}

.card-img img {
     width: 100%; 
    height: 250px;
    object-fit: cover;
    transition: all 0.3s ease;
}

.card-img img:hover {
    transform: scale(1.05);
}

.card-body {
    padding: 25px;
}
.price {
    display: block;
    color: var(--blue);
    font-weight: 800;
    margin: 15px 0;
}
.btn-buy {
    width: 100%;
    padding: 12px;
    background: transparent; 
    border: 1px solid var(--blue); 
    color: #fff;
    cursor: pointer;
    transition: 0.3s;
}
.btn-buy:hover {
    background: var(--blue);
}

/* Order Section */
.order {
    padding: 100px 0;
     background: #080808;

}
.order-flex {display: flex;
    flex-wrap: wrap; 
    gap: 50px;
     align-items: center;
}
.order-info {
    flex: 1;
}
.order-info h2 {
    font-size: 4rem;
    line-height: 1; 
}
.order-form {
    flex: 1; 
    background: var(--gray); 
    padding: 40px; 
    border-radius: 20px; 
}
.order-form input, .order-form select {
    width: 100%; 
    padding: 15px; 
    margin-bottom: 20px;
    background: #1a1a1a;
    border: none;
    color: #fff;
}
.btn-submit {
    width: 100%;
    padding: 15px;
    background: var(--blue);
    border: none;
    color: #fff; 
    font-weight: 700;
    cursor: pointer; 
}

/*****************
    FOOTER STYLES 
******************/
.footer {
    background-color: #030303;
    color: #fff;
    padding: 100px 0 30px;
    border-top: 1px solid #1a1a1a;
}

.footer-container {
    display: grid;
    grid-template-columns: 1.5fr 1fr 1fr 1.2fr;
    gap: 60px;
    margin-bottom: 80px;
    justify-content: space-between;
    flex-wrap: wrap;
}



.footer-col h4 {
    font-size: 0.75rem;
    letter-spacing: 4px;
    text-transform: uppercase;
    margin-bottom: 30px;
    color: var(--blue);
    font-weight: 800;
}

.brand-tagline {
    color: #777;
    font-size: 0.9rem;
    margin: 20px 0;
    max-width: 300px;
}

.address-box p {
    color: #999;
    font-size: 0.85rem;
    line-height: 1.8;
}

/* Links & Lists */
.footer-links, .contact-list {
    list-style: none;
}

.footer-links li, .contact-list li {
    margin-bottom: 15px;
}

.footer-links a, .contact-list a {
    text-decoration: none;
    color: #777;
    font-size: 0.85rem;
    transition: 0.3s ease;
}

.footer-links a:hover, .contact-list a:hover {
    color: var(--blue);
    padding-left: 5px;
}

.contact-list .icon {
    margin-right: 10px;
    font-size: 0.9rem;
}

/* Social Icons */
.social-icons {
    display: flex;
    gap: 15px;
    margin-bottom: 30px;
}

.social-link {
    width: 40px;
    height: 40px;
    border: 1px solid #333;
    display: flex;
    align-items: center;
    justify-content: center;
    border-radius: 50%;
    color: #fff;
    text-decoration: none;
    font-size: 0.7rem;
    font-weight: bold;
    transition: 0.3s;
}

.social-link:hover {
    background: var(--blue);
    border-color: var(--blue);
    transform: translateY(-5px);
}

/* 
.newsletter-text {
    font-size: 0.8rem;
    color: #555;
    margin-bottom: 15px;
}

.newsletter-input {
    display: flex;
    border-bottom: 1px solid #333;
    padding-bottom: 10px;
}

.newsletter-input input {
    background: transparent;
    border: none;
    color: #fff;
    width: 100%;
    font-size: 0.8rem;
}

.newsletter-input input:focus {
     outline: none; 
}

.newsletter-input button  {
    background: transparent;
    border: none;
    color: var(--blue);
    cursor: pointer;
    font-weight: bold;
    text-decoration: none;
}

.newsletter-input button a {
    text-decoration: none;
}
*/


/* copyright */
.footer-bottom {
    border-top: 1px solid #111;
    padding-top: 40px;
}

.bottom-flex {
    display: flex;
    justify-content: space-between;
    align-items: center;
    font-size: 0.75rem;
    color: #444;
}

.legal-links a {
    color: #444;
    text-decoration: none;
    margin-left: 20px;
    transition: 0.3s;
}

.legal-links a:hover {
     color: #fff; 
}

