/*
Theme Name: Family Gone Fishing
Author: Floris van Pallandt
*/

/* ── Base ── */
* {
    box-sizing: border-box;
    margin: 0;
    padding: 0;
    font-family: "ruddy", sans-serif;
}

.map-flag-pin img.emoji {
    height: 1.8em !important;
    width: 1.8em !important;
}

body {
    font-weight: 400;
    font-style: normal;
    background: #fff;
    color: #000;
}

/* ── Status bar ── */
.status-bar {
    background: #fafafa;
    color: #222;
    font-size: 1rem;
    padding: 0.6rem 0;
    border-bottom: 1px solid #ddd;
}

.status-bar .container {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 1.5rem;
    height: auto;
}

.status-item {
    display: flex;
    align-items: center;
    gap: 0.4rem;
}

.status-divider {
    color: #333;
}

.live-dot {
    display: inline-block;
    width: 8px;
    height: 8px;
    min-width: 8px;
    min-height: 8px;
    background: #2ecc71;
    border-radius: 50%;
    animation: pulse 1.5s infinite;
    flex-shrink: 0;
}

@keyframes pulse {
    0%   { opacity: 1; transform: scale(1); }
    50%  { opacity: 0.4; transform: scale(1.3); }
    100% { opacity: 1; transform: scale(1); }
}

/* ── Header ── */
header {
    background: #fdf6ee;
    border-bottom: 1px solid #eee;
    position: relative;
    z-index: 100;
    transition: background 0.3s, box-shadow 0.3s;
    height: 80px;
}

header.is-sticky {
    position: fixed;
    top: 0;
    left: 0;
    right: 0;
    background: #1a1a2e;
    border-bottom: none;
    box-shadow: 0 2px 20px rgba(0,0,0,0.15);
}

header.is-sticky .site-logo,
header.is-sticky #primary-nav ul li a,
header.is-sticky .social-link {
    color: #fff;
}

header.is-sticky .nav-newsletter {
    border-color: #fff;
    color: #fff;
}

header.is-sticky .nav-newsletter:hover {
    background: #fff;
    color: #1a1a2e;
}

header.is-sticky .menu-toggle {
    color: #fff;
}

.container {
    width: 100%;
    padding: 0 2rem;
    display: grid;
    grid-template-columns: 1fr auto 1fr;
    align-items: center;
    height: 80px;
    box-sizing: border-box;
}

.site-logo {
    font-size: 1.4rem;
    font-weight: 700;
    text-decoration: none;
    color: #000;
    display: flex;
    align-items: center;
}

.site-logo-img {
    height: 60px;
    width: auto;
    display: block;
}

.header-actions {
    justify-self: end;
    display: flex;
    align-items: center;
    gap: 1rem;
}

/* ── Navigation ── */
#primary-nav ul {
    display: flex;
    gap: 2rem;
    list-style: none;
    margin: 0;
    padding: 0;
}

#primary-nav ul li {
    position: relative;
}

#primary-nav ul li a {
    text-decoration: none;
    color: #000;
}

#primary-nav ul ul {
    display: none;
    flex-direction: column;
    position: absolute;
    top: 100%;
    left: 0;
    background: #fff;
    min-width: 200px;
    border: 1px solid #ddd;
    padding: 0.5rem 0;
    gap: 0;
}

#primary-nav ul li:hover > ul {
    display: flex;
}

#primary-nav ul ul li a {
    display: block;
    padding: 0.5rem 1rem;
    white-space: nowrap;
    color: #000 !important;
}

.menu-toggle {
    display: none;
    font-size: 1.5rem;
    background: none;
    border: none;
    cursor: pointer;
}

/* ── Header actions ── */
.header-actions {
    display: flex;
    align-items: center;
    gap: 1rem;
}

.social-link {
    display: flex;
    align-items: center;
    color: #000;
    text-decoration: none;
    opacity: 0.7;
    transition: opacity 0.2s;
}

.social-link:hover {
    opacity: 1;
}

.nav-newsletter {
    border: 1px solid #000;
    border-radius: 20px;
    padding: 0.4rem 1.2rem;
    font-size: 0.9rem;
    font-weight: 700;
    white-space: nowrap;
    text-decoration: none;
    color: #000;
    transition: background 0.2s, color 0.2s;
}

