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


/* CSS Variables */
:root {
    --color-primary: #F5F3F0;
    --color-border: #D4B896;
    --color-text: #333333;
    --color-text-light: #666666;
    --color-white: #ffffff;
    --color-success: #4CAF50;
    --color-error: #f44336;
    --color-info: #2196F3;
    --color-warning: #ff9800;
    
    --font-primary: 'Quicksand', sans-serif;
    --font-heading: 'Barlow Condensed', sans-serif;
    
    --shadow-light: 0 2px 4px rgba(0,0,0,0.1);
    --shadow-medium: 0 4px 6px rgba(0,0,0,0.1);
    --shadow-heavy: 0 10px 25px rgba(0,0,0,0.2);
    
    --border-radius: 4px;
    --border-radius-lg: 8px;
    
    --transition: 0.3s ease;
}

/* Font imports */
@import url('https://fonts.googleapis.com/css2?family=Barlow+Condensed:wght@300;400;500;700&family=Quicksand:wght@300;400;500;600;700&display=swap');

/* Base typography */
body {
    font-family: var(--font-primary);
    background-color: var(--color-primary);
    color: var(--color-text);
    overflow-x: hidden;
    line-height: 1.6;
}

h1, h2, h3, h4, h5, h6 {
    font-family: var(--font-heading);
    line-height: 1.2;
}

/* Utility classes */
.sr-only {
    position: absolute;
    width: 1px;
    height: 1px;
    padding: 0;
    margin: -1px;
    overflow: hidden;
    clip: rect(0, 0, 0, 0);
    white-space: nowrap;
    border: 0;
}

.clearfix::after {
    content: "";
    display: table;
    clear: both;
}

/* Animation keyframes */
@keyframes slideInRight {
    from {
        transform: translateX(100%);
        opacity: 0;
    }
    to {
        transform: translateX(0);
        opacity: 1;
    }
}

@keyframes slideInLeft {
    from {
        transform: translateX(-100%);
        opacity: 0;
    }
    to {
        transform: translateX(0);
        opacity: 1;
    }
}

@keyframes fadeIn {
    from {
        opacity: 0;
    }
    to {
        opacity: 1;
    }
}

@keyframes spin {
    to {
        transform: rotate(360deg);
    }
}