/* =========================
   1. ROOT & GLOBAL
   ========================= */

:root {
    --bg-dark: #050505;

    /* Palet Utama */
    --orange: #ff8c42;
    --pink:   #ff4f81;
    --yellow: #ffd447;
    --white:  #ffffff;

    /* Turunan */
    --text-main: #f5f5f5;
    --text-muted: #b8b8b8;
    --card-bg: #111111;
    --border-soft: #2a2a2a;

    --shadow-soft: 0 8px 25px rgba(0,0,0,0.6);
}

* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

body {
    background-color: var(--bg-dark);
    color: var(--text-main);
    font-family: 'Segoe UI', Tahoma, Geneva, Verdana, sans-serif;
}

/* Helper container */
.container {
    width: 100%;
    max-width: 1200px;
    margin: 0 auto;
    padding: 40px 5%;
}

/* Simple grid */
.grid {
    display: grid;
    grid-template-columns: repeat(auto-fill, minmax(280px, 1fr));
    gap: 25px;
}

/* =========================
   2. NAVBAR (DESKTOP)
   ========================= */

nav {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 14px 5%;
    background: rgba(5, 5, 5, 0.96);
    border-bottom: 2px solid var(--orange);
    position: sticky;
    top: 0;
    z-index: 1000;
}

/* Logo */
.logo h2 {
    font-size: 1.4rem;
    letter-spacing: .18rem;
    color: var(--white);
}
.logo h2 span {
    color: var(--pink);
}

/* Menu desktop */
nav ul {
    list-style: none;
    display: flex;
    gap: 20px;
}

nav ul li a {
    text-decoration: none;
    color: var(--white);
    font-size: 0.85rem;
    text-transform: uppercase;
    font-weight: 600;
    letter-spacing: .08rem;
    display: inline-flex;
    align-items: center;
    gap: 6px;
    padding: 8px 10px;
    border-radius: 20px;
    transition: 0.2s;
}

nav ul li a i {
    font-size: .9rem;
}

nav ul li a:hover {
    color: var(--orange);
    background: rgba(255,255,255,0.05);
    text-shadow: 0 0 8px rgba(255,140,66,0.7);
}

/* Hamburger icon (kita gak pakai lagi, tapi biarkan ada kalau mau dipakai) */
.menu-toggle {
    display: none;
    font-size: 24px;
    color: var(--white);
}

/* =========================
   3. HERO (HOME)
   ========================= */

.hero-fullscreen {
    position: relative;
    height: 100vh;
    width: 100%;
    overflow: hidden;
    color: var(--white);
    display: flex;
    align-items: center;
    justify-content: center;
    text-align: center;
}

.hero-fullscreen::before {
    content: "";
    position: absolute;
    inset: 0;
    background: linear-gradient(
        to bottom,
        rgba(0,0,0,0.20),  /* atas lebih terang */
        rgba(0,0,0,0.65)   /* bawah masih gelap biar teks kebaca */
    );
}

.hero-fullscreen img,
.hero-fullscreen video {
    position: absolute;
    width: 100%;
    height: 100%;
    object-fit: cover;
}

.hero-content {
    position: relative;
    z-index: 1;
    max-width: 800px;
    padding: 0 20px;
}

.hero-content h1 {
    font-size: clamp(2.5rem, 6vw, 4.5rem);
    letter-spacing: .20rem;
    text-transform: uppercase;
    margin-bottom: 18px;
}

.hero-content p {
    max-width: 600px;
    margin: 0 auto 30px;
    font-size: 1rem;
    line-height: 1.6;
    color: var(--text-main);
}

/* CTA button */
.btn-cta {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    gap: 10px;

    padding: 0.9rem 3.2rem;
    border-radius: 999px;

    /* Garis luar tipis */
    border: 2px solid rgba(255,255,255,0.3);

    /* Gradient oren → pink */
    background: linear-gradient(135deg, var(--orange), var(--pink));

    color: var(--white);
    font-weight: 700;
    font-size: 0.9rem;
    letter-spacing: .16rem;
    text-transform: uppercase;
    text-decoration: none;

    /* Efek glow */
    box-shadow:
        0 0 0 1px rgba(0,0,0,0.6),
        0 10px 25px rgba(0,0,0,0.9);

    cursor: pointer;
    transition:
        transform 0.18s ease-out,
        box-shadow 0.18s ease-out,
        filter 0.18s ease-out;
}

/* Icon panah kecil */
.btn-cta::after {
    content: "➜";
    font-size: 1rem;
}

/* Hover: sedikit membesar + glow naik */
.btn-cta:hover {
    filter: brightness(1.08);
    transform: translateY(-2px) scale(1.03);
    box-shadow:
        0 0 0 1px rgba(255,255,255,0.35),
        0 16px 40px rgba(0,0,0,1);
}



