// fonts
@import url('https://fonts.googleapis.com/css2?family=Oswald:wght@200;300;400;500;600;700&family=Playfair+Display:ital,wght@0,400;0,500;0,600;0,700;0,800;0,900;1,400;1,500;1,600;1,700;1,800;1,900&display=swap');
@font-face {
    font-family: 'cellestialregular';
    src: url('../fonts/cellestial-webfont.woff') format('woff');
    font-weight: normal;
    font-style: normal;

}

$oswald-font: 'Oswald', sans-serif;
$playfair-font: 'Playfair Display', serif;
$cellestial-font: 'cellestialregular', serif;

// colors
$gold: #A4956F;
$black: #000000;
$white: #FFFFFF;
$gray: #323E48;
$light-gray: #E3E8F0;

$success: #6dc97c;
$error: #b24d4d;

// colors to loop
$colors: (
    "gold": $gold,
    "black": $black,
    "gray": $gray,
    "light-gray": $light-gray
);

// media queries
$mediaBreakpoints: (
    xxlarge: 1700px,
    xlarge: 1600px,
    mlarge: 1500px,
    large: 1400px,
    normal: 1300px,
    tablette: 1100px,
    smalltab: 1023px,
    mobile: 767px,
);

@mixin mq($breakpoint) {
    @each $breakpoints, $size in $mediaBreakpoints {
        @if $breakpoint==$breakpoints {
            @media screen and (max-width: $size) {
                @content;
            }
        }
    }
}