/* --- ROOT VARIABLES & RESET --- */
:root {
    --bg-dark: #0a0a0a;
    --bg-card: #141414;
    --accent-orange: #ff5e00;
    --accent-orange-glow: rgba(255, 94, 0, 0.4);
    --text-white: #ffffff;
    --text-gray: #a0a0a0;
    --font-main: 'Plus Jakarta Sans', sans-serif;
}

* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
    scroll-behavior: smooth;
}

body {
    background-color: var(--bg-dark);
    color: var(--text-white);
    font-family: var(--font-main);
    overflow-x: hidden;
}

/* --- SCROLL PROGRESS LINE --- */
.scroll-progress {
    position: fixed;
    top: 0; left: 0;
    width: 100%; height: 4px;
    background: var(--accent-orange);
    z-index: 1000;
    transform: scaleX(0);
    transform-origin: left;
}

/* --- NAVIGATION --- */
header {
    position: fixed;
    top: 0; width: 100%; padding: 25px 5%;
    display: flex; justify-content: space-between; align-items: center;
    z-index: 999;
    background: rgba(10, 10, 10, 0.7);
    backdrop-filter: blur(15px);
    border-bottom: 1px solid rgba(255, 255, 255, 0.05);
}

.logo { font-size: 1.5rem; font-weight: 800; letter-spacing: 2px; }
.logo span { color: var(--accent-orange); }
nav a { color: var(--text-white); text-decoration: none; margin-left: 30px; font-size: 0.9rem; font-weight: 600; transition: 0.3s;}
nav a:hover { color: var(--accent-orange); }
.btn-nav { background: var(--accent-orange); padding: 10px 20px; border-radius: 50px; }

