/* ===========================================
   BASE STYLES
   =========================================== */

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

:root {
    --primary: #df6f57;
    --dark: #373737;
    --light: #e3d9d1;
    --accent: #4a9b7f;
    --shadow: 0 10px 30px rgba(0, 0, 0, 0.15);

    /* Extended color palette */
    --orange: #df6f57;
    --beige: #e3d9d1;
    --teal: #4a9b7f;
    --gray: #373737;
}

html {
    scroll-behavior: smooth;
}

body {
    font-family: 'Montserrat', sans-serif;
    overflow-x: hidden;
    background-color: var(--dark);
    transition: all 0.5s ease;
    color: var(--light);
}

/* Reset heading styles */
h1,
h2,
h3,
h4,
h5,
h6 {
    font-family: 'Barlow Condensed', sans-serif;
    font-weight: 900;
    line-height: 1.2;
}