﻿html {
  font-size: 14px;
}

@media (min-width: 768px) {
  html {
    font-size: 16px;
  }
}

.btn:focus, .btn:active:focus, .btn-link.nav-link:focus, .form-control:focus, .form-check-input:focus {
  box-shadow: 0 0 0 0.1rem white, 0 0 0 0.25rem #258cfb;
}

html {
  position: relative;
  min-height: 100%;
}

body {
    padding-bottom: 60px; /* footer height */
}

/* ── NAVBAR ── */
/*nav {
    background: #2d3142;
    padding: 0 40px;
    display: flex;
    align-items: center;
    justify-content: space-between;
    height: 62px;
    position: sticky;
    top: 0;
    z-index: 100;
    box-shadow: 0 2px 12px rgba(0,0,0,.35);
}
*/
.navbar {
    padding: 8px 16px;
}
.logo {
    font-family: 'Pacifico', cursive;
    color: #fff;
    font-size: 1.6rem;
    letter-spacing: 1px;
    text-decoration: none;
}

.nav-links {
    display: flex;
    gap: 6px;
    list-style: none;
}

    .nav-links a {
        color: #d1d5e0;
        text-decoration: none;
        font-size: .875rem;
        font-weight: 500;
        padding: 6px 12px;
        border-radius: 6px;
        transition: background .2s, color .2s;
    }

        .nav-links a:hover {
            background: rgba(255,255,255,.12);
            color: #fff;
        }




.footer-fixed {
    position: fixed;
    height:60px;
    bottom: 0;
    left: 0;
    width: 100%;
    background: #2D3142; /* dark */
    color: white;
    padding: 10px;
    z-index: 1000;
}