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

:root {
    --primary-dark: #1a1a1a;
    --primary-light: #f8f8f8;
    --accent: #8B4513;
    --accent-light: #A0522D;
    --text-dark: #333;
    --text-light: #666;
    --border-light: rgba(0,0,0,0.1);
    --moss-sage: #8a9a5b;
    --soft-sage: #6f7a72;
    --banana: #ceb283;
}

body {
    font-family: 'Inter', sans-serif;
    line-height: 1.6;
    color: var(--text-dark);
    background: var(--primary-light);
}

html {
    scroll-behavior: smooth;
}

/* Utility Classes */
.section-container {
    max-width: 1400px;
    margin: 0 auto;
    padding: 0 2rem;
}

.text-center {
    text-align: center;
}

/* Loading State */
.loading {
    opacity: 0;
    transition: opacity 0.3s ease;
}

.loaded {
    opacity: 1;
}

/* Construction Banner */
.construction-banner {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    background: linear-gradient(135deg, #ff6b6b, #ff8e53);
    color: white;
    padding: 12px 0;
    z-index: 9999;
    box-shadow: 0 2px 10px rgba(0,0,0,0.3);
    font-size: 14px;
    font-weight: 500;
}

.banner-content {
    max-width: 1200px;
    margin: 0 auto;
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 15px;
    padding: 0 20px;
    text-align: center;
}

.banner-icon {
    font-size: 18px;
    flex-shrink: 0;
}

.banner-text {
    flex: 1;
}

.banner-text strong {
    font-weight: 700;
    background: rgba(255,255,255,0.2);
    padding: 2px 8px;
    border-radius: 4px;
}

/* Push content down so it's not hidden behind banner */
body {
    padding-top: 50px;
}

.main-nav {
    top: 50px; /* Adjust nav position */
}