/* ============================================
   CORE SILICONE RINGS - BASE STYLES
   Variables, Resets, Typography, Global Styles
============================================ */

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

/* CSS VARIABLES */
:root {
    /* WHITE-DOMINANT COLOR SCHEME */
    --white: #FFFFFF;
    --off-white: #F8F8F8;
    --light-gray: #E5E5E5;
    --mid-gray: #999999;
    --dark-gray: #333333;
    --black: #000000;
    --maroon: #8B0000;
    --maroon-dark: #660000;
    --maroon-glow: rgba(139, 0, 0, 0.15);
    
    /* Glassmorphism - lighter for white theme */
    --glass-bg: rgba(255, 255, 255, 0.9);
    --glass-border: rgba(0, 0, 0, 0.08);
    
    /* Shadows - lighter for white background */
    --shadow-sm: 0 1px 3px rgba(0,0,0,0.06);
    --shadow-md: 0 2px 8px rgba(0,0,0,0.08);
    --shadow-lg: 0 8px 24px rgba(0,0,0,0.12);
    --shadow-glow: 0 0 32px var(--maroon-glow);
    
    /* Transitions */
    --transition-fast: 0.15s cubic-bezier(0.4, 0, 0.2, 1);
    --transition-base: 0.3s cubic-bezier(0.4, 0, 0.2, 1);
    --transition-slow: 0.5s cubic-bezier(0.4, 0, 0.2, 1);
    --transition-bounce: 0.6s cubic-bezier(0.68, -0.55, 0.265, 1.55);
}

/* PREVENT HORIZONTAL OVERFLOW */
html {
    overflow-x: hidden;
}

/* BODY */
body {
    font-family: 'Zalando Sans SemiExpanded', -apple-system, BlinkMacSystemFont, sans-serif;
    color: var(--dark-gray);
    background: var(--white);
    line-height: 1.6;
    -webkit-font-smoothing: antialiased;
    -moz-osx-font-smoothing: grayscale;
    overflow-x: hidden;
    padding-top: 70px; /* Account for fixed header */
}

/* ANTON TYPOGRAPHY FOR HEADINGS */
h1, h2, h3, h4, h5, h6,
.hero-content-scrolly h1,
.section-title {
    font-family: 'Anton', 'Impact', sans-serif;
    font-weight: 400;
    text-transform: uppercase;
    letter-spacing: 1px;
}

/* PAGE TRANSITION */
.page-transition {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100vh;
    background: var(--maroon);
    z-index: 9999;
    transform: translateY(-100%);
    transition: transform 0.6s cubic-bezier(0.77, 0, 0.175, 1);
}

.page-transition.active {
    transform: translateY(0);
}
