/* ==========================================
   RIDE WITH THOMAS - MAIN STYLES
   ========================================== */

/* CSS Variables */
:root {
    --primary: #FF4500;
    --dark: #0A0A0A;
    --light: #F5F5F0;
    --accent: #FFD700;
    --gray: #3A3A3A;
    --shadow: rgba(255, 69, 0, 0.2);
}

/* Global Reset & Base Styles */
* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

html {
    scroll-behavior: smooth;
}

body {
    font-family: 'Manrope', sans-serif;
    background: var(--light);
    color: var(--dark);
    line-height: 1.6;
    overflow-x: hidden;
}

/* Section Styling */
section {
    padding: 6rem 5%;
    max-width: 1400px;
    margin: 0 auto;
}

.section-title {
    font-family: 'Bebas Neue', sans-serif;
    font-size: 3.5rem;
    color: var(--dark);
    margin-bottom: 3rem;
    position: relative;
    display: inline-block;
    letter-spacing: 2px;
}

.section-title::after {
    content: '';
    position: absolute;
    bottom: -10px;
    left: 0;
    width: 60px;
    height: 4px;
    background: var(--primary);
}

/* Image Placeholders */
.image-note {
    position: absolute;
    bottom: 20px;
    background: rgba(255, 69, 0, 0.9);
    padding: 10px 20px;
    border-radius: 5px;
    font-size: 0.85rem;
    color: white;
    font-weight: 600;
}

/* Animations */
@keyframes fadeInUp {
    from {
        opacity: 0;
        transform: translateY(30px);
    }
    to {
        opacity: 1;
        transform: translateY(0);
    }
}

@keyframes scanlines {
    0% { transform: translateY(0); }
    100% { transform: translateY(20px); }
}
