:root {
    --bright-amber: #ffcb00;
    --carrot-orange: #f39308;
    --parchment: #f0ebe5;
    --dim-grey: #666666;
    --toasted-almond: #e8985e;
    
    /* Semantic Colors */
    --primary-color: var(--carrot-orange);
    --secondary-color: var(--toasted-almond);
    --accent-color: var(--bright-amber);
    --bg-color: var(--parchment);
    --header-color: var(--dim-grey);

    /* Glassmorphism & UI */
    --text-dark: #2c2c2c;
    --glass-bg: rgba(255, 255, 255, 0.6);
    --glass-border: rgba(255, 255, 255, 0.4);
}

/* Global Styles */
* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
    font-family: 'Montserrat', sans-serif;
}

body {
    background: var(--bg-color);
    background-image: url('/static/bg.png');
    background-size: cover;
    background-position: center;
    background-attachment: fixed;
    min-height: 100vh;
    display: flex;
    flex-direction: column;
    justify-content: flex-start;
    color: var(--text-dark);
    margin: 0;
}

/* Typography */
h1, h2, h3, h4, h5, h6 {
    color: var(--header-color) !important;
}

/* Shared Components */
.premium-card {
    background: var(--glass-bg);
    backdrop-filter: blur(25px);
    -webkit-backdrop-filter: blur(25px);
    border: 1px solid var(--glass-border);
    border-radius: 40px;
    width: 100%;
    text-align: center;
    box-shadow: 0 40px 100px -20px rgba(0, 0, 0, 0.1);
    animation: slideUp 1s cubic-bezier(0.16, 1, 0.3, 1);
    display: flex;
    flex-direction: column;
    align-items: center;
}

.container-wrapper {
    position: relative;
    z-index: 2;
    width: 100%;
    display: flex;
    justify-content: center;
    padding: 40px 20px;
    margin: auto 0;
}

/* Accent Shapes Background */
.accent-shapes {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    z-index: 1;
    overflow: hidden;
    pointer-events: none;
}

.accent-shapes div {
    position: absolute;
    border-radius: 50%;
    filter: blur(80px);
    opacity: 0.4;
}

.shape-1 {
    width: 400px;
    height: 400px;
    background: var(--bright-amber);
    top: -150px;
    left: -150px;
    animation: float 15s infinite alternate;
}

.shape-2 {
    width: 500px;
    height: 500px;
    background: var(--toasted-almond);
    bottom: -200px;
    right: -150px;
    animation: float 20s infinite alternate-reverse;
}

/* Shared Animations */
@keyframes slideUp {
    from {
        opacity: 0;
        transform: translateY(40px);
    }
    to {
        opacity: 1;
        transform: translateY(0);
    }
}

@keyframes float {
    from { transform: translate(0, 0) rotate(0deg); }
    to { transform: translate(50px, 50px) rotate(30deg); }
}



/* #region BUTTONS */

.outlined-button {
    --main-color: var(--carrot-orange);
    --main-color-hover: white;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    gap: 0.6rem;
    padding: 0.7rem 2.5rem;
    background-color: transparent;
    color: var(--main-color);
    border: 2px solid var(--main-color);
    border-radius: 8px;
    font-weight: 600;
    font-family: 'Montserrat', sans-serif;
    cursor: pointer;
    transition: all 0.3s cubic-bezier(0.4, 0, 0.2, 1);
    white-space: nowrap;
    line-height: 1.2;

    & svg {
        fill: var(--main-color);
        transition: all 0.3s cubic-bezier(0.4, 0, 0.2, 1);
    }

    &:hover {
        background-color: var(--main-color);
        color: var(--main-color-hover);
        box-shadow: 0 4px 15px rgba(243, 147, 8, 0.25);
        transform: translateY(-1px);

        & svg {
            fill: var(--main-color-hover);
        }

    }    

    &:active {
        transform: translateY(1px) scale(0.98);
        & svg {
            fill: var(--main-color-hover);
        }   
    }

    &.blue {
        --main-color: #0298dd;
        --main-color-hover: white;
    }
    &.success {
        --main-color: #27ae60;
        --main-color-hover: white;
    }
    &.red {
        --main-color: #e74c3c;
        --main-color-hover: white;
    }
    &.orange {
        --main-color: #f39308;
        --main-color-hover: white;
    }
    &.purple {
        --main-color: #9b59b6;
        --main-color-hover: white;
    }
    &.pink {
        --main-color: #e91e63;
        --main-color-hover: white;
    }
    &.teal {
        --main-color: #009688;
        --main-color-hover: white;
    }
    &.yellow {
        --main-color: #f1c40f;
        --main-color-hover: white;
    }
    &.gray {
        --main-color: #95a5a6;
        --main-color-hover: white;
    }

}


/* #endregion BUTTONS */