/* Critical CSS - Above the fold styles */
:root {
    --color-primary: #DF5518;
    --color-bg: #f9f9f9;
    --color-text: #333;
    --color-accent: #34C759;
    --heading-font: 'League Spartan', sans-serif;
    --body-font: -apple-system, BlinkMacSystemFont, "Segoe UI", Roboto, Helvetica, Arial, sans-serif;
}

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

body {
    font-family: var(--body-font);
    line-height: 1.6;
    color: var(--color-text);
    margin: 0;
    padding: 0;
    min-height: 100vh;
    position: relative;
    overflow-x: hidden;
    background-color: var(--color-bg);
}

/* Container */
.container {
    width: 100%;
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 20px;
}

/* Parallax Background */
.parallax-bg {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    z-index: -1;
    overflow: hidden;
    opacity: 0.3;
}

.parallax-bg::before {
    content: '';
    position: absolute;
    top: -25%;
    left: -15%;
    width: 130%;
    height: 150%;
    background-image: url('../../bgnew2.webp');
    background-position: center;
    background-repeat: no-repeat;
    background-size: cover;
    will-change: transform;
    -webkit-backface-visibility: hidden;
    backface-visibility: hidden;
    transform-origin: center top;
}

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

/* Header */
.site-header {
    background: linear-gradient(90deg, #2B2B2B 0%, #3F3B37 100%);
    box-shadow: 0 2px 10px rgba(0,0,0,0.2);
    position: sticky;
    top: 0;
    z-index: 1000;
    border-bottom: 1px solid rgba(255,255,255,0.1);
}

.main-nav {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 1rem 0;
}

.logo {
    font-family: var(--heading-font);
    font-weight: 700;
    font-size: 1.25rem;
    color: white;
    text-decoration: none;
    transition: color 0.2s ease;
}

/* Hero Section */
.hero {
    text-align: center;
    padding: 4rem 0;
}

.hero h1 {
    font-family: var(--heading-font);
    font-size: 3rem;
    margin-bottom: 1rem;
    color: #333;
}

/* Basic animations */
.animate {
    opacity: 0;
    transform: translateY(20px);
    transition: opacity 0.6s ease-out, transform 0.6s ease-out;
}

.animate.visible {
    opacity: 1;
    transform: translateY(0);
}
