/* ===================================
   Mid-Century Modern Color Palette
   =================================== */
:root {
    --baltic-sea: #323b57;
    --jupiter-glow: #bc4a19;
    --woodstock-tan: #e7d5b7;
    --lionheart: #8b6f47;
    --olive-accent: #8b9474;
    --light-cream: #faf7f2;
    --warm-beige: #f5f0e8;
    --text-dark: #3a3a3a;
    --text-medium: #5a5a5a;
}

/* ===================================
   Base Styles
   =================================== */
* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

body {
    font-family: 'Century Gothic', 'Futura', 'Segoe UI', sans-serif;
    background-color: var(--woodstock-tan);
    color: var(--text-dark);
    line-height: 1.6;
}

/* ===================================
   Navigation
   =================================== */
nav {
    background-color: var(--light-cream);
    padding: 1.5rem 5%;
    display: flex;
    justify-content: space-between;
    align-items: center;
    box-shadow: 0 3px 0 var(--jupiter-glow);
    position: sticky;
    top: 0;
    z-index: 1000;
    border-bottom: 4px solid var(--olive-accent);
}

.logo {
    font-size: 1.8rem;
    font-weight: 700;
    color: var(--baltic-sea);
    letter-spacing: 1px;
    text-transform: uppercase;
}

.nav-links {
    display: flex;
    gap: 3rem;
    list-style: none;
}

.nav-links a {
    text-decoration: none;
    color: var(--baltic-sea);
    font-weight: 600;
    transition: all 0.3s ease;
    font-size: 1.05rem;
    letter-spacing: 0.5px;
    position: relative;
    padding-bottom: 5px;
}

.nav-links a::after {
    content: '';
    position: absolute;
    bottom: 0;
    left: 0;
    width: 0;
    height: 3px;
    background-color: var(--baltic-sea);
    transition: width .5s ease;
}

.nav-links a:hover::after {
    width: 100%;
}

.nav-links a:hover {
    color: var(--lionheart);
}

/* ===================================
   Decorative Dividers
   =================================== */
.divider {
    width: 100%;
    height: 8px;
    background: linear-gradient(90deg, 
        var(--baltic-sea) 0%, 
        var(--olive-accent) 25%, 
        var(--jupiter-glow) 50%, 
        var(--olive-accent) 75%, 
        var(--baltic-sea) 100%);
}

/* ===================================
   Geometric Accents
   =================================== */
.geometric-accent {
    position: fixed;
    z-index: -1;
    opacity: 0.15;
}

.circle-accent {
    width: 200px;
    height: 200px;
    border: 4px solid var(--olive-accent);
    border-radius: 50%;
    top: 20%;
    left: 5%;
}

.square-accent {
    width: 150px;
    height: 150px;
    border: 4px solid var(--jupiter-glow);
    transform: rotate(45deg);
    bottom: 15%;
    right: 8%;
}

/* ===================================
   Section Headers
   =================================== */
.section-header {
    text-align: center;
    margin-bottom: 4rem;
    position: relative;
}

.section-header h2 {
    font-size: 2.5rem;
    color: var(--baltic-sea);
    font-weight: 700;
    letter-spacing: -0.5px;
    display: inline-block;
    padding: 0 2rem;
    background-color: var(--woodstock-tan);
    position: relative;
    z-index: 1;
}

.section-header::before {
    content: '';
    position: absolute;
    top: 50%;
    left: 0;
    right: 0;
    height: 3px;
    background-color: var(--olive-accent);
    z-index: 0;
}

/* ===================================
   Responsive Navigation
   =================================== */
@media (max-width: 768px) {
    nav {
        flex-direction: column;
        gap: 1rem;
        padding: 1.5rem 5%;
    }

    .logo {
        font-size: 1.5rem;
    }

    .nav-links {
        gap: 1.5rem;
    }

    .nav-links a {
        font-size: 0.95rem;
    }
}

@media (max-width: 480px) {
    .section-header h2 {
        font-size: 1.75rem;
        padding: 0 1rem;
    }

    .geometric-accent {
        display: none;
    }
}