.nav-newsletter:hover {
    background: #000;
    color: #fff;
}

/* ── Hero ── */
/* ── Hero split ── */
.hero-split {
    width: 100vw;
    margin-left: calc(-50vw + 50%);
    display: grid;
    grid-template-columns: 50fr 50fr;
    overflow: visible;
    position: relative;
    background: #fdf6ee;
    min-height: 580px;
    margin-bottom: 0;
}

.hero-split__inner {
    display: contents;
}

.hero-split__text {
    display: flex;
    flex-direction: column;
    justify-content: center;
    padding: 4rem 4rem 4rem 4rem;
    position: relative;
    z-index: 2;
    background: #fdf6ee;
}

.hero-split__image {
    position: relative;
    overflow: hidden;
    min-height: 560px;
}

.hero-split__image img {
    position: absolute;
    inset: 0;
    width: 100%;
    height: 100%;
    object-fit: cover;
    object-position: 45% top;
    display: block;
}

/* Style the WP content inside hero */
.hero-split__content h1,
.hero-split__content h2 {
    font-size: clamp(2rem, 3.5vw, 3rem);
    font-weight: 900;
    line-height: 1.05;
    color: #1a1a2e;
    margin-bottom: 1.2rem;
    transform: rotate(-1deg);
    display: inline-block;
    max-width: 100%;
}

.hero-split__content p {
    font-size: 1rem;
    color: #555;
    line-height: 1.7;
    max-width: 100%;
    margin-bottom: 1rem;
}

/* Hide everything in WP content after first heading + first paragraph */
.hero-split__content p:nth-of-type(n+2) {
    display: none;
}

.hero-countdown {
    display: inline-block;
    background: #1a1a2e;
    color: #fff;
    padding: 0.5rem 1.2rem;
    border-radius: 30px;
    font-size: 0.9rem;
    margin-bottom: 1.8rem;
    width: fit-content;
}

.countdown-number {
    font-weight: 700;
    color: #e07b39;
}

.hero-split__actions {
    display: flex;
    gap: 0.75rem;
    flex-wrap: wrap;
    margin-top: 1.5rem;
}

.hero-split__btn {
    display: inline-block;
    border-radius: 30px;
    padding: 0.7rem 1.6rem;
    font-size: 0.95rem;
    font-weight: 700;
    text-decoration: none;
    transition: transform 0.2s, box-shadow 0.2s;
}

.hero-split__btn--primary {
    background: #e07b39;
    color: #fff;
    box-shadow: 3px 3px 0 #1a1a2e;
}

.hero-split__btn--primary:hover {
    transform: translate(-2px, -2px);
    box-shadow: 5px 5px 0 #1a1a2e;
}

.hero-split__btn--secondary {
    border: 2px solid #1a1a2e;
    color: #1a1a2e;
}

.hero-split__btn--secondary:hover {
    background: #1a1a2e;
    color: #fff;
}





/* ── Destinations bar ── */
.destinations-bar {
    background: #fafafa;
    border-top: 1px solid #eee;
    border-bottom: 1px solid #eee;
    padding: 2rem 0 0 0;
}

.dest-header {
    padding: 0 2rem 1rem;
    display: flex;
    align-items: flex-end;
    justify-content: space-between;
}

.dest-title-block {
    display: flex;
    flex-direction: column;
    gap: 0.3rem;
}

.dest-eyebrow {
    font-size: 0.75rem;
    text-transform: uppercase;
    letter-spacing: 0.12em;
    color: #e07b39;
    font-weight: 700;
}

.destinations-label {
    font-size: 1.7rem;
    font-weight: 700;
    color: #000;
}

.dest-list-wrapper {
    position: relative;
    padding: 0 2rem;
    overflow: hidden;
}

