@import url('https://fonts.googleapis.com/css2?family=Outfit:wght@300;400;600;700&display=swap');

:root {
    /* Color Palette - Bright and Professional */
    --clr-bg: #f8fafc;
    --clr-surface: #ffffff;
    --clr-primary: #2563eb; /* Royal Blue */
    --clr-accent: #0ea5e9;  /* Sky Blue */
    --clr-text-main: #1e293b;
    --clr-text-muted: #64748b;
    --clr-border: #e2e8f0;
    
    /* Spacing & Sizing */
    --space-sm: 1rem;
    --space-md: 2rem;
    --space-lg: 4rem;
    --max-width: 1100px;
    
    /* Shadows */
    --shadow-sm: 0 1px 3px rgba(0,0,0,0.1);
    --shadow-md: 0 4px 6px -1px rgba(0,0,0,0.1), 0 2px 4px -1px rgba(0,0,0,0.06);
    --shadow-lg: 0 10px 15px -3px rgba(0,0,0,0.1);
}

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

html {
    scroll-behavior: smooth;
}

body {
    font-family: 'Outfit', sans-serif;
    background-color: var(--clr-bg);
    color: var(--clr-text-main);
    line-height: 1.6;
    overflow-x: hidden;
}

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

a {
    text-decoration: none;
    color: inherit;
    transition: 0.3s ease;
}

ul {
    list-style: none;
}

img {
    max-width: 100%;
    display: block;
}

.container {
    max-width: var(--max-width);
    margin: 0 auto;
    padding: 0 var(--space-sm);
}

section {
    padding: var(--space-lg) 0;
}

.btn {
    display: inline-block;
    padding: 0.8rem 1.5rem;
    background-color: var(--clr-primary);
    color: white;
    border-radius: 8px;
    font-weight: 600;
    transition: 0.3s transform, 0.3s background-color;
    cursor: pointer;
}

.btn:hover {
    background-color: var(--clr-accent);
    transform: translateY(-2px);
}

/* Animations */
@keyframes fadeInUp {
    from {
        opacity: 0;
        transform: translateY(20px);
    }
    to {
        opacity: 1;
        transform: translateY(0);
    }
}

.reveal {
    animation: fadeInUp 0.8s ease forwards;
}

@keyframes bounce {
    0%, 20%, 50%, 80%, 100% {transform: translateX(-50%) translateY(0);}
    40% {transform: translateX(-50%) translateY(-10px);}
    60% {transform: translateX(-50%) translateY(-5px);}
}
