/*---------------------------------------/*
 # SETTINGS
/*---------------------------------------*/
:root {
    --primary-color: #FFCA01;
    --background-color: #121F28;
    --text-color: #D9D9D9;
}
/*---------------------------------------/*
 # GENERIC - BOOTSTRAP
/*---------------------------------------*/

body{
    background-color: var(--background-color);
    color: var(--text-color);
    font-family: 'cabin', sans-serif;
    margin: 0;
    padding: 0;
}

h1, h2, h3, h4, h5, h6 {
    color: var(--primary-color);
}





.card {
    border-radius: 15px;
    box-shadow: 0 4px 8px rgba(0, 0, 0, 0.1);
    transition: transform 0.2s;
    display: flex;              
    flex-direction: column;     
    height: 100%;               

&:hover {
    transform: translateY(-5px);
}
}

.card-img-top {
    border-top-left-radius: 0.9rem;
    border-top-right-radius: 0.9rem;
    object-fit: cover; 
    height: 12.5rem;  
}
/*---------------------------------------/*
 # ELEMENTS
/*---------------------------------------*/

/*---------------------------------------/*
 # OBJECTS
/*---------------------------------------*/

/*---------------------------------------/*
 # COMPONENTS
/*---------------------------------------*/
.c-navbar{
    padding: 10px 20px;
}
.c-navbar__social{
    min-width: 90px;
}

.c-header{
    position: relative;
    height: 660px;
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: center;
    text-align: center;
    color: var(--text-color);
}
.c-header__img{
    object-fit: cover;
    position: absolute;
    top: 20px;
    left: 12px;
    z-index: 0;
    mix-blend-mode: luminosity;
}
.c-header__box{
    position: absolute;
    top: 45%;
    left: 20%;
    transform: translate(-50%, -50%);
    width: 503.18px;
    height: 503.18px;
    background-color: var(--text-color);
    z-index: -1;
}
.c-header__box--accent{
    position: absolute;
    top: 65%;
    left: 30%;
    transform: translate(-50%, -50%);
    width: 503.18px;
    height: 503.18px;
    background-color: var(--primary-color);
    z-index: -2;
}
.c-header__text{
    position: relative;
    z-index: 1;
    max-width: 600px;
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: auto;
    height: 100%;
}



.c-about{
    display: flex;
    flex-direction: column;
    align-items: center;
    text-align: center;
    padding: 20px;
}

.c-about__img{
    width: 50%;
    height: auto;
    object-fit: cover;
    margin-bottom: 20px;
}

/*---------------------------------------/*
 # UTILITIES
/*---------------------------------------*/
