/*
|--------------------------------------------------------------------------
| Global Styles
|--------------------------------------------------------------------------
*/

*,
*::before,
*::after {
    box-sizing: border-box;
}

html {

    scroll-behavior: smooth;

}

body {

    margin: 0;

    font-family: "Inter", Arial, sans-serif;

    font-size: 16px;

    line-height: 1.6;

    color: #1f2937;

    background: #ffffff;

    overflow-x: hidden;

}


/*
|--------------------------------------------------------------------------
| Typography
|--------------------------------------------------------------------------
*/

h1,
h2,
h3,
h4,
h5,
h6 {

    margin-top: 0;

    margin-bottom: 1rem;

    font-weight: 700;

    line-height: 1.2;

}

h1 {

    font-size: clamp(2.5rem, 5vw, 4.5rem);

}

h2 {

    font-size: clamp(2rem, 4vw, 3rem);

}

h3 {

    font-size: clamp(1.5rem, 3vw, 2rem);

}

p {

    margin-top: 0;

    margin-bottom: 1rem;

    color: #6b7280;

}

a {

    color: inherit;

    text-decoration: none;

}

img {

    display: block;

    max-width: 100%;

    height: auto;

}

/*
|--------------------------------------------------------------------------
| Sections
|--------------------------------------------------------------------------
*/

section {

    padding: 6rem 0;

    position: relative;

}

/*
|--------------------------------------------------------------------------
| Containers
|--------------------------------------------------------------------------
*/

.container {
    
    max-width: 1500px;

    margin: 0 auto;

    padding-left: 1.5rem;

    padding-right: 1.5rem;

}

/*
|--------------------------------------------------------------------------
| Buttons
|--------------------------------------------------------------------------
*/

.btn {

    display: inline-flex;

    align-items: center;

    justify-content: center;

    gap: .5rem;

    padding: .9rem 2rem;

    border-radius: 999px;

    font-weight: 600;

    transition: all .3s ease;

    cursor: pointer;

}

.btn-primary {

    background: #2563eb;

    color: #ffffff;

}

.btn-primary:hover {

    background: #1d4ed8;

    transform: translateY(-2px);

}

.btn-outline {

    border: 2px solid #2563eb;

    color: #2563eb;

}

.btn-outline:hover {

    background: #2563eb;

    color: #ffffff;

}

/*
|--------------------------------------------------------------------------
| Utilities
|--------------------------------------------------------------------------
*/

.text-center {

    text-align: center;

}

.text-white {

    color: #ffffff;

}

.bg-dark {

    background: #111827;

}

.rounded {

    border-radius: 1rem;

}

.shadow {

    box-shadow: 0 20px 50px rgba(0,0,0,.12);

}

/*
|--------------------------------------------------------------------------
| Brand Colors
|--------------------------------------------------------------------------
*/

:root {

 /*--------------------------------------------------------------
    Brand Colors
    --------------------------------------------------------------*/
    --color-primary: #C69214;

    --color-primary-dark: #AA7E11;

    --color-navy: #0F172A;

    --color-white: #FFFFFF;

    --color-text: #334155;

    --border-radius: 12px;

    --transition: .25s ease;

    /*--------------------------------------------------------------
    Layout
    --------------------------------------------------------------*/

    --border-radius: 12px;

    --transition: .25s ease;

    /*--------------------------------------------------------------
    Spacing
    --------------------------------------------------------------*/

    --space-xs: 1rem;

    --space-sm: 2rem;

    --space-md: 4rem;

    --space-lg: 6rem;

    --space-xl: 8rem;
    

}