/**
 * Main CSS - Aqua Interactive LED
 * Custom Fonts: Termina
 */

/* ========================================
   FONT FACE DECLARATIONS
   ======================================== */

@font-face {
    font-family: 'Termina';
    src: url('/static/fonts/Termina-Bold.woff2') format('woff2'),
         url('/static/fonts/Termina-Bold.woff') format('woff'),
         url('/static/fonts/Termina-Bold.otf') format('opentype');
    font-weight: 700;
    font-style: normal;
    font-display: swap;
}

@font-face {
    font-family: 'Termina';
    src: url('/static/fonts/Termina-Demi.woff2') format('woff2'),
         url('/static/fonts/Termina-Demi.woff') format('woff'),
         url('/static/fonts/Termina-Demi.otf') format('opentype');
    font-weight: 600;
    font-style: normal;
    font-display: swap;
}

@font-face {
    font-family: 'Sud';
    src: url('/static/fonts/Sud.otf') format('opentype');
    font-weight: normal;
    font-style: normal;
    font-display: swap;
}

/* ========================================
   RESET & BASE STYLES
   ======================================== */

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

html {
    width: 100%;
    height: 100%;
    overflow-x: hidden;
    overflow-y: auto;
}

:root {
    /* Color Palette */
    --primary-color: #667eea;
    --secondary-color: #764ba2;
    --accent-color: #00fff7;
    --dark-bg: #0f0f1e;
    --light-bg: #ffffff;
    --text-dark: #333333;
    --text-light: #666666;
    --text-white: #ffffff;
}

body {
    font-family: 'Termina', 'Segoe UI', Tahoma, Geneva, Verdana, sans-serif;
    font-weight: 600;
    line-height: 1.6;
    color: var(--text-dark);
    -webkit-font-smoothing: antialiased;
    -moz-osx-font-smoothing: grayscale;
    padding: 0;
    width: 100%;
    max-width: 100vw;
    overflow-x: hidden;
}

/* ========================================
   TYPOGRAPHY
   ======================================== */

h1, h2, h3, h4, h5, h6 {
    font-family: 'Termina', sans-serif;
    font-weight: 700;
    line-height: 1.2;
    margin-bottom: var(--spacing-sm);
}

h1 {
    font-size: 2.5em;
}

h2 {
    font-size: 2em;
}

h3 {
    font-size: 1.5em;
}

p {
    margin-bottom: var(--spacing-md);
    font-size: 1.1em;
}

/* ========================================
   UTILITY CLASSES
   ======================================== */

.container {
    max-width: 1200px;
    margin: 0 auto;
    padding: var(--spacing-md);
}

.text-center {
    text-align: center;
}

.gradient-bg {
    background: linear-gradient(135deg, var(--primary-color) 0%, var(--secondary-color) 100%);
}

.totem-bg {
    background: var(--dark-bg);
}

/* Background Image Utilities */
.bg-image {
    background-image: url('/static/images/background-potrait.webp');
    background-size: cover;
    background-position: center;
    background-repeat: no-repeat;
}

.bg-image-overlay {
    background-image: 
        url('/static/images/background-potrait.webp');
    background-size: cover;
    background-position: center;
    background-repeat: no-repeat;
}

.bg-image-fixed {
    background-image: url('/static/images/background-potrait.webp');
    background-size: cover;
    background-position: center;
    background-repeat: no-repeat;
    background-attachment: fixed;
}
