:root {
    --cream: #f4f1ea;
    --red: #e63946;
    --black: #000000;
}

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

body {
    background-color: var(--cream);
    color: var(--black);
    font-family: 'Inter', sans-serif;
    text-align: center;
    overflow-x: hidden;
}

/* Nav - Clean Version */
.top-nav {
    display: flex;
    justify-content: center;
    padding: 30px 0;
}

.main-logo-circle {
    background: var(--red);
    color: white;
    width: 65px;
    height: 65px;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-weight: 900;
    font-size: 0.75rem;
    border: 2px solid black;
    letter-spacing: 1px;
}

/* Hero */
.hero { padding: 60px 20px 100px; }
.presenter { font-size: 0.8rem; letter-spacing: 3px; text-transform: uppercase; margin-bottom: 10px; }
.hero-title { 
    font-size: clamp(4rem, 18vw, 12rem); 
    font-weight: 900; 
    margin: 0;
    letter-spacing: -6px;
    line-height: 0.9;
}
.sub-headline { font-size: clamp(1rem, 3vw, 1.8rem); margin-top: 20px; margin-bottom: 40px; text-transform: uppercase; letter-spacing: 2px; }
.highlight { border-bottom: 3px solid var(--red); padding-bottom: 2px; font-weight: 900; }

.btn {
    padding: 15px 40px;
    border-radius: 40px;
    text-decoration: none;
    font-weight: 800;
    margin: 10px;
    display: inline-block;
    font-size: 0.85rem;
    transition: 0.3s;
}
.btn-black { background: black; color: white; border: 1px solid black; }
.btn-outline { border: 1px solid black; color: black; }
.btn:hover { transform: scale(1.05); }

/* Full Width Marquee */
.marquee {
    background: black;
    color: white;
    padding: 20px 0;
    width: 100vw;
    position: relative;
    left: 50%;
    right: 50%;
    margin-left: -50vw;
    margin-right: -50vw;
    overflow: hidden;
    white-space: nowrap;
}
.marquee-content {
    display: inline-block;
    animation: scroll 30s linear infinite;
    font-weight: 900;
    letter-spacing: 3px;
    font-size: 1.2rem;
    text-transform: uppercase;
}

@keyframes scroll {
    from { transform: translateX(0); }
    to { transform: translateX(-50%); }
}

/* Store */
.store { padding: 100px 5%; max-width: 1400px; margin: 0 auto; }
.section-title { font-size: clamp(2rem, 8vw, 4rem); font-weight: 900; margin-bottom: 60px; letter-spacing: -2px; }
.product-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
    gap: 40px;
}
.prod-card { text-decoration: none; color: black; text-align: left; transition: 0.3s; }
.prod-card:hover { opacity: 0.8; }
.img-placeholder { background: #e0e0e0; aspect-ratio: 1/1; margin-bottom: 20px; border: 2px solid #000; }
.buy-link { color: var(--red); font-weight: 900; font-size: 0.85rem; margin-top: 10px; display: block; }

/* Tour */
.tour { background: var(--red); padding: 100px 5%; }
.section-title.white { color: white; }
.tour-container { max-width: 1000px; margin: 0 auto; background: white; padding: 20px; border-radius: 4px; }

/* Footer */
footer { 
    background: black; 
    color: white; 
    padding: 80px 20px; 
    width: 100%;
}

.socials { 
    margin-bottom: 40px; 
    display: flex; 
    justify-content: center; 
    gap: 30px; 
}

.socials a {
    display: inline-block;
    transition: 0.3s;
}

.socials img { 
    width: 30px; /* Ukuran sedikit diperbesar biar jelas */
    height: auto;
    display: block;
    /* Hapus filter invert(1) jika ikon kamu sudah berwarna putih/cerah */
    filter: brightness(0) invert(1); 
    opacity: 0.8;
}

.socials a:hover img { 
    transform: translateY(-5px); 
    opacity: 1;
    filter: brightness(0) invert(1) drop-shadow(0 0 8px var(--red));
}

.copyright { 
    font-weight: 800; 
    font-size: 0.9rem; 
    margin-bottom: 15px; 
    letter-spacing: 1px;
    text-transform: uppercase;
}