/* --- GLOBAL CONFIG & THEME --- */
:root {
    --bg-dark: #050505; /* Blackest black */
    --brand-red: #a31d1d;
    --text-light: #e6e6e6;
    --paper-cream: #f2ebd9;
    --paper-shadow: rgba(0, 0, 0, 0.7);
}

html {
    scroll-behavior: smooth;
}

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

body {
    background-color: var(--bg-dark);
    /* --- NEW: PAPER TEXTURE (Replaced pocodot pattern) --- */
    background-image: url('images/black-paper-texture.jpg');
    background-repeat: repeat; /* Texture tiles across entire screen */
    background-size: cover; /* Optional: adjust if texture tiles badly, use 'cover' or 'repeat' */
    color: var(--text-light);
    font-family: 'Roboto', sans-serif;
    padding-bottom: 130px;
    overflow-x: hidden;
}

/* Stars overlay stays as a layer over the new paper texture */
.stars-overlay {
    position: fixed; top: 0; left: 0; width: 100vw; height: 100vh;
    background-image: radial-gradient(white 1px, transparent 0);
    background-size: 40px 40px; opacity: 0.04; pointer-events: none; z-index: -1;
}

/* --- POSTER HERO AREA --- */
.hero-poster {
    position: relative;
    max-width: 800px;
    height: 850px; 
    margin: 20px auto;
    /* --- NEW: Solid Dark Background (No box cards/lighter gradients) --- */
    background-color: #030303; 
    border: 3px solid #222;
    box-shadow: 0 20px 50px rgba(0,0,0,0.8);
    display: flex;
    flex-direction: column;
    overflow: hidden;
    padding-top: 40px;
}

.sub-logo { 
    font-family: 'Roboto', sans-serif;
    font-weight: 700;
    font-size: 1rem; 
    letter-spacing: 5px; 
    color: var(--text-light);
    z-index: 10;
    text-transform: uppercase;
    text-align: center;
}

/* Title Positioning - Pushed past the frame edge on the left */
.logo-wrapper {
    position: relative;
    margin-left: -50px; 
    z-index: 20; 
}

.main-logo { 
    font-family: 'Monsieur La Doulaise', cursive; 
    font-size: 14rem; 
    color: var(--brand-red); 
    font-weight: normal; 
    letter-spacing: -2px;
    margin-top: -10px;
    pointer-events: none;
    white-space: nowrap;
    position: relative;
    z-index: 21;
}

/* --- REMOVED: .logo-byline CSS Block (No longer needed) --- */

/* Giant Right-Hand Vinyl Display */
.vinyl-container {
    position: absolute;
    top: 220px;
    right: -100px; 
    z-index: 5;
}

.vinyl-display { 
    width: 520px; 
    height: 520px; 
    border-radius: 50%; 
    background: #050505; 
    border: 12px solid #141414; 
    box-shadow: -10px 15px 40px rgba(0,0,0,0.9);
    overflow: hidden;
}

.spinning-vinyl { 
    width: 100%; 
    height: 100%; 
    border-radius: 50%; 
    object-fit: cover; 
    animation: spin 12s linear infinite; 
}

/* Clean, Left-Aligned Welcome Text */
.welcome-text-container { 
    position: absolute;
    bottom: 120px;
    left: 50px; 
    z-index: 25; 
    text-align: left; 
    display: flex;
    flex-direction: column;
    gap: 0px;
}

/* --- NEW: WELCOME FONT SMALLER (Reduced rem size) --- */
.welcome-heading {
    font-family: 'Bebas Neue', sans-serif;
    font-size: 4rem; /* KECIK SIKIT from 5.5rem */
    color: #ffffff; 
    line-height: 0.9;
    letter-spacing: 2px;
    text-transform: lowercase; 
}

/* --- STRUCTURE AND SECTIONS --- */
.main-content { 
    max-width: 800px; 
    margin: 0 auto; 
    padding: 0 20px; 
}

section { 
    padding: 60px 0; 
    border-bottom: 1px dashed rgba(255,255,255,0.1); 
}

.section-title { 
    font-family: 'Bebas Neue', sans-serif; 
    font-size: 3.8rem; 
    text-align: center; 
    letter-spacing: 2px;
    margin-bottom: 25px; 
}

.section-subtitle { 
    font-family: 'Roboto', sans-serif;
    text-align: center; 
    color: #aaa; 
    margin-top: -15px; 
    margin-bottom: 40px; 
    letter-spacing: 1px;
}

.text-red { color: var(--brand-red); }

/* --- PAPER CARDS --- */
.paper-card { 
    background-color: var(--paper-cream); 
    color: #111; 
    box-shadow: 4px 10px 25px var(--paper-shadow); 
    border-radius: 1px; 
    clip-path: polygon(1% 2%, 99% 0%, 100% 98%, 0% 97%); 
}

