/* =============================================
   BASE STYLES - Variables, Resets, Typography
   ============================================= */

:root {
    --olive: #3F5A3C;
    --olive-dark: #2d4329;
    --olive-light: #4a6b47;
    --sand: #C7A46A;
    --sand-light: #d4b88a;
    --charcoal: #2F2F2F;
    --light-bg: #F7F5EF;
    --white: #ffffff;
    --gray-light: #6B6B6B;
    --gray-dark: #444444;
    --gradient-olive: linear-gradient(135deg, #3F5A3C 0%, #2d4329 100%);
    --gradient-sand: linear-gradient(135deg, #C7A46A 0%, #a88a4f 100%);
    --shadow-sm: 0 2px 8px rgba(0,0,0,0.08);
    --shadow-md: 0 4px 20px rgba(0,0,0,0.12);
    --shadow-lg: 0 8px 40px rgba(0,0,0,0.15);
    --transition: all 0.3s ease;
}

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

html {
    scroll-behavior: smooth;
}

body {
    font-family: 'Inter', "Segoe UI", Arial, sans-serif;
    background-color: var(--light-bg);
    color: var(--charcoal);
    line-height: 1.7;
    overflow-x: hidden;
}

.container {
    width: 90%;
    max-width: 1280px;
    margin: auto;
    padding: 0 20px;
}

section {
    padding: 100px 0;
}

h1, h2, h3, h4 {
    font-weight: 700;
    line-height: 1.3;
}

h1 {
    font-size: clamp(36px, 5vw, 56px);
    margin-bottom: 24px;
}

h2 {
    font-size: clamp(28px, 4vw, 42px);
    margin-bottom: 16px;
}

h3 {
    font-size: 24px;
    margin-bottom: 12px;
}

h4 {
    font-size: 18px;
    margin-bottom: 8px;
}

p {
    color: var(--gray-light);
    font-size: 17px;
}

.section-badge {
    display: inline-block;
    background: var(--gradient-sand);
    color: var(--white);
    padding: 6px 16px;
    border-radius: 30px;
    font-size: 12px;
    font-weight: 600;
    letter-spacing: 1.5px;
    text-transform: uppercase;
    margin-bottom: 16px;
}

.section-header {
    text-align: center;
    max-width: 800px;
    margin: 0 auto 60px;
}

.section-header p {
    font-size: 18px;
    margin-top: 16px;
}

/* BUTTONS */
.btn {
    display: inline-flex;
    align-items: center;
    gap: 10px;
    padding: 14px 32px;
    border-radius: 10px;
    text-decoration: none;
    font-weight: 600;
    font-size: 16px;
    transition: var(--transition);
    cursor: pointer;
    border: none;
}

.btn-primary {
    background: var(--sand);
    color: var(--white);
}

.btn-primary:hover {
    background: var(--sand-light);
    transform: translateY(-3px) scale(1.05);
    box-shadow: 0 10px 30px rgba(199,164,106,0.4);
}

.btn-secondary {
    background: rgba(255,255,255,0.08);
    border: 2px solid rgba(255,255,255,0.25);
    color: var(--white);
    backdrop-filter: blur(6px);
}

.btn-secondary:hover {
    background: rgba(255,255,255,0.15);
    border-color: var(--white);
    transform: translateY(-3px);
}

.btn-outline {
    background: transparent;
    border: 2px solid var(--olive);
    color: var(--olive);
}

.btn-outline:hover {
    background: var(--olive);
    color: var(--white);
}