.dest-list-wrapper::after {
    content: '';
    position: absolute;
    top: 0;
    right: 0;
    width: 120px;
    height: 100%;
    background: linear-gradient(to right, transparent, #fafafa);
    pointer-events: none;
    z-index: 1;
}

.dest-list {
    display: flex;
    flex-wrap: nowrap;
    overflow-x: scroll;
    gap: 2rem;
    padding: 0.5rem 0 0.75rem;
    scrollbar-width: none;
    -webkit-overflow-scrolling: touch;
    cursor: grab;
}

.dest-list::-webkit-scrollbar {
    display: none;
}

.dest-item {
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 0.5rem;
    flex-shrink: 0;
    font-size: 2rem;
    transition: transform 0.2s;
}

.dest-item:hover {
    transform: scale(1.1);
}

.dest-name {
    font-size: 1rem;
    font-weight: 400;
    color: #555;
    white-space: nowrap;
}

/* ── Travel map ── */
#travel-map {
    width: 100%;
    height: 480px;
    margin-top: 1.5rem;
    z-index: 2;
}

.map-pin {
    border-radius: 50%;
    border: 2px solid #fff;
    box-shadow: 0 0 6px rgba(0,0,0,0.3);
}

.map-pin--current {
    width: 14px;
    height: 14px;
    background: #2ecc71;
    animation: pulse 1.5s infinite;
}

.map-pin--upcoming {
    width: 10px;
    height: 10px;
    background: #e07b39;
}

.map-popup__flag {
    font-size: 1.5rem;
    margin-bottom: 0.25rem;
}

.map-popup__name {
    font-weight: 700;
    font-size: 0.95rem;
}

.leaflet-control-attribution {
    display: none;
}

/* ── Main ── */
main {
    padding: 0 2rem 2rem 2rem;
}

/* ── Pages ── */
.page main {
    text-align: center;
    max-width: 800px;
}

.page main h1 {
    font-weight: 700;
    font-size: 2rem;
    margin-bottom: 2rem;
}

.page main p {
    color: #000;
    line-height: 1.8;
    margin-bottom: 1.5rem;
}

/* ── Home intro ── */
.home-intro {
    text-align: center;
    max-width: 800px;
    margin: 0 auto;
    padding: 0;
}

.home-intro h1 {
    font-size: 2rem;
    font-weight: 700;
    margin-bottom: 1.5rem;
}

.home-intro p {
    color: #444;
    line-height: 1.8;
    margin-bottom: 1.5rem;
}

/* ── Archive ── */
.archive-title {
    font-size: 2rem;
    font-weight: 700;
    margin-bottom: 2rem;
}

.archive-header {
    margin-top: 60px;
    margin-bottom: 40px;
    max-width: 600px;
}

.archive-description {
    color: #666;
    font-size: 16px;
    line-height: 1.6;
    margin-top: 12px;
}

.posts-grid {
    display: grid;
    grid-template-columns: repeat(auto-fill, minmax(340px, 1fr));
    gap: 2rem;
    max-width: 1400px;
}

/* ── Post card ── */
.post-card {
    border-radius: 12px;
    overflow: hidden;
    background: #fff;
    box-shadow: 0 2px 8px rgba(0, 0, 0, 0.06);
    transition: transform 0.3s;
    position: relative;
}

.post-card:hover {
    transform: scale(1.02);
}

.post-card__link {
    position: absolute;
    inset: 0;
    z-index: 1;
}

.post-card__image img {
    width: 100%;
    height: 220px;
    object-fit: cover;
    display: block;
}

.post-card__body {
    padding: 1rem;
}

.post-card__meta {
    font-size: 0.85rem;
    color: #888;
    margin-bottom: 0.5rem;
}

.post-card__meta a {
    color: #e07b39;
    text-decoration: none;
    font-weight: 700;
}

.post-card h2 {
    font-size: 1.1rem;
    font-weight: 700;
    margin-bottom: 0.5rem;
    line-height: 1.3;
    color: #000;
}

.post-card p {
    font-size: 0.9rem;
    color: #555;
    line-height: 1.6;
}

/* ── Featured post ── */
.post-featured {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 3rem;
    align-items: center;
    margin-bottom: 3rem;
    padding-bottom: 3rem;
    border-bottom: 1px solid #eee;
}

.post-featured__image {
    display: block;
    overflow: hidden;
    border-radius: 12px;
}

.post-featured__image img {
    width: 100%;
    height: 380px;
    object-fit: cover;
    display: block;
    border-radius: 12px;
    transition: transform 0.3s;
}

.post-featured__image:hover img {
    transform: scale(1.02);
}

