/* ====================================
   FONTS
==================================== */
@font-face {
    font-family: 'Mainstay';
    src: url('Mainstay.woff2') format('woff2'),
        url('Mainstay.woff') format('woff');
    font-weight: normal;
    font-style: normal;
    font-display: swap;
}

@font-face {
    font-family: 'libel_suit';
    src: url('LibelSuit-Regular.woff2') format('woff2'),
        url('LibelSuit-Regular.woff') format('woff');
    font-weight: normal;
    font-style: normal;
    font-display: swap;
}

/* ====================================
   BASE STYLES (Mobile first)
==================================== */
body {
    margin: 0;
    font-family: 'libel_suit', Arial, sans-serif;
    color: #000;
    box-sizing: border-box !important;
}

html {
    scroll-behavior: smooth;
}

*,
*::before,
*::after {
    box-sizing: border-box !important;
}

a {
    text-decoration: none;
    color: inherit;
}

:root {
    --primary-color: #F4631E;
    --secondary-color: #309898;
    --background-color: #f0f0f0;
    --text-color: #333;
    --border-radius: 15px;
    --box-shadow: 0 2px 5px rgba(0, 0, 0, 0.1);
    --font-family: 'Mainstay', Arial, sans-serif;
    --border-radius-large: 20px;
    --primary-bg-color: rgba(244, 99, 30, 0.33);
    --color-green-100: oklch(96.2% 0.044 156.743);
    --color-green-200: oklch(96.2% 0.044 156.743);
    --color-green-300: oklch(96.2% 0.044 156.743);
    --color-gray-100: oklch(96.2% 0.044 156.743);
}

a.go_to_link {
    color: var(--secondary-color);
    font-weight: bold;
    text-decoration: none;
    font-size: 1.4rem;
    display: inline-block;
    margin: 0 20px;
    padding: 10px 20px;
    border: 2px solid var(--secondary-color);
    border-radius: var(--border-radius);
}

ul {
    padding: 0;
    margin: 0;
}

li {
    list-style: none;
}

.flexing {
    display: flex;
    flex-wrap: wrap;
    justify-content: center;
    align-items: center;
    gap: 20px;
}

.flash-messages .success-message {

    background-color: white;
    color: var(--secondary-color);
    padding: 10px;
    border-radius: var(--border-radius);
    border: 2px solid var(--secondary-color);
    margin-bottom: 20px;
    max-width: 500px;
    text-align: center;
    width: 80%;
    margin: auto;
}

.flash-messages .error-message {
    background-color: white;
    color: var(--primary-color);
    padding: 10px;
    border-radius: var(--border-radius);
    border: 2px solid var(--primary-color);
    margin-bottom: 20px;
    max-width: 500px;
    text-align: center;
    width: 80%;
    margin: auto;
}

.flash-messages{
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    gap: 25px;

}


.flash-messages .info-message {
    background-color: white;
    color: var(--text-color);
    padding: 10px;
    border-radius: var(--border-radius);
    border: 2px solid var(--text-color);
    margin-bottom: 20px;
    max-width: 500px;
    text-align: center;
    width: 80%;
    margin: auto;
}

.container {
    width: 100%;
    max-width: 1200px;
    margin: 0 auto;
    padding: 20px;
}