/* --- TYPOGRAPHY --- */
.text-gradient {
    background: linear-gradient(45deg, #fff, var(--accent-orange));
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
}
.section-title { padding: 0 5% 40px; }
.section-title span { font-size: 0.8rem; color: var(--accent-orange); letter-spacing: 3px; font-weight: 800; }
.section-title h2 { font-size: 2.5rem; font-weight: 800; margin-top: 10px; }

/* --- HERO SECTION --- */
.hero {
    height: 100vh;
    display: flex;
    align-items: center;
    padding: 0 5%;
    position: relative;
    overflow: hidden;
}

.video-bg-container {
    position: absolute;
    top: 0; left: 0; width: 100%; height: 100%;
    z-index: -1;
    overflow: hidden;
}
.video-bg {
    width: 100%; height: 100%; object-fit: cover;
    transform: scale(1);
    will-change: transform; /* Paksa akselerasi GPU hardware */
}
.video-overlay {
    position: absolute;
    top: 0; left: 0; width: 100%; height: 100%;
    background: linear-gradient(to bottom, rgba(10,10,10,0.3), var(--bg-dark));
    z-index: 1;
}

.hero-content {
    max-width: 800px;
    z-index: 2;
    opacity: 0; 
    transform: translateY(40px);
}

/* FOTO PROFIL STYLE */
.profile-container {
    margin-bottom: 25px;
    display: inline-block;
}
.profile-img {
    width: 110px; height: 110px; border-radius: 50%; object-fit: cover;
    border: 3px solid var(--accent-orange);
    box-shadow: 0 0 20px var(--accent-orange-glow);
}

.hero h1 { font-size: 4rem; line-height: 1.1; margin: 20px 0; font-weight: 800; }
.hero-desc { color: var(--text-gray); font-size: 1.2rem; margin-bottom: 40px; }
.btn-primary {
    background: transparent; color: var(--text-white); border: 2px solid var(--text-white);
    padding: 15px 35px; text-decoration: none; font-weight: 600; border-radius: 50px; transition: 0.4s;
    display: inline-block;
}
.btn-primary:hover { background: var(--text-white); color: var(--bg-dark); }

/* --- SHOWCASE (NETFLIX STYLE) --- */
.showcase { padding: 100px 0; }
.netflix-container {
    display: flex; overflow-x: auto; padding: 20px 5%; gap: 30px;
    scrollbar-width: none;
}
.netflix-container::-webkit-scrollbar { display: none; }

.netflix-card {
    min-width: 450px; background: var(--bg-card); border-radius: 12px;
    overflow: hidden; border: 1px solid rgba(255,255,255,0.05);
    transition: transform 0.4s ease, border-color 0.4s ease;
}
.video-wrapper { position: relative; width: 100%; padding-top: 56.25%; }
.video-wrapper iframe { position: absolute; top: 0; left: 0; width: 100%; height: 100%; border: 0; }
.card-info { padding: 25px; }
.card-info .category { color: var(--accent-orange); font-size: 0.8rem; font-weight: 800; }
.card-info h3 { font-size: 1.3rem; margin-top: 5px; }
.netflix-card:hover { border-color: var(--accent-orange); transform: translateY(-5px); }

/* --- CONCEPT SECTION (3D PARALLAX EFFECT) --- */
.concept-section { padding: 120px 5%; background: #0f0f0f; overflow: hidden;}
.concept-layout { display: grid; grid-template-columns: 1fr 1fr; gap: 80px; align-items: center; }
.philosophy { font-size: 1.4rem; font-style: italic; color: var(--text-gray); border-left: 3px solid var(--accent-orange); padding-left: 20px; margin-bottom: 30px;}
.brief-box { background: rgba(255,255,255,0.02); padding: 30px; border-radius: 8px; border: 1px solid rgba(255,255,255,0.05); }

.moodboard-grid { display: grid; grid-template-columns: 1fr 1fr; gap: 20px; }
.mood-item { background-size: cover; background-position: center; border-radius: 12px; min-height: 200px; will-change: transform; }
.img-1 { background-image: url('https://images.unsplash.com/photo-1550684848-fac1c5b4e853?auto=format&fit=crop&w=400&q=80'); }
.img-2 { background-image: url('https://images.unsplash.com/photo-1618005182384-a83a8bd57fbe?auto=format&fit=crop&w=400&q=80'); height: 260px;}
.color-palette { background: var(--bg-card); display: flex; justify-content: center; align-items: center; gap: 15px;}
.dot { width: 30px; height: 30px; border-radius: 50%; }
.color-1 { background: #0a0a0a; border: 1px solid white;}
.color-2 { background: var(--accent-orange); }
.color-3 { background: #ffffff; }
.typography-box { background: #fff; color: #000; display: flex; justify-content: center; align-items: center; font-size: 4rem; font-weight: 800; }

/* --- MASONRY PLAYGROUND --- */
.playground { padding: 100px 5%; }
.masonry-grid { display: grid; grid-template-columns: repeat(auto-fill, minmax(280px, 1fr)); grid-auto-rows: 240px; gap: 20px; }
.masonry-item { background-size: cover; background-position: center; border-radius: 12px; will-change: transform, opacity; }
.item-tall { grid-row: span 2; }
.item-wide { grid-column: span 2; }

/* --- TOOLS ARSENAL --- */
.tools-section { padding: 100px 5%; background: #0f0f0f;}
.tools-grid { display: grid; grid-template-columns: repeat(auto-fit, minmax(250px, 1fr)); gap: 30px; margin-top: 40px; }
.tool-card { background: var(--bg-card); padding: 40px; border-radius: 12px; border: 1px solid rgba(255,255,255,0.05); will-change: transform, opacity; }
.tool-card h3 { color: var(--accent-orange); margin-bottom: 20px; }
.tool-card ul { list-style: none; }
.tool-card ul li { margin-bottom: 12px; color: var(--text-gray); }

/* --- CONTACT SECTION --- */
.contact-section {
    height: 100vh;
    display: flex;
    justify-content: center;
    align-items: center;
    text-align: center;
    padding: 0 5%;
    position: relative;
    overflow: hidden; /* Mengunci agar video tidak keluar jalur saat membesar */
}

.video-bg-contact {
    width: 100%;
    height: 100%;
    object-fit: cover;
    will-change: transform;
}

/* Pembungkus Konten Utama Contact */
.contact-cta {
    z-index: 2;
    position: relative;
    max-width: 900px;
    transform: scale(0.6); /* Nilai awal diperkecil agar memberi kesan jauh */
    opacity: 0;           /* Berwujud transparan di awal */
    will-change: transform, opacity;
}

.contact-cta h2 {
    font-size: 5rem;
    font-weight: 800;
    line-height: 1.1;
    margin-bottom: 20px;
}

/* Responsif untuk layar tablet dan ponsel */

.social-links { display: flex; justify-content: center; gap: 20px; margin-bottom: 50px; margin-top: 35px;}
.social-btn { padding: 15px 40px; border-radius: 50px; text-decoration: none; font-weight: 600; color: white; border: 1px solid rgba(255,255,255,0.2); }
.btn-orange { background: var(--accent-orange); border: none; }
.ecosystem-links a { color: var(--text-gray); text-decoration: none; margin: 0 10px; }

/* --- RESPONSIVE --- */
@media (max-width: 992px) {
    .hero h1 { font-size: 2.8rem; }
    .concept-layout { grid-template-columns: 1fr; gap: 40px; }
    .contact-cta h2 { font-size: 3rem; }
}


@media (max-width: 768px) {
    nav { display: none; }
    .netflix-card { min-width: 310px; }
}