@font-face {
    font-family: 'Satoshi';
    src: url('fonts/Satoshi-Bold.woff2') format('woff2'),
        url('fonts/Satoshi-Bold.woff') format('woff');
    font-weight: bold;
    font-style: normal;
    font-display: swap;
}

@font-face {
    font-family: 'Satoshi';
    src: url('fonts/Satoshi-Medium.woff2') format('woff2'),
        url('fonts/Satoshi-Medium.woff') format('woff');
    font-weight: 500;
    font-style: normal;
    font-display: swap;
}

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

@font-face {
    font-family: 'Ibarra Real Nova';
    src: url('fonts/IbarraRealNova-Italic.woff2') format('woff2'),
        url('fonts/IbarraRealNova-Italic.woff') format('woff');
    font-weight: normal;
    font-style: italic;
    font-display: swap;
}

@font-face {
    font-family: 'Ibarra Real Nova';
    src: url('fonts/IbarraRealNova-Regular.woff2') format('woff2'),
        url('fonts/IbarraRealNova-Regular.woff') format('woff');
    font-weight: normal;
    font-style: normal;
    font-display: swap;
}

h2 {
    font-family: 'Ibarra Real Nova';
    letter-spacing: -3px;
    line-height: 40px;
    font-weight: 400;
    font-size: 32px;
}

a {
    text-decoration: none;
}

.nav-wrapper {
    width: 100%;
}

.logo {
    width: 50%;
}

.navbar-toggler {
    border: none !important;
    box-shadow: none !important; /* treu el glow del focus */
}

/* Icona negra */
.navbar-toggler-icon {
    filter: invert(0) !important;
}


/*.max-width-container {
    max-width: 1280px;
    margin: 0 auto;
}*/

/* Ajustos del menú */
.navbar-nav .nav-link {
    font-family: 'Satoshi';
    font-weight: bold;
    text-transform: uppercase;
    font-size: 12px;
    line-height: 22px;
    letter-spacing: 4px;
    color:#000;
}

.navbar-toggler {
    border: none;
}

.navbar-toggler-icon {
    filter: invert(1); /* fa la icona blanca sobre fons fosc */
}

.text-justify {
    text-align: justify;
}

.creations, .contact {
    background-color: #000;
}

.up-offset {
    margin-top:-230px;
}

.down-offset {
    margin-bottom:-130px;
}

p.legend {
    color: rgba(255,255,255,0.6);
    font-size: 15px;    
}

footer {
    background-color: #000;
}

.list-unstyled .link {
    font-family: 'Satoshi';
    font-weight: 500;
    text-transform: uppercase;
    font-size: 12px;
    line-height: 30px;
    letter-spacing: 2px;
    color:#000;
    text-decoration: none;
}

.back-to-top {
    position: fixed;
    bottom: 20px;
    right: 20px;
    width: 45px;
    height: 45px;
    border-radius: 50%;
    background: white; /* perquè es vegi sobre fons negre */
    color: black;
    display: flex;
    justify-content: center;
    align-items: center;
    font-size: 22px;
    opacity: 0;
    visibility: hidden;
    transition: opacity .3s ease, visibility .3s ease, transform .3s ease;
    transform: translateY(20px);
    z-index: 9999;

    /* Shadow clar i suau */
    box-shadow: 0 4px 12px rgba(0,0,0,0.3);
}

.back-to-top.show {
    opacity: 1;
    visibility: visible;
    transform: translateY(0);
}




@media (min-width: 768px) { /* md */
    h2 {
        font-size: 40px;
    }

    .logo {
        width: 75%;
    }
}

@media (min-width: 992px) { /* lg */
    .nav-wrapper {
        width: auto;
    }

    .logo {
        width: 100%;
    }
}