/* Base styles and CSS variables */
* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

:root {
    --black: #0a0a0a;
    --dark-gray: #1a1a1a;
    --medium-gray: #2a2a2a;
    --light-gray: #888;
    --white: #ffffff;
    --blood-red: #8b0000;
    --forest-green: #0d2818;
    --fog: rgba(255, 255, 255, 0.05);
}

html {
    scroll-behavior: smooth;
    background: var(--black);
}

body {
    font-family: 'Inter', sans-serif;
    color: var(--white);
    background: var(--black);
    overflow-x: hidden;
    position: relative;
}

/* Section Base Styles */
section {
    min-height: 100vh;
    display: flex;
    align-items: center;
    padding: 5rem 0;
    position: relative;
}

.section-dark {
    background: var(--black);
}

.section-darker {
    background: linear-gradient(to bottom, var(--black), var(--dark-gray));
}

.content-wrapper {
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 2rem;
    width: 100%;
}

.section-title {
    font-family: 'Bebas Neue', sans-serif;
    font-size: clamp(3rem, 8vw, 5rem);
    letter-spacing: 0.2em;
    text-align: center;
    margin-bottom: 2rem;
    position: relative;
    transition: all 0.5s ease;
}

.section-title:hover {
    letter-spacing: 0.25em;
    text-shadow: 0 0 30px rgba(255, 255, 255, 0.2);
}

.section-title.in-view {
    animation: titleGlow 3s ease-in-out infinite alternate;
}

@keyframes titleGlow {
    0% { 
        opacity: 0.9;
        filter: brightness(1);
    }
    100% { 
        opacity: 1;
        filter: brightness(1.1);
    }
}

/* Main Content */
.main-content {
    position: relative;
    z-index: 10;
}