/* GLOBAL STYLE SHEET */

/* Set default theme */

:root {
    --theme-primary: #fe019a;
    --theme-secondary: #eaeced;    
    --theme-font-light: #f1f1f1;
    --theme-font-dark: #212121;
}

/* Load fonts */

@font-face {
    font-family: 'AlternateFont';
    src: url('../fonts/spray.otf') format('opentype');
    font-weight: normal;
    font-style: normal;
}

/* General styles */

body {
    font-family: "Montserrat", sans-serif;
    font-size: 16px;
    color: var(--theme-font-dark);
    background-color: var(--theme-primary);
    letter-spacing: 0.3px;
}

h1, h2 {
    font-family: 'AlternateFont';    
    color: var(--theme-primary);
    text-transform: uppercase;
    margin-bottom: 15px;
    letter-spacing: 3px;
    white-space: nowrap;
}

h1 i, h2 i {
    margin-right: -5px;
}

a, a:link, a:active, a:visited, a:hover {
    color: var(--theme-primary);
    text-decoration: none;
}

/* Content styles */

.color-primary {
    color: var(--theme-primary);
}

.color-secondary {
    color: var(--theme-secondary);
}

.bg-color-primary {
    background-color: var(--theme-primary);
}

.bg-color-secondary {
    background-color: var(--theme-secondary);
}

/* Bootstrap reset styles */

.btn-custom {    
    color: var(--theme-font-light) !important;
    background-color: var(--theme-primary) !important;
    border: 1px solid var(--theme-primary) !important;  
    padding: 15px 25px !important;
    min-width: 125px !important;       
}

.btn-outline-primary {
    --bs-btn-color: var(--theme-primary);
    --bs-btn-border-color: var(--theme-primary);
    --bs-btn-hover-bg: var(--theme-primary);
    --bs-btn-hover-border-color: var(--theme-primary);
    --bs-btn-hover-color: var(--theme-font-light);
}

.form-control:focus {
    border-width: 2px;
    border-color: var(--theme-primary);
    box-shadow: 0 0 0 0.2rem rgba(108, 117, 125, 0.25);
}

/* Responsive styles */

@media (max-width: 768px) {
    h1, h2 {
        display: flex;
        align-items: center;
        justify-content: center;
    }
}
