@font-face {
    font-family: 'Montserrat';
    src: url('../fonts/Montserrat/Montserrat-Medium.ttf') format('ttf');
    font-weight: 500;
    font-display: swap;
}

@font-face {
    font-family: 'Montserrat';
    src: url('../fonts/Montserrat/Montserrat-Regular.ttf') format('ttf');
    font-weight: 400;
    font-display: swap;
}

@font-face {
    font-family: 'Montserrat';
    src: url('../fonts/Montserrat/Montserrat-Light.ttf') format('ttf');
    font-weight: 300;
    font-display: swap;
}

@font-face {
    font-family: 'Cormorant Garamond';
    src: url('../fonts/Cormorant/CormorantGaramond-Bold.ttf') format('ttf');
    font-weight: 700;
    font-display: swap;
}

@font-face {
    font-family: 'Cormorant Garamond';
    src: url('../fonts/Cormorant/CormorantGaramond-SemiBold.ttf') format('ttf');
    font-weight: 600;
    font-display: swap;
}

@font-face {
    font-family: 'Cormorant Garamond';
    src: url('../fonts/Cormorant/CormorantGaramond-Regular.ttf') format('ttf');
    font-weight: 400;
    font-display: swap;
}

:root {
    --font-serif: 'Cormorant Garamond', serif;
    --font-sans: 'Montserrat', sans-serif;
    --color-primary: #a88b65;
    --color-dark: #1c1917;
}

* {
    scroll-behavior: smooth;
}

body {
    font-family: var(--font-sans);
    background-color: #f5f5f4;
    -webkit-font-smoothing: antialiased;
    -moz-osx-font-smoothing: grayscale;
    overflow-x: hidden;
}

.font-serif {
    font-family: var(--font-serif);
}

.font-body {
    font-family: var(--font-sans);
}

.nav-link::after {
    content: '';
    position: absolute;
    bottom: 0;
    left: 0;
    width: 0;
    height: 1px;
    background-color: var(--color-primary);
    transition: width 0.3s ease-in-out;
}

.nav-link:hover::after {
    width: 100%;
}

.nav-link-active::after {
    width: 100%;
}

.footer-clip-path,
.footer-clip-path-from-dark {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 150px;
    transform: translateY(-99.9%);
}

.footer-clip-path {
    background-color: #f5f5f4;
    clip-path: polygon(0 100%, 100% 100%, 100% 0);
}

.footer-clip-path-from-dark {
    background-color: #292524;
    clip-path: polygon(0 100%, 100% 100%, 100% 0);
}

iframe {
    border: 0;
}

.collections-hero {
    background-image: url('../images/collect-bg.webp');
    background-size: cover;
    background-position: center;
}

.artesano-bg {
    background-image: url('../images/art-bg.webp');
    background-size: cover;
    background-position: center;
}

.gallery {
    columns: 4;
}

@media (max-width: 992px) {
    .gallery {
        columns: 3;
    }
}

@media (max-width: 468px) {
    .small {
        font-size: 0.8rem;
    }

    .footer-clip-path {
        display: none;
    }

    .gallery {
        columns: 2;
    }
}