/* css/variables.css */

@font-face {
    font-family: 'Proxima Nova';
    src: url('../fonts/ProximaNova-Reg.otf') format('opentype');
    font-weight: 400;
    font-style: normal;
}

@font-face {
    font-family: 'Proxima Nova';
    src: url('../fonts/ProximaNova-Sbold.otf') format('opentype');
    font-weight: 600;
    font-style: normal;
}

@font-face {
    font-family: 'Proxima Nova';
    src: url('../fonts/ProximaNova-Bold.otf') format('opentype');
    font-weight: 700;
    font-style: normal;
}

@font-face {
    font-family: 'Proxima Nova';
    src: url('../fonts/ProximaNova-Extrabld.otf') format('opentype');
    font-weight: 800;
    font-style: normal;
}

@font-face {
    font-family: 'Proxima Nova';
    src: url('../fonts/ProximaNova-Black.otf') format('opentype');
    font-weight: 900;
    font-style: normal;
}

@font-face {
    font-family: 'Proxima Nova';
    src: url('../fonts/ProximaNova-Light.otf') format('opentype');
    font-weight: 300;
    font-style: normal;
}

:root {
    /* Color Palette */
    --ariston-red: #C8102E;
    --ariston-red-hover: #a60d26;
    --ariston-red-light: rgba(200, 16, 46, 0.08);
    
    --bg-dark: #0b1a30; /* Biru Navy Premium Khas Ariston */
    --bg-card: #ffffff;
    --bg-card-dark: rgba(11, 26, 48, 0.95);
    --bg-glass: rgba(255, 255, 255, 0.06);
    --bg-glass-hover: rgba(255, 255, 255, 0.12);
    
    --text-primary: #0b1a30; /* Navy Gelap Solid untuk Kontras Premium */
    --text-secondary: #4b5563; /* Abu-abu Sedang untuk Deskripsi Clean */
    --text-light: #ffffff;
    --text-muted: #9ca3af;
    
    --border-color: rgba(11, 26, 48, 0.06);
    --border-color-light: rgba(255, 255, 255, 0.12);
    
    /* Layout Constants */
    --font-main: 'Proxima Nova', -apple-system, BlinkMacSystemFont, "Segoe UI", Roboto, sans-serif;
    --radius-sm: 12px;
    --radius-md: 20px;
    --radius-lg: 28px;
    --transition-smooth: all 0.25s cubic-bezier(0.4, 0, 0.2, 1);
    --shadow-premium: 0 10px 40px rgba(11, 26, 48, 0.03);
    --shadow-hover: 0 15px 35px rgba(193, 18, 42, 0.12);
}

* {
    box-sizing: border-box;
    margin: 0;
    padding: 0;
    font-family: var(--font-main);
    user-select: none;
}

body {
    background-color: #f7f8fa;
    color: var(--text-primary);
    overflow: hidden;
    width: 100%;
    height: 100vh;
    position: relative;
}
