/* Critical CSS for above-the-fold content */
:root {
    --primary-color: #000000;
    --secondary-color: #ffffff;
    --highlight: #ff4500;
    --spacing-unit: clamp(0.5rem, 2vw, 1rem);
}

body {
    margin: 0;
    font-family: 'Inter', 'Gill Sans', 'Gill Sans MT', Calibri, 'Trebuchet MS', sans-serif;
    line-height: 1.6;
    -webkit-font-smoothing: antialiased;
    -moz-osx-font-smoothing: grayscale;
}

/* Base hero styles - Mobile first */
.hero-section {
    min-height: 100vh;
    background-color: #000;
    position: relative;
    overflow: hidden;
    display: flex;
    flex-direction: column;
}

.hero-background-wrapper {
    position: relative;
    height: 100%;
    overflow: hidden;
}

.hero-content {
    position: relative;
    z-index: 2;
    color: white;
    text-align: center;
    padding: var(--spacing-unit);
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: var(--spacing-unit);
}

.hero-background {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    object-fit: cover;
    object-position: center;
    z-index: 0;
}

.overlay {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    z-index: 1;
}

.cta {
    display: inline-block;
    text-decoration: none;
    font-weight: 600;
    border-radius: 8px;
    transition: all 0.3s ease;
    padding: 1rem 2rem;
    background: var(--highlight);
    color: white;
    text-decoration: none;
    border-radius: 30px;
    font-weight: 600;
    margin: 0.5rem;
}