.post-featured__meta {
    margin-bottom: 0.75rem;
}

.post-featured__meta a {
    color: #e07b39;
    text-decoration: none;
    font-weight: 700;
    font-size: 0.95rem;
    text-transform: uppercase;
    letter-spacing: 0.05em;
}

.post-featured__body h2 {
    font-size: 2rem;
    font-weight: 700;
    line-height: 1.2;
    margin-bottom: 0.75rem;
}

.post-featured__body h2 a {
    text-decoration: none;
    color: #000;
}

.post-featured__body h2 a:hover {
    text-decoration: underline;
}

.post-featured__date {
    font-size: 0.85rem;
    color: #888;
    margin-bottom: 1rem;
}

.post-featured__body p {
    color: #444;
    line-height: 1.7;
    margin-bottom: 1.5rem;
}

.post-featured__cta {
    font-weight: 700;
    color: #000;
    text-decoration: none;
}

.post-featured__cta:hover {
    text-decoration: underline;
}

/* ── Home sections ── */
.home-section {
    padding: 3rem 2rem;
    border-top: 1px solid #eee;
    max-width: 1400px;
}

.home-section__header {
    display: flex;
    align-items: flex-end;
    justify-content: space-between;
    margin-bottom: 2rem;
    gap: 2rem;
}

.home-section__label {
    font-size: 0.85rem;
    font-weight: 700;
    text-transform: uppercase;
    letter-spacing: 0.08em;
    color: #e07b39;
    margin-bottom: 0.4rem;
}

.home-section__header h2 {
    font-size: 1.7rem;
    font-weight: 700;
    margin-bottom: 0.5rem;
}

.home-section__sub {
    color: #666;
    font-size: 0.95rem;
    line-height: 1.6;
    max-width: 500px;
}

.home-section__link {
    font-size: 0.9rem;
    font-weight: 700;
    color: #000;
    text-decoration: none;
    white-space: nowrap;
}

.home-section__link:hover {
    text-decoration: underline;
}

/* ── Newsletter ── */
.home-newsletter {
    background: #fdf6ee;
    padding: 5rem 2rem;
    text-align: center;
}

.home-newsletter__inner {
    max-width: 600px;
    margin: 0 auto;
}

.newsletter-eyebrow {
    font-size: 0.85rem;
    font-weight: 700;
    text-transform: uppercase;
    letter-spacing: 0.12em;
    color: #e07b39;
    margin-bottom: 1rem;
}

.home-newsletter h2 {
    font-size: 2rem;
    font-weight: 700;
    color: #000;
    margin-bottom: 1rem;
    line-height: 1.2;
}

.home-newsletter p {
    color: #666;
    line-height: 1.7;
    margin-bottom: 2rem;
}

.newsletter-form {
    display: flex;
    gap: 0.75rem;
    max-width: 500px;
    margin: 0 auto;
}

.newsletter-input {
    flex: 1;
    padding: 0.85rem 1.5rem;
    border-radius: 30px;
    border: 1px solid #ddd;
    font-size: 1rem;
    outline: none;
    background: #fff;
}

.newsletter-btn {
    padding: 0.85rem 2rem;
    border-radius: 30px;
    border: none;
    background: #e8a84c;
    color: #000;
    font-weight: 700;
    font-size: 1rem;
    cursor: pointer;
    white-space: nowrap;
    font-family: "ruddy", sans-serif;
}

.newsletter-btn:hover {
    background: #d4943a;
}

.newsletter-wave {
    display: block;
    line-height: 0;
    color: #fdf6ee;
}

.newsletter-wave svg {
    width: 100%;
    height: 80px;
}

/* ── Single post ── */
.post-single {
    max-width: 740px;
    margin: 0 auto;
}

.post-single__back {
    margin-bottom: 2rem;
}

.post-single__back a {
    font-size: 0.9rem;
    color: #888;
    text-decoration: none;
}

.post-single__back a:hover {
    color: #000;
}

.post-single__header {
    text-align: center;
    padding: 2rem 0;
}

.post-single__meta {
    margin-bottom: 1rem;
}

.post-single__meta a {
    color: #e07b39;
    text-decoration: none;
    font-weight: 700;
    font-size: 0.95rem;
    text-transform: uppercase;
    letter-spacing: 0.05em;
}

