body.font-oldenglish h1,
body.font-oldenglish h2,
body.font-oldenglish h3,
body.font-oldenglish .logo,
body.font-oldenglish .event-card,
body.font-oldenglish .main-nav a,
body.font-oldenglish .year-number {
    font-family: 'Old English Five', serif !important;
}

body.font-modern h1,
body.font-modern h2,
body.font-modern h3,
body.font-modern .logo,
body.font-modern .event-card,
body.font-modern .main-nav a,
body.font-modern .year-number {
    font-family: "Roboto", sans-serif !important;
}

/* ========== RESET & GRUNDLAYOUT ========== */
* {
    box-sizing: border-box;
    margin: 0;
    padding: 0;
}

html,
body {
    height: 100%;
}

body {
    display: flex;
    flex-direction: column;
    min-height: 100vh;

    /* Fallback-Farbe + Bild in einem Block */
    background-color: #000;
    background-image: url("../img/background.png");
    background-size: cover;
    background-position: center;
    background-repeat: no-repeat;

    position: relative;
    color: #f5f5f5;
    font-family: "Roboto", system-ui, -apple-system, BlinkMacSystemFont, "Segoe UI", sans-serif;
}

/* Dunkel-Overlay + Vignette (über dem BG, unter dem Inhalt) */
body::before {
    content: "";
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    pointer-events: none;

    background: rgba(0, 0, 0, 0.45);
    box-shadow: inset 0 0 250px 120px rgba(0, 0, 0, 0.65);

    z-index: -1;
}

@media (max-width: 700px) {
    body::before {
        /* weniger heftig auf Mobile */
        box-shadow: inset 0 0 120px 60px rgba(0, 0, 0, 0.65);
        background: rgba(0, 0, 0, 0.35);
        backdrop-filter: none;
        -webkit-backdrop-filter: none;
    }

    .site-main {
        padding: 1.2rem 1rem 2rem;
    }
}

/* Inhalt über das Overlay */
.site-header,
.site-main,
.site-footer {
    position: relative;
    z-index: 1;
}


/* Inhalt über das Overlay */
.site-header,
.site-main,
.site-footer {
    position: relative;
    z-index: 1;
}

/* ========== TYPOGRAFIE ========== */
h1,
h2,
h3 {
    font-family: "Old English Five", serif;
    letter-spacing: 1px;
    color: #ffffff;
}

h1 {
    font-size: 2.3rem;
    margin-bottom: 0.8rem;
}

h2 {
    font-size: 1.9rem;
    margin-bottom: 0.6rem;
}

h3 {
    font-size: 1.4rem;
    margin-bottom: 0.4rem;
}

p,
li {
    font-size: 0.98rem;
    line-height: 1.6;
}

