@import url('https://fonts.googleapis.com/css2?family=Inter:wght@300;400;500;600;700;800&display=swap');

@font-face {
    font-family: 'Satoshi';
    src: url('https://vgbujcuwptvheqijyjbe.supabase.co/storage/v1/object/public/hmac-uploads/uploads/4aed2f49-a476-436f-bae8-f31aa18f46fa/1767920861040-60c1c779/Satoshi-Variable.woff2') format('woff2');
    font-weight: 300 900;
    font-display: swap;
    font-style: normal;
}

:root {
    --font-satoshi: 'Satoshi', 'Inter', sans-serif;
    --color-bg: #050505;
    --color-accent: #D4AF37;
    --color-text: #ebebeb;
    --color-muted: #888888;
    --color-border: rgba(255, 255, 255, 0.1);
    --glass: rgba(17, 17, 17, 0.8);
}

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

body {
    font-family: var(--font-satoshi);
    background-color: var(--color-bg);
    color: var(--color-text);
    scroll-behavior: smooth;
    overflow-x: hidden;
    line-height: 1.5;
}

.selection-coral::selection {
    background-color: var(--color-accent);
    color: white;
}

/* Custom Utilities */
.hero-text {
    font-size: 18vw;
    line-height: 0.85;
    letter-spacing: -0.05em;
    font-weight: 900;
}

@media (min-width: 768px) {
    .hero-text {
        font-size: 13vw;
    }
}

header {
    perspective: 1000px;
}

.glass-nav {
    background: var(--glass);
    backdrop-filter: blur(12px);
    border: 1px solid var(--color-border);
}

.text-muted {
    color: var(--color-muted);
}

.accent-text {
    color: var(--color-accent);
}

@keyframes float {
    0%, 100% { transform: translateY(0); }
    50% { transform: translateY(-10px); }
}

.animate-float {
    animation: float 4s ease-in-out infinite;
}

/* Custom Scrollbar for premium feel */
::-webkit-scrollbar {
    width: 6px;
}

::-webkit-scrollbar-track {
    background: var(--color-bg);
}

::-webkit-scrollbar-thumb {
    background: #333;
    border-radius: 10px;
}

::-webkit-scrollbar-thumb:hover {
    background: var(--color-accent);
}

/* ─── Custom Cursor ── works on all pages ─── */
* { cursor: none !important; }

.cursor {
    position: fixed;
    top: 0;
    left: 0;
    width: 36px;
    height: 36px;
    border: 1.5px solid var(--color-accent);
    border-radius: 50%;
    pointer-events: none;
    z-index: 99999;
    mix-blend-mode: difference;
    will-change: transform;
    transform: translate(-50%, -50%);
}

.cursor-dot {
    position: fixed;
    top: 0;
    left: 0;
    width: 6px;
    height: 6px;
    background: var(--color-accent);
    border-radius: 50%;
    pointer-events: none;
    z-index: 99999;
    will-change: transform;
    transform: translate(-50%, -50%);
}

/* Card Styles */
.editorial-card {
    background: #111111;
    border-radius: 2rem;
    padding: 2rem;
    transition: all 0.5s cubic-bezier(0.16, 1, 0.3, 1);
    border: 1px solid transparent;
}

@media (min-width: 768px) {
    .editorial-card {
        border-radius: 2.5rem;
        padding: 3rem;
    }
}

.editorial-card:hover {
    background: #161616;
    border-color: var(--color-border);
    transform: translateY(-5px);
}

/* 3D Model tweaks */
.hero-3d-container {
    filter: drop-shadow(0 0 50px rgba(255, 107, 80, 0.2));
}

.brand-item {
    font-size: 1.25rem;
    font-weight: 900;
    letter-spacing: -0.05em;
    transition: all 0.3s ease;
    cursor: default;
    color: white;
    text-align: center;
}

@media (min-width: 768px) {
    .brand-item {
        font-size: 1.5rem;
    }
}

.brand-item:hover {
    color: var(--color-accent);
    transform: scale(1.1);
}

@keyframes marquee {
    0% { transform: translateX(0); }
    100% { transform: translateX(-50%); }
}

.animate-marquee {
    animation: marquee 40s linear infinite;
}

.group:hover .animate-marquee {
    animation-play-state: paused;
}

.marquee-mask {
    mask-image: linear-gradient(to right, transparent, black 15%, black 85%, transparent);
    -webkit-mask-image: linear-gradient(to right, transparent, black 15%, black 85%, transparent);
}