.post-single__header h1 {
    font-size: 2.6rem;
    font-weight: 700;
    line-height: 1.2;
    margin-bottom: 1rem;
}

.post-single__date {
    font-size: 0.9rem;
    color: #888;
}

.post-single__image {
    margin: 2rem 0;
}

.post-single__image img {
    width: 100%;
    height: 480px;
    object-fit: cover;
    display: block;
    border-radius: 16px;
}

.post-single__content p {
    line-height: 1.9;
    margin-bottom: 1.5rem;
    font-size: 1.05rem;
    color: #222;
}

.post-single__content h2 {
    font-size: 1.5rem;
    font-weight: 700;
    margin: 2rem 0 1rem;
}

/* ── Footer ── */
.site-footer {
    background: #fafafa;
    border-top: 1px solid #ddd;
    padding: 3rem 2rem;
}

.footer-inner {
}

.footer-top {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 2rem;
    margin-bottom: 2rem;
}

.footer-brand .site-logo {
    display: inline-block;
    margin-bottom: 0.5rem;
}

.footer-brand p {
    color: #666;
    font-size: 0.9rem;
    max-width: 360px;
    margin-bottom: 1rem;
}

.footer-social {
    display: flex;
    gap: 1rem;
}

.footer-social .social-link {
    color: #444;
}

.footer-nav {
    display: flex;
    flex-direction: column;
    gap: 0.75rem;
    justify-self: start;
}

.footer-nav a {
    text-decoration: none;
    color: #444;
    font-size: 0.9rem;
}

.footer-nav a:hover {
    color: #000;
}

.footer-copy {
    font-size: 0.8rem;
    color: #aaa;
    border-top: 1px solid #eee;
    padding-top: 1.5rem;
    margin-top: 0;
}

/* ── Mobile ── */
@media (max-width: 1100px) and (min-width: 601px) {
    .posts-grid {
        grid-template-columns: repeat(2, 1fr);
    }
}

@media (max-width: 600px) {
    .posts-grid {
        grid-template-columns: 1fr;
    }
}

@media (max-width: 800px) {
    .menu-toggle {
        display: block;
    }

    .header-actions .social-link {
        display: none;
    }

    #primary-nav {
        display: none;
    }

    .status-bar .container {
        flex-direction: row;
        gap: 0.6rem;
        flex-wrap: wrap;
        justify-content: center;
        font-size: 0.85rem;
    }

    .hero-split {
        grid-template-columns: 1fr;
        min-height: unset;
    }

    .hero-split__text {
        padding: 2rem 1.5rem;
        order: 2;
        overflow: hidden;
    }

    .hero-split__content h1,
    .hero-split__content h2 {
        font-size: 2rem;
        transform: rotate(0deg);
        word-break: break-word;
    }

    .hero-split__image {
        order: 1;
        height: 75vw;
        min-height: 300px;
        position: relative;
    }

    .hero-split__image img {
        position: absolute;
        inset: 0;
        width: 100%;
        height: 100%;
        object-fit: cover;
        object-position: 45% 10%;
    }

    .dest-list-wrapper {
        padding: 0 1rem;
    }

    #travel-map {
        height: 300px;
    }


    .post-featured {
        grid-template-columns: 1fr;
    }

    .post-featured__image img {
        height: 240px;
    }

    .home-section__header {
        flex-direction: column;
        align-items: flex-start;
    }

    .newsletter-form {
        flex-direction: column;
    }

    .footer-top {
        flex-direction: column;
    }
}

/* ── Map animate button ── */
.map-animate-wrap {
    position: relative;
    margin-top: -48px;
    display: flex;
    justify-content: flex-end;
    padding-right: 1rem;
    pointer-events: none;
    z-index: 999;
}

.map-animate-btn {
    position: absolute;
    bottom: 1rem;
    right: 1rem;
    z-index: 1000;
    background: #1a1a2e;
    color: #fff;
    border: none;
    border-radius: 30px;
    padding: 0.75rem 1.5rem;
    font-size: 0.9rem;
    font-weight: 700;
    font-family: "ruddy", sans-serif;
    cursor: pointer;
    box-shadow: 3px 3px 0 #e07b39;
    transition: transform 0.2s, box-shadow 0.2s;
}

