/* Site footer — include on any page alongside main.css */

.site-footer {
    margin-top: 60px;
    border-top: 2px solid #3a281d;
    background: #100b08;
}

.footer-grid {
    max-width: 1100px;
    margin: 0 auto;
    padding: 40px 22px 28px;
    display: grid;
    grid-template-columns: 1.4fr 0.8fr 0.8fr 1.2fr;
    gap: 36px;
}

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

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

.footer-brand {
    display: flex;
    gap: 16px;
    align-items: flex-start;
}

.footer-logo {
    width: 88px;
    height: 88px;
    object-fit: contain;
    flex-shrink: 0;
}

.footer-brand p {
    margin: 0;
    font-size: 0.85rem;
    line-height: 1.6;
    color: #bfa886;
}

.footer-col h3,
.footer-connect h3 {
    margin: 0 0 14px;
    font-size: 0.8rem;
    text-transform: uppercase;
    letter-spacing: 0.16em;
    color: #c6924b;
}

.footer-col {
    display: flex;
    flex-direction: column;
    gap: 8px;
}

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

.footer-col a:hover {
    color: #c6924b;
}

.footer-social {
    display: flex;
    gap: 12px;
    margin-bottom: 18px;
}

.footer-social a {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    width: 40px;
    height: 40px;
    border: 1px solid #6d4a27;
    border-radius: 50%;
    color: #dfc9a8;
}

.footer-social a:hover {
    border-color: #c6924b;
    color: #c6924b;
}

.footer-social svg {
    width: 18px;
    height: 18px;
}

.footer-submit {
    display: inline-block;
    border: 1px solid #c6924b;
    color: #c6924b;
    text-decoration: none;
    text-transform: uppercase;
    letter-spacing: 0.12em;
    font-size: 0.78rem;
    padding: 10px 18px;
}

.footer-submit:hover {
    background: #c6924b;
    color: #120d0a;
}

.footer-bottom {
    border-top: 1px solid #2a1d14;
    text-align: center;
    padding: 14px 22px;
    font-size: 0.75rem;
    color: #8f7c60;
}

/* ── Country cards with images (home page) ─────────────────── */

.country-photo-card {
    display: block;
    border: 1px solid #3a281d;
    background: #18100c;
    text-decoration: none;
    color: inherit;
    overflow: hidden;
}

.country-photo-card:hover {
    border-color: #c6924b;
}

.country-photo-card img {
    display: block;
    width: 100%;
    aspect-ratio: 4 / 3;
    object-fit: cover;
    filter: saturate(0.85);
}

.country-photo-card:hover img {
    filter: saturate(1);
}

.country-photo-body {
    padding: 12px 14px;
}

.country-photo-body strong {
    display: block;
    color: #f5ead6;
    text-transform: uppercase;
    letter-spacing: 0.08em;
    font-size: 0.85rem;
}

.country-photo-body span {
    display: block;
    font-size: 0.76rem;
    color: #dfc9a8;
    margin-top: 3px;
}

/* ── Countries page grid ───────────────────────────────────── */

.country-photo-grid {
    display: grid;
    grid-template-columns: repeat(auto-fill, minmax(180px, 1fr));
    gap: 16px;
}

.country-photo-placeholder {
    display: flex;
    align-items: center;
    justify-content: center;
    width: 100%;
    aspect-ratio: 4 / 3;
    background: #150e0a;
    color: #4a3624;
    font-size: 2.4rem;
}
