﻿/* ── Font Declarations ── */
@font-face {
    font-family: 'DMSans';
    src: url('/fonts/DMSans-VariableFont_opsz,wght.ttf') format('truetype');
    font-weight: 100 900;
    font-style: normal;
}

@font-face {
    font-family: 'MintGrotesk';
    src: url('/fonts/MintGrotesk-Bold.otf') format('opentype');
    font-weight: 700;
    font-style: normal;
}

@font-face {
    font-family: 'MintGroteskDisplay';
    src: url('/fonts/MintGroteskDisplay-ExtraBold.otf') format('opentype');
    font-weight: 800;
    font-style: normal;
}

@font-face {
    font-family: 'SegoeUI-Light';
    src: url('/fonts/segoe-ui/SegoeUI-Light.woff');
}

/* ── Font Switch Variables ── */
:root {
    /* Change these two lines to switch fonts globally */
    --font-body: 'DMSans', 'Helvetica Neue', Arial, sans-serif;
    --font-heading: 'MintGrotesk', Arial, sans-serif;
    /* Presets you can swap in:
     Body options:
       'DMSans', 'Helvetica Neue', Arial, sans-serif
       'Merriweather', 'Helvetica Neue', Arial, sans-serif
 
     Heading options:
       'MintGrotesk', Arial, sans-serif
       'MintGroteskDisplay', Arial, sans-serif
       'SegoeUI-Light', Arial, sans-serif
  */
}

.mint_grotesk_class {
    font-family: 'MintGrotesk', Arial, sans-serif !important;
}

.mint_grotesk_display_class {
    font-family: 'MintGroteskDisplay', Arial, sans-serif !important;
}

.dm_sans_class {
    font-family: 'DMSans', 'Helvetica Neue', Arial, sans-serif !important;
}

.segoe_light_class {
    font-family: 'SegoeUI-Light', Arial, sans-serif !important;
}

body {
    font-family: var(--font-body) !important;
}

/* Wrapping element */
/* Set some basic padding to keep content from hitting the edges */
.body-content {
    padding-left: 15px;
    padding-right: 15px;
}

/* Carousel */
.carousel-caption p {
    font-size: 20px;
    line-height: 1.4;
}

/* Make .svg files in the carousel display properly in older browsers */
.carousel-inner .item img[src$=".svg"] {
    width: 100%;
}

/* QR code generator */
#qrCode {
    margin: 15px;
}

/* Hide/rearrange for smaller screens */
@media screen and (max-width: 767px) {
    /* Hide captions */
    .carousel-caption {
        display: none;
    }
}

footer {
    position: absolute;
    bottom: 0;
    width: 100%;
}

    footer > .container {
        border-top: 1px solid #ECECEC;
        height: 60px;
        padding: 20px 0;
    }

.navbar-brand {
    padding: 6px 0;
}

    .navbar-brand img {
        height: 40px;
        display: inline-block;
    }