/* ========== HEADER / NAVIGATION ========== */
/* Header Asphalt Look */
.site-header {
    background: 
        linear-gradient(135deg, #0b0b0b, #1a1a1a 70%),
        url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' width='60' height='60' viewBox='0 0 60 60'%3E%3Crect width='60' height='60' fill='rgba(0,0,0,0)'/%3E%3Ccircle cx='2' cy='2' r='1' fill='rgba(255,255,255,0.04)'/%3E%3Ccircle cx='20' cy='10' r='1' fill='rgba(255,255,255,0.05)'/%3E%3Ccircle cx='50' cy='30' r='1' fill='rgba(255,255,255,0.03)'/%3E%3Ccircle cx='30' cy='50' r='1' fill='rgba(255,255,255,0.04)'/%3E%3C/svg%3E");
    background-blend-mode: overlay;
    border-bottom: 1px solid #333;
    backdrop-filter: blur(6px);
    box-shadow: 0 4px 15px rgba(0,0,0,0.6);

    /* bleibt fix am Bildrand */
    position: relative;
    z-index: 10;
}

.header-inner {
    max-width: 1900px;
    margin: 0 auto;
    padding: 0.7rem 1.2rem;
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 1.5rem;
}
@media (min-width: 801px) {
    .header-inner {
        flex-direction: column;
        align-items: center;
        justify-content: center;
        gap: 0.4rem;
    }

    .main-nav {
        margin-top: 0.3rem;
    }

    .main-nav ul {
        justify-content: center;
    }

    /* Burger auf Desktop ausblenden (Sicherheitshalber) */
    .nav-toggle {
        display: none !important;
    }
}

/* Logo-Bereich */
/* Logo IMMER Old-English */
.logo,
.logo * {
    font-family: 'Old English Five', serif !important;
    color: #fff;
    letter-spacing: 0.5px;
}

.logo span:first-child {
    font-size: 1.6rem;
    line-height: 1.1;
}

.logo-sub {
    font-size: 0.95rem;
    margin-top: -2px;
}



/* Navigation */
.main-nav ul {
    list-style: none;
    display: flex;
    flex-wrap: wrap;
    gap: 0.6rem;
    justify-content: flex-end;
}

.main-nav a {
    position: relative;
    display: inline-block;
    padding: 0.35rem 0.8rem;
    text-decoration: none;
    color: #f5f5f5;
    font-size: 0.9rem;
    letter-spacing: 0.08em;
    font-weight: 500;
    transition: color 0.2s ease;
}

.main-nav a::after {
    content: "";
    position: absolute;
    left: 0.8rem;
    right: 0.8rem;
    bottom: 0.15rem;
    height: 1px;
    background: #f5f5f5;
    transform: scaleX(0);
    transform-origin: center;
    transition: transform 0.2s ease;
}

.main-nav a:hover {
    color: #ffffff;
}

.main-nav a:hover::after {
    transform: scaleX(1);
}

/* ========== HAUPTBEREICH / LAYOUT ========== */
.site-main {
    flex: 1;
    width: 100%;
    max-width: 1100px;
    margin: 0 auto;
    padding: 1.5rem 1.2rem 2rem;
}

/* Sektionen / Content-Boxen */
.section {
    background: rgba(10, 10, 10, 0.92);
    border-radius: 12px;
    border: 1px solid #262626;
    padding: 1.5rem 1.4rem;
    margin-bottom: 1.4rem;
    box-shadow:
        0 18px 35px rgba(0, 0, 0, 0.85),
        0 0 0 1px rgba(255, 255, 255, 0.02);
}

.section p {
    margin-bottom: 0.7rem;
}

/* Kleine Unterzeile für H1, wenn du magst */
.section-header-sub {
    font-size: 0.9rem;
    text-transform: uppercase;
    letter-spacing: 0.15em;
    opacity: 0.7;
    margin-bottom: 0.3rem;
}

/* ========== STARTSEITE: KACHELN ========== */
.info-grid {
    display: grid;
    gap: 1rem;
    grid-template-columns: repeat(auto-fit, minmax(220px, 1fr));
    margin-top: 0.8rem;
}

.info-box {
    display: block;
    padding: 1rem 1rem;
    border-radius: 10px;
    background: linear-gradient(145deg, #151515, #090909);
    border: 1px solid #2b2b2b;
    text-decoration: none;
    color: #f5f5f5;
    box-shadow: 0 14px 24px rgba(0, 0, 0, 0.8);
    transition:
        transform 0.18s ease,
        box-shadow 0.18s ease,
        border-color 0.18s ease,
        background 0.18s ease;
}

.info-box h3 {
    margin-bottom: 0.35rem;
}

.info-box p {
    margin: 0;
    font-size: 0.9rem;
    opacity: 0.9;
}

.info-box:hover {
    transform: translateY(-4px);
    box-shadow: 0 18px 32px rgba(0, 0, 0, 0.9);
    border-color: #555;
}

/* ========== GALERIE ========== */
.gallery-grid {
    display: grid;
    grid-template-columns: repeat(auto-fill, minmax(160px, 1fr));
    gap: 0.9rem;
    margin-top: 0.5rem;
}

.gallery-img {
    width: 100%;
    display: block;
    border-radius: 8px;
    border: 1px solid #444;
    object-fit: cover;
    transition: transform 0.2s ease, box-shadow 0.2s ease, border-color 0.2s ease;
}

.gallery-img:hover {
    transform: translateY(-3px) scale(1.02);
    border-color: #777;
    box-shadow: 0 12px 22px rgba(0, 0, 0, 0.9);
}

/* ========== GÄSTEBUCH ========== */
.gb-form {
    margin-bottom: 1.2rem;
    display: grid;
    gap: 0.75rem;
}

.gb-form input[type="text"],
.gb-form textarea {
    width: 100%;
    padding: 0.55rem 0.7rem;
    border-radius: 8px;
    border: 1px solid #333;
    background: #050505;
    color: #f5f5f5;
    font-family: inherit;
    font-size: 0.95rem;
}

.gb-form input[type="text"]:focus,
.gb-form textarea:focus {
    outline: none;
    border-color: #777;
}

.gb-form button,
.btn {
    display: inline-block;
    padding: 0.55rem 1.3rem;
    border-radius: 999px;
    border: 1px solid #f5f5f5;
    background: transparent;
    color: #f5f5f5;
    text-transform: uppercase;
    letter-spacing: 0.12em;
    font-size: 0.8rem;
    font-weight: 500;
    cursor: pointer;
    transition:
        background 0.18s ease,
        color 0.18s ease,
        transform 0.1s ease;
}
.font-toggle {
    background: #000;
    border: 1px solid #666;
    border-radius: 999px;
    width: 40px;
    height: 34px;
    margin-right: 0.4rem;
    cursor: pointer;

    display: inline-flex;
    align-items: center;
    justify-content: center;

    color: #fff;
    font-size: 1.1rem;

    transition: background 0.2s ease, border-color 0.2s ease;
}

.font-toggle:hover {
    background: #111;
    border-color: #aaa;
}

.gb-form button:hover,
.btn:hover {
    background: #f5f5f5;
    color: #000;
    transform: translateY(-1px);
}

.gb-entry {
    background: #0d0d0d;
    padding: 0.7rem 0.8rem;
    border-radius: 10px;
    margin-bottom: 0.7rem;
    border: 1px solid #252525;
}

.gb-entry strong {
    font-weight: 500;
}

.gb-entry .gb-date {
    font-size: 0.8rem;
    opacity: 0.7;
}

/* ========== HISTORY-SEITE (Geschichte) ========== */
.history h2 {
    margin-top: 1.3rem;
    font-size: 1.8rem;
    border-bottom: 1px solid #333;
    padding-bottom: 0.15rem;
}

.history h3 {
    margin-top: 0.9rem;
    font-size: 1.4rem;
}

.history p {
    margin-bottom: 0.7rem;
}

.history ul {
    margin: 0.7rem 0 1rem 1.3rem;
    list-style: square;
}

.history li {
    margin-bottom: 0.25rem;
}

.history-highlight {
    margin: 0.7rem 0 1rem;
    padding: 0.8rem 0.9rem;
    border-radius: 10px;
    background: #151515;
    border: 1px solid #333;
    font-style: italic;
}

/* ========== FOOTER ========== */
.site-footer {
    background: 
        linear-gradient(135deg, #0b0b0b, #1a1a1a 70%),
        url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' width='60' height='60' viewBox='0 0 60 60'%3E%3Crect width='60' height='60' fill='rgba(0,0,0,0)'/%3E%3Ccircle cx='2' cy='2' r='1' fill='rgba(255,255,255,0.04)'/%3E%3Ccircle cx='20' cy='10' r='1' fill='rgba(255,255,255,0.05)'/%3E%3Ccircle cx='50' cy='30' r='1' fill='rgba(255,255,255,0.03)'/%3E%3Ccircle cx='30' cy='50' r='1' fill='rgba(255,255,255,0.04)'/%3E%3C/svg%3E");
    background-blend-mode: overlay;

    border-top: 1px solid #333;
    color: #aaa;
    text-align: center;
    padding: 1rem;

    box-shadow: 0 -4px 15px rgba(0,0,0,0.6);
}

/* ========== RESPONSIVE ========== */
@media (max-width: 800px) {
    .header-inner {
        flex-direction: row;
        align-items: center;
        gap: 0.8rem;
    }

    /* Burger auf Handy anzeigen */
    .nav-toggle {
        display: inline-flex;
    }

    /* Mobile-Navi als Dropdown */
    .main-nav {
        position: absolute;
        left: 0;
        right: 0;
        top: 100%;
        background:
            linear-gradient(135deg, #0b0b0b, #1a1a1a 70%),
            url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' width='60' height='60' viewBox='0 0 60 60'%3E%3Crect width='60' height='60' fill='rgba(0,0,0,0)'/%3E%3Ccircle cx='2' cy='2' r='1' fill='rgba(255,255,255,0.04)'/%3E%3Ccircle cx='20' cy='10' r='1' fill='rgba(255,255,255,0.05)'/%3E%3Ccircle cx='50' cy='30' r='1' fill='rgba(255,255,255,0.03)'/%3E%3Ccircle cx='30' cy='50' r='1' fill='rgba(255,255,255,0.04)'/%3E%3C/svg%3E");
        background-blend-mode: overlay;
        border-bottom: 1px solid #333;
        box-shadow: 0 8px 18px rgba(0,0,0,0.8);

        max-height: 0;
        overflow: hidden;
        opacity: 0;
        transition: max-height 0.2s ease, opacity 0.2s ease;

        z-index: 9;
    }

    .main-nav ul {
        flex-direction: column;
        align-items: flex-start;
        gap: 0;
        padding: 0.5rem 1rem 0.8rem;
    }

    .main-nav li {
        width: 100%;
    }

    .main-nav a {
        display: block;
        width: 100%;
        padding: 0.5rem 0;
    }

    /* Wenn Burger geklickt → Menü sichtbar */
    body.nav-open .main-nav {
        max-height: 400px;
        opacity: 1;
    }

    .site-main {
        padding: 1.2rem 1rem 2rem;
    }
}



@media (max-width: 480px) {
    h1 {
        font-size: 1.9rem;
    }

    h2 {
        font-size: 1.6rem;
    }

    .logo span:first-child {
        font-size: 1.4rem;
    }
}

/* Jahresübersicht – große Cards */
.gallery-years-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(190px, 1fr));
    gap: 1.1rem;
    margin-top: 1.1rem;
}

.year-card {
    position: relative;
    display: block;
    text-decoration: none;
    color: #f5f5f5;
    border-radius: 14px;
    overflow: hidden;
    min-height: 170px;
    background: radial-gradient(circle at top, #222 0, #0a0a0a 60%, #000 100%);
    border: 1px solid #333;
    box-shadow: 0 18px 32px rgba(0, 0, 0, 0.9);
    transition:
        transform 0.18s ease,
        box-shadow 0.18s ease,
        border-color 0.18s ease,
        background 0.18s ease;
}

.year-card-inner {
    position: relative;
    height: 100%;
    padding: 1.2rem 1.1rem;
    display: flex;
    flex-direction: column;
    justify-content: space-between;
}

/* kleiner Text über der Jahreszahl */
.year-label {
    font-size: 0.8rem;
    text-transform: uppercase;
    letter-spacing: 0.18em;
    opacity: 0.7;
}

/* große Jahreszahl */
.year-number {
    font-family: "Old English Five", serif;
    font-size: 2.6rem;
    line-height: 1;
}

/* Lichtreflex oben rechts */
.year-card::before {
    content: "";
    position: absolute;
    inset: 0;
    background: radial-gradient(circle at top right, rgba(255, 255, 255, 0.12), transparent 55%);
    opacity: 0;
    transition: opacity 0.2s ease;
}

.year-card:hover {
    transform: translateY(-5px);
    box-shadow: 0 22px 40px rgba(0, 0, 0, 0.95);
    border-color: #555;
}

.year-card:hover::before {
    opacity: 1;
}

/* aktive Jahreskarte (wenn gewählt) */
.year-card-active {
    border-color: #777;
}

/* Abstand zwischen einzelnen Event-Blöcken */
.gallery-event-block {
    margin-top: 1.2rem;
}
/* Social Media Icons im Footer */
.footer-social {
    display: flex;
    justify-content: center;
    gap: 1.2rem;
    margin-bottom: 0.6rem;
}

.footer-social i {
    display: inline-block;
    font-size: 1.6rem;      /* Größe der Icons */
    color: #aaa;
    transition: color 0.25s ease, transform 0.2s ease, text-shadow 0.2s ease;
}

.footer-social i:hover {
    color: #fff;
    transform: translateY(-3px);
    text-shadow: 0 0 8px rgba(255,255,255,0.6);
}

/* Event-Übersicht (Unterordner) */
.event-card-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(220px, 1fr));
    gap: 1rem;
    margin-top: 1rem;
}

.event-card {
    display: block;
    text-decoration: none;
    font-family: "Old English Five", serif;
    color: #f5f5f5;
    border-radius: 10px;
    background: linear-gradient(145deg, #151515, #090909);
    border: 1px solid #2b2b2b;
    box-shadow: 0 14px 24px rgba(0, 0, 0, 0.8);
    transition:
        transform 0.18s ease,
        box-shadow 0.18s ease,
        border-color 0.18s ease,
        background 0.18s ease;
}

.event-card-inner {
    padding: 1rem 1rem;
}

.event-label {
    font-size: 0.75rem;
    letter-spacing: 0.16em;
    opacity: 0.7;
    display: block;
    margin-bottom: 0.3rem;
}

.event-title {
    font-size: 1.1rem;
    font-weight: 500;
}

.event-card:hover {
    transform: translateY(-4px);
    box-shadow: 0 18px 32px rgba(0, 0, 0, 0.9);
    border-color: #555;
}

/* Zurück-Button */
.btn-back {
    display: inline-block;
    margin-bottom: 0.8rem;
    padding: 0.45rem 0.9rem;
    border-radius: 999px;
    border: 1px solid #666;
    text-decoration: none;
    color: #f5f5f5;
    font-size: 0.85rem;
    letter-spacing: 0.08em;
    text-transform: uppercase;
    transition: background 0.18s ease, color 0.18s ease, border-color 0.18s ease;
}

.btn-back:hover {
    background: #f5f5f5;
    color: #000;
    border-color: #fff;
}

/* Bild-Viewer */
.gallery-viewer {
    display: flex;
    align-items: center;
    gap: 0.8rem;
    margin-top: 1rem;
    margin-bottom: 0.8rem;
}

.viewer-image-wrapper {
    flex: 1;
    max-height: 60vh;
    display: flex;
    align-items: center;
    justify-content: center;
    overflow: hidden;
    border-radius: 10px;
    border: 1px solid #333;
    background: #050505;
}

.viewer-main-image {
    max-width: 100%;
    max-height: 60vh;
    object-fit: contain;
}

.viewer-nav {
    background: transparent;
    border: 1px solid #555;
    border-radius: 999px;
    width: 36px;
    height: 36px;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    cursor: pointer;
    color: #f5f5f5;
    transition: background 0.18s ease, transform 0.1s ease, border-color 0.18s ease;
}

.viewer-nav i {
    font-size: 1.1rem;
}

.viewer-nav:hover {
    background: #f5f5f5;
    color: #000;
    border-color: #fff;
    transform: translateY(-1px);
}

/* Filmstreifen */
.gallery-filmstrip {
    display: flex;
    gap: 0.5rem;
    margin-top: 0.5rem;
    overflow-x: auto;
    padding-bottom: 0.2rem;
}

.filmstrip-thumb {
    height: 64px;
    border-radius: 6px;
    border: 1px solid #444;
    cursor: pointer;
    object-fit: cover;
    flex-shrink: 0;
    opacity: 0.7;
    transition: opacity 0.18s ease, transform 0.18s ease, border-color 0.18s ease;
}

.filmstrip-thumb:hover {
    opacity: 1;
    transform: translateY(-2px);
    border-color: #777;
}

.filmstrip-thumb.active {
    opacity: 1;
    border-color: #fff;
}

/* Mobile-Optimierung Viewer */
@media (max-width: 700px) {
    .gallery-viewer {
        flex-direction: column;
    }

    .viewer-nav {
        width: 40px;
        height: 32px;
    }

    .gallery-filmstrip {
        gap: 0.4rem;
    }

    .filmstrip-thumb {
        height: 56px;
    }
}
/* Burger-Button (standardmäßig versteckt, nur Mobile) */
.nav-toggle {
    display: none;
    background: #000; /* Schwarz */
    border: 1px solid #666;
    border-radius: 999px;
    width: 40px;
    height: 34px;
    padding: 0;
    margin-left: auto;
    cursor: pointer;

    align-items: center;
    justify-content: center;
    gap: 4px;

    transition: transform 0.1s ease, border-color 0.2s ease;
}


.nav-toggle-bar {
    width: 18px;
    height: 2px;
    background: #fff; /* IMMER weiß */
    transition: transform 0.2s ease, opacity 0.2s ease;
}


/* Animation für "X"-Icon, wenn geöffnet */
body.nav-open .nav-toggle {
    background: #000;     /* nicht weiß */
    border-color: #fff;   /* optional */
}

body.nav-open .nav-toggle-bar {
    background: #fff;     /* NICHT schwarz */
}

body.nav-open .nav-toggle-bar:nth-child(1) {
    transform: translateY(6px) rotate(45deg);
}

body.nav-open .nav-toggle-bar:nth-child(2) {
    opacity: 0;
}

body.nav-open .nav-toggle-bar:nth-child(3) {
    transform: translateY(-6px) rotate(-45deg);
}
@media (max-width: 800px) {
    .nav-toggle {
        display: inline-flex !important;
    }
}
.map-wrapper {
    margin-top: 15px;
    border-radius: 12px;
    overflow: hidden;
}

.maps-link {
    display: inline-block;
    margin-bottom: 10px;
    font-weight: 600;
    text-decoration: none;
}

.maps-link:hover {
    text-decoration: underline;
}
.maps-link {
    display: inline-block;
    padding: 10px 18px;
    background: #2c7be5;
    color: #fff;
    text-decoration: none;
    border-radius: 6px;
    font-weight: 600;
    transition: background 0.2s ease, transform 0.1s ease;
}

.maps-link:hover {
    background: #1a5fc2;
    transform: translateY(-1px);
}

.maps-link:active {
    transform: translateY(0);
}
.facebook-link {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    padding: 10px 18px;
    background: #1877f2;
    color: #fff;
    text-decoration: none;
    border-radius: 6px;
    font-weight: 600;
    transition: background 0.2s ease, transform 0.1s ease;
}

.facebook-link:hover {
    background: #0f5ec4;
    transform: translateY(-1px);
}

.facebook-link i {
    font-size: 18px;
}
.site-footer a {
    color: #d8d8d8;
    text-decoration: none;
    transition: color 0.2s ease, text-shadow 0.2s ease;
}

.site-footer a:hover {
    color: #fff;
    text-shadow: 0 0 8px rgba(255,255,255,0.35);
}

.site-footer p {
    margin-bottom: 0.45rem;
}
.legal-content h3 {
    margin-top: 1.2rem;
    margin-bottom: 0.45rem;
}

.legal-content p,
.legal-content li {
    color: #e8e8e8;
}

.legal-content ul {
    margin: 0.6rem 0 1rem 1.3rem;
}

.legal-content a {
    color: #f5f5f5;
    text-decoration: underline;
    text-underline-offset: 2px;
}

.legal-content a:hover {
    color: #ffffff;
    text-shadow: 0 0 6px rgba(255,255,255,0.2);
}

.legal-box {
    margin-top: 1rem;
    padding: 0.9rem 1rem;
    border-radius: 10px;
    background: #151515;
    border: 1px solid #333;
    box-shadow: 0 10px 18px rgba(0, 0, 0, 0.45);
}

.legal-note {
    margin-top: 1rem;
    padding: 0.85rem 1rem;
    border-left: 3px solid #777;
    background: rgba(255,255,255,0.03);
    border-radius: 8px;
    color: #eaeaea;
}
.gallery-notice {
    margin-top: 0.8rem;
    margin-bottom: 1rem;
    padding: 0.85rem 1rem;
    border-left: 3px solid #777;
    background: rgba(255,255,255,0.03);
    border-radius: 8px;
    color: #eaeaea;
}
.maps-link,
.facebook-link {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    padding: 10px 18px;
    border-radius: 999px;
    border: 1px solid #666;
    background: transparent;
    color: #f5f5f5;
    text-decoration: none;
    font-weight: 600;
    transition: background 0.18s ease, color 0.18s ease, border-color 0.18s ease, transform 0.1s ease;
}
.maps-link:hover,
.facebook-link:hover {
    background: #f5f5f5;
    color: #000;
    border-color: #fff;
    transform: translateY(-1px);
}