/* CSS Variables - Edit these to change branding */
:root {
    --color-primary: #ff6b35;
    --color-secondary: #f7931e;
    --color-text: #1a1a1a;
    --color-text-light: #4b5563;
    --color-text-lighter: #6b7280;
    --color-bg: #ffffff;
    --color-bg-light: #fff7f3;
    --color-border: #ffe4d6;
    --color-border-orange: #ffcc99;

    --gradient-primary: linear-gradient(135deg, var(--color-primary) 0%, var(--color-secondary) 100%);
    --gradient-hero: linear-gradient(135deg, #ff6b35 0%, #f7931e 50%, #ffb347 100%);
    --gradient-dark: linear-gradient(135deg, #1e293b 0%, #374151 100%);
    --gradient-light: linear-gradient(135deg, #ffe4d6 0%, #ffb347 100%);

    --border-radius-sm: 10px;
    --border-radius-md: 20px;
    --border-radius-lg: 30px;
    --border-radius-xl: 40px;
    --border-radius-pill: 50px;

    --transition: all 0.3s ease;
}

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

/* Base Typography */
body {
    font-family: 'Inter', -apple-system, BlinkMacSystemFont, sans-serif;
    line-height: 1.6;
    color: var(--color-text);
    background: var(--color-bg);
}

/* Layout */
.container {
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 2rem;
}

.section {
    padding: 6rem 0;
}

/* Typography */
.section-title {
    font-size: clamp(2.5rem, 5vw, 4rem);
    font-weight: 700;
    text-align: center;
    margin-bottom: 1rem;
    color: var(--color-text);
}

.section-subtitle {
    text-align: center;
    font-size: 1.2rem;
    color: var(--color-text-lighter);
    margin-bottom: 4rem;
    max-width: 600px;
    margin-left: auto;
    margin-right: auto;
}

/* Smooth scrolling */
html {
    scroll-behavior: smooth;
}

/* Responsive Images */
img {
    max-width: 100%;
    height: auto;
}