.map-animate-btn:hover {
    transform: translate(-2px, -2px);
    box-shadow: 5px 5px 0 #e07b39;
}

.map-animate-btn:disabled {
    opacity: 0.6;
    cursor: default;
    transform: none;
    box-shadow: 3px 3px 0 #e07b39;
}

/* ── Map plane ── */
.map-plane {
    display: block;
    transition: transform 0.1s linear;
    filter: drop-shadow(0 1px 4px rgba(0,0,0,0.35));
}

.map-plane svg {
    display: block;
}

/* ── Fullscreen nav overlay ── */
.nav-overlay {
    display: none;
    position: fixed;
    inset: 0;
    background: #1a1a2e;
    z-index: 999;
    flex-direction: column;
    overflow-y: auto;
}

.nav-overlay.is-open {
    display: flex;
}

.nav-overlay__top {
    display: flex;
    align-items: center;
    justify-content: center;
    padding: 1.5rem 2rem;
    border-bottom: 1px solid rgba(255,255,255,0.1);
    position: relative;
    flex-shrink: 0;
}

.nav-overlay__logo {
    font-size: 1.3rem;
    font-weight: 700;
    color: #fff;
    text-decoration: none;
}

.nav-overlay__close {
    position: absolute;
    right: 1.5rem;
    top: 50%;
    transform: translateY(-50%);
    background: none;
    border: none;
    color: #fff;
    font-size: 1.6rem;
    cursor: pointer;
    line-height: 1;
    padding: 0.5rem;
}

.nav-overlay__inner {
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 2.5rem;
    width: 100%;
    padding: 2.5rem 2rem 3rem;
    flex: 1;
    justify-content: center;
}

/* Main menu items */
.nav-overlay__menu {
    list-style: none;
    margin: 0;
    padding: 0;
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 0;
    width: 100%;
}

.nav-overlay__menu > li > a {
    display: block;
    font-size: 1.8rem;
    font-weight: 700;
    color: #fff;
    text-decoration: none;
    padding: 0.7rem 0;
    text-align: center;
    transition: color 0.2s;
}

.nav-overlay__menu > li > a:hover {
    color: #e07b39;
}

/* Submenu items */
.nav-overlay__menu ul {
    list-style: none;
    margin: 0 0 0.5rem;
    padding: 0;
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 0;
}

.nav-overlay__menu ul li a {
    display: block;
    font-size: 1rem;
    font-weight: 400;
    color: rgba(255,255,255,0.55);
    text-decoration: none;
    padding: 0.3rem 0;
    text-align: center;
    transition: color 0.2s;
}

.nav-overlay__menu ul li a:hover {
    color: #fff;
}

/* Newsletter promo block */
.nav-overlay__promo {
    background: rgba(255,255,255,0.06);
    border: 1px solid rgba(255,255,255,0.12);
    border-radius: 16px;
    padding: 1.5rem 2rem;
    text-align: center;
    max-width: 320px;
    width: 100%;
}

.nav-overlay__promo-eyebrow {
    font-size: 0.75rem;
    text-transform: uppercase;
    letter-spacing: 0.12em;
    color: #e07b39;
    font-weight: 700;
    margin-bottom: 0.4rem;
}

.nav-overlay__promo-title {
    font-size: 1.4rem;
    font-weight: 700;
    color: #fff;
    margin-bottom: 0.5rem;
}

.nav-overlay__promo-text {
    font-size: 0.9rem;
    color: rgba(255,255,255,0.6);
    line-height: 1.5;
    margin-bottom: 1.2rem;
}

.nav-overlay__promo-btn {
    display: inline-block;
    background: #e07b39;
    color: #fff;
    text-decoration: none;
    border-radius: 30px;
    padding: 0.6rem 1.8rem;
    font-size: 0.95rem;
    font-weight: 700;
    transition: background 0.2s;
}

.nav-overlay__promo-btn:hover {
    background: #d4943a;
}

.nav-overlay__social {
    display: flex;
    gap: 1.5rem;
}

.nav-overlay__social a {
    color: rgba(255,255,255,0.5);
    transition: color 0.2s;
    display: flex;
}

.nav-overlay__social a:hover {
    color: #fff;
}