/* =========================
   4. SECTION TITLES
   ========================= */

.section-title {
    text-align: center;
    color: var(--white);
    letter-spacing: .12rem;
    font-size: 1.05rem;
    text-transform: uppercase;
    margin-bottom: 2.5rem;
}
.section-title span {
    color: var(--orange);
}

/* =========================
   5. CARDS (PROJECT & RENTAL)
   ========================= */

.card {
    background: var(--card-bg);
    border-radius: 12px;
    border: 1px solid var(--border-soft);
    overflow: hidden;
    box-shadow: 0 10px 25px rgba(0,0,0,0.55);
    transition: 0.25s;
    cursor: pointer;
}

.card:hover {
    border-color: var(--orange);
    transform: translateY(-4px);
    box-shadow: 0 16px 40px rgba(0,0,0,0.8);
}

.card img,
.card video {
    width: 100%;
    height: 200px;
    object-fit: cover;
    display: block;
}

.card-body {
    padding: 15px 16px 18px;
}

.card-body h3 {
    color: var(--white);
    font-size: 0.95rem;
    margin-bottom: 6px;
}

.card-body p {
    color: var(--text-muted);
    font-size: 0.85rem;
    line-height: 1.5;
}

.price {
    color: var(--yellow);
    font-weight: 700;
    margin: 8px 0;
}

/* WA button */
.btn-wa {
    display: inline-block;
    width: 100%;
    text-align: center;
    background: #25D366;
    color: #ffffff;
    padding: 10px 16px;
    border-radius: 6px;
    text-decoration: none;
    font-weight: 600;
    margin-top: 10px;
    border: none;
    cursor: pointer;
}

/* =========================
   6. ABOUT SECTION
   ========================= */

.about-text {
    max-width: 800px;
    margin: 0 auto;
    text-align: center;
    color: var(--text-main);
    font-size: 1rem;
    line-height: 1.7;
}

/* =========================
   7. FOOTER
   ========================= */

footer {
    text-align: center;
    padding: 25px 10px;
    font-size: 0.75rem;
    color: var(--text-muted);
}

/* =========================
   8. ORDER PAGE WA BAR
   ========================= */

.wa-bar-fix {
    position: fixed;
    left: 0;
    width: 100%;
    background: #111;
    padding: 15px 20px;
    border-top: 2px solid var(--orange);
    display: flex;
    justify-content: space-between;
    align-items: center;
    z-index: 999;
    box-shadow: 0 -5px 20px rgba(0,0,0,0.8);
}

/* =========================
   9. MOBILE BOTTOM NAV
   ========================= */

/* Icon default hidden di desktop */
.mobile-icon { display: none; }

@media (max-width: 768px) {

    /* Hilangkan hamburger dan pakai bottom nav saja */
    .menu-toggle { display: none !important; }

    /* NAV -> Bottom */
    nav {
        position: fixed;
        top: 0;
        left: 0;
        width: 100%;
    }

    /* Menu jadi bar bawah */
    nav ul {
        display: flex !important;
        flex-direction: row !important;
        position: fixed !important;
        bottom: 0;
        left: 0;
        width: 100%;
        height: 65px;
        background: #060606;
        border-top: 1px solid var(--border-soft);
        padding: 0;
        margin: 0;
        justify-content: space-around;
        align-items: center;
        list-style: none;
        z-index: 99999;
    }

    nav ul li {
        flex: 1;
        text-align: center;
    }

    nav ul li a {
        display: flex;
        flex-direction: column;
        align-items: center;
        justify-content: center;
        gap: 2px;
        font-size: 0.65rem;
        color: var(--text-muted);
        padding: 5px 0;
        background: transparent;
    }

    .mobile-icon {
        display: block;
        font-size: 1.4rem;
        color: var(--white);
    }

    nav ul li a:hover,
    nav ul li a:focus {
        color: var(--orange);
    }

    /* Space untuk bottom nav + header */
    body {
        padding-top: 70px;
        padding-bottom: 80px;
    }

    /* WA bar di ORDER dinaikkan sedikit supaya di atas bottom nav */
    .wa-bar-fix {
        bottom: 65px !important;
        padding: 10px 16px;
        border-top: none;
        background: rgba(0,0,0,0.95);
    }
}

/* =========================
   10. RESPONSIVE TWEAKS
   ========================= */

@media (max-width: 992px) {
    .container {
        padding: 30px 5%;
    }
}

@media (max-width: 576px) {
    .hero-content h1 {
        letter-spacing: .12rem;
    }
    .hero-content p {
        font-size: 0.9rem;
    }
}