/* --- CATALOG CARD STYLES --- */
.product-grid { display: grid; grid-template-columns: repeat(auto-fit, minmax(200px, 1fr)); gap: 25px; }
.product-card { background: #141414; border: 1px solid #252525; padding: 15px; text-align: center; transition: transform 0.2s; }
.product-card:hover { transform: translateY(-5px); border-color: var(--brand-red); }
.product-image-placeholder { background: #222; height: 250px; display: flex; align-items: center; justify-content: center; color: #555; margin-bottom: 15px; font-family: 'Roboto', sans-serif; }

.product-title { 
    font-family: 'Bebas Neue', sans-serif; 
    font-size: 2rem; 
    letter-spacing: 1px;
    margin-bottom: 5px; 
}
.product-price { font-family: 'Roboto', sans-serif; font-weight: bold; color: var(--brand-red); font-size: 1.2rem; }

/* --- ORDER PROCESS STEP CARDS --- */
.order-steps { display: flex; flex-direction: column; gap: 20px; align-items: center; }
.step-card { padding: 25px; width: 100%; max-width: 500px; }
.step-card h3 { 
    font-family: 'Monsieur La Doulaise', cursive; 
    color: var(--brand-red); 
    font-size: 3rem; 
    font-weight: normal;
    line-height: 0.9;
    margin-bottom: 10px; 
}
.step-card p {
    font-family: 'Roboto', sans-serif;
    font-size: 1rem;
    font-weight: 700;
    line-height: 1.4;
    letter-spacing: 0.5px;
}
.tape-1 { transform: rotate(-1.5deg); } 
.tape-2 { transform: rotate(1deg); } 
.tape-3 { transform: rotate(-0.5deg); }

.whatsapp-container { display: flex; align-items: center; justify-content: space-between; margin-top: 15px; background: rgba(0,0,0,0.06); padding: 10px; border: 1px dashed #bbb; }
.wa-link { font-family: 'Roboto', sans-serif; font-weight: bold; color: #0b6623; text-decoration: none; font-size: 1rem; }
.qr-img { width: 65px; height: 65px; background: white; padding: 2px; }

/* --- CARE INSTRUCTIONS --- */
.dual-guide { display: flex; flex-wrap: wrap; gap: 40px; }
.guide-column { flex: 1; min-width: 280px; }
.guide-block p { font-family: 'Roboto', sans-serif; font-size: 1rem; margin-bottom: 15px; line-height: 1.6; color: #ccc; }
.guide-block strong { color: var(--brand-red); font-family: 'Roboto', sans-serif; font-size: 1.1rem; }

/* --- FOOTER LAYOUT --- */
.site-footer { text-align: center; padding: 50px 0; font-size: 0.9rem; color: #666; font-family: 'Roboto', sans-serif; }
.site-footer p { margin-bottom: 10px; }

/* --- STICKY NAV TRACK BUTTONS (UNIFIED BRAND RED) --- */
.media-controls { 
    position: fixed; 
    bottom: 0; 
    left: 0; 
    width: 100%; 
    background: rgba(10, 10, 10, 0.98); 
    border-top: 2px solid var(--brand-red); 
    display: flex; 
    justify-content: center; 
    gap: 50px; 
    padding: 16px 0 22px; 
    z-index: 100; 
    backdrop-filter: blur(8px); 
}

.control-btn { 
    position: relative;
    width: 65px;
    height: 44px;
    display: flex; 
    flex-direction: column; 
    align-items: center; 
    justify-content: flex-start;
    text-decoration: none; 
    border: none; 
    cursor: pointer; 
}

.control-btn span { 
    font-family: 'Roboto', sans-serif; 
    font-weight: 700; 
    font-size: 0.72rem; 
    color: var(--brand-red); 
    letter-spacing: 1px; 
    position: absolute;
    bottom: -14px;
}

.nav-icon { 
    position: absolute; 
    top: 0;
    transition: opacity 0.4s cubic-bezier(0.4, 0, 0.2, 1), transform 0.4s cubic-bezier(0.4, 0, 0.2, 1); 
}

.nav-icon svg { 
    width: 26px; 
    height: 26px; 
    fill: var(--brand-red); 
}

/* --- MULTI-ICON TRANSITION ARCHITECTURE --- */
.media-controls .nav-icon.default { opacity: 1; transform: scale(1); }
.media-controls .nav-icon.scrolled { opacity: 0; transform: scale(0.6); }

.media-controls.is-scrolled .nav-icon.default {
    opacity: 0 !important;
    transform: scale(0.6) !important;
}

.media-controls.is-scrolled .nav-icon.scrolled {
    opacity: 1 !important;
    transform: scale(1) !important;
}

.control-btn:hover .nav-icon svg { fill: var(--text-light); }
.control-btn:hover span { color: var(--text-light); }

@keyframes spin { 100% { transform: rotate(360deg); } }

/* Responsive adjustments */
@media(max-width: 768px) {
    .hero-poster { height: 750px; width: 95%; }
    .logo-wrapper { margin-left: -20px; }
    .main-logo { font-size: 10rem; }
    .vinyl-container { top: 240px; right: -160px; }
    .vinyl-display { width: 380px; height: 380px; }
    .welcome-text-container { left: 30px; bottom: 60px; }
    /* Mobile responsive shrinking for welcome font */
    .welcome-heading { font-size: 2.5rem; } /* KECIK scaling for mobile */
}