* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

:root {
    /* Spanish Heritage Color Palette */
    --andalusian-blue: #0f4c81;
    --moorish-gold: #d4af37;
    --spanish-terracotta: #e07a5f;
    --seville-orange: #f4a261;
    --granada-red: #c1121f;
    --mediterranean-teal: #2a9d8f;
    --alhambra-cream: #f8f3e6;
    --Tibidabo-purple: #6a4c93;
    --midnight-navy: #1a1d2e;

    /* Gradients */
    --gradient-spain: linear-gradient(135deg, var(--granada-red) 0%, var(--spanish-terracotta) 50%, var(--midnight-navy) 100%);
    --gradient-moorish: linear-gradient(135deg, var(--moorish-gold) 0%, var(--seville-orange) 100%);
    --gradient-mediterranean: linear-gradient(135deg, var(--andalusian-blue) 0%, var(--mediterranean-teal) 100%);

    /* Spacing */
    --space-sm: 0.5rem;
    --space-md: 1rem;
    --space-lg: 1.5rem;
    --space-xl: 2rem;
    --space-2xl: 3rem;
    --space-3xl: 4rem;

    /* Shadows */
    --shadow-sm: 0 2px 4px rgba(193, 18, 31, 0.12);
    --shadow-md: 0 8px 16px rgba(193, 18, 31, 0.2);
    --shadow-lg: 0 16px 32px rgba(193, 18, 31, 0.24);
    --shadow-xl: 0 24px 48px rgba(193, 18, 31, 0.3);
}

body {
    font-family: -apple-system, BlinkMacSystemFont, 'Segoe UI', 'Helvetica Neue', Arial, sans-serif;
    background: linear-gradient(135deg, #1a1d2e 0%, #2a2d3e 25%, #3a2e38 50%, #2a2d3e 75%, #1a1d2e 100%);
    color: #f8f3e6;
    overflow-x: hidden;
    position: relative;
    min-height: 100vh;
}

/* Moorish tile pattern background */
body::before {
    content: '';
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background-image:
        radial-gradient(circle at 20% 35%, rgba(212, 175, 55, 0.1) 1.4px, transparent 1.4px),
        radial-gradient(circle at 70% 58%, rgba(224, 122, 95, 0.09) 1.2px, transparent 1.2px),
        radial-gradient(circle at 85% 22%, rgba(244, 162, 97, 0.08) 1px, transparent 1px),
        radial-gradient(circle at 15% 72%, rgba(193, 18, 31, 0.07) 1.3px, transparent 1.3px);
    background-size: 265px 265px, 305px 305px, 195px 195px, 275px 275px;
    background-position: 0 0, 52px 72px, 162px 292px, 82px 132px;
    pointer-events: none;
    z-index: 0;
    animation: azulejosDrift 96s linear infinite;
}

@keyframes azulejosDrift {
    0% {
        background-position: 0 0, 52px 72px, 162px 292px, 82px 132px;
    }

    100% {
        background-position: 265px 265px, 357px 377px, 357px 487px, 357px 407px;
    }
}

/* Spanish sunset glow */
body::after {
    content: '';
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background-image:
        radial-gradient(ellipse at 26% 18%, rgba(244, 162, 97, 0.18) 0%, transparent 47%),
        radial-gradient(ellipse at 74% 74%, rgba(193, 18, 31, 0.15) 0%, transparent 51%),
        radial-gradient(ellipse at 50% 50%, rgba(212, 175, 55, 0.13) 0%, transparent 57%);
    animation: siestaGlow 25s ease-in-out infinite alternate;
    pointer-events: none;
    z-index: 0;
}

@keyframes siestaGlow {
    0% {
        opacity: 0.6;
        transform: scale(1) rotate(0deg);
    }

    100% {
        opacity: 0.86;
        transform: scale(1.09) rotate(2deg);
    }
}

.content-wrapper {
    position: relative;
    z-index: 1;
}

/* Header */
header {
    background: rgba(26, 29, 46, 0.95);
    backdrop-filter: blur(36px);
    -webkit-backdrop-filter: blur(36px);
    border-bottom: 2px solid rgba(212, 175, 55, 0.34);
    padding: 2rem 3rem;
    position: sticky;
    top: 0;
    z-index: 100;
    box-shadow: 0 4px 30px rgba(193, 18, 31, 0.25),
        0 0 38px rgba(212, 175, 55, 0.15) inset;
    display: flex;
    justify-content: space-between;
    align-items: center;
    flex-wrap: wrap;
}

.site-branding {
    flex: 1;
    min-width: 200px;
}

.site-title a {
    text-decoration: none;
    font-size: clamp(2rem, 4vw + 1rem, 2.8rem);
    font-weight: 800;
    background: linear-gradient(135deg, #d4af37 0%, #c1121f 50%, #f4a261 100%);
    background-size: 200% 200%;
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
    letter-spacing: 0.15em;
    text-transform: uppercase;
    transition: all 0.5s ease;
    position: relative;
    filter: drop-shadow(0 0 26px rgba(212, 175, 55, 0.48));
    animation: spanishShimmer 8.2s ease-in-out infinite;
}

@keyframes spanishShimmer {

    0%,
    100% {
        background-position: 0% 50%;
    }

    50% {
        background-position: 100% 50%;
    }
}

.site-title a:hover {
    filter: drop-shadow(0 0 38px rgba(193, 18, 31, 0.68));
    letter-spacing: 0.18em;
}

.site-tagline {
    font-size: clamp(0.9rem, 2vw, 1.05rem);
    color: #ead9b8;
    letter-spacing: 0.12em;
    text-transform: uppercase;
    margin-top: 0.8rem;
    font-weight: 300;
}

/* Navigation */
#menu {
    flex: 1;
    display: flex;
    justify-content: flex-end;
}

#menu ul {
    list-style: none;
    display: flex;
    flex-wrap: wrap;
    margin: 0;
    padding: 0;
    justify-content: flex-end;
}

#menu li {
    margin: 0 1.5rem;
    font-size: 1.05rem;
    line-height: 2.5rem;
    position: relative;
}

#menu li::before {
    content: '';
    position: absolute;
    bottom: 0;
    left: 50%;
    transform: translateX(-50%);
    width: 0;
    height: 2px;
    background: linear-gradient(90deg, #d4af37, #c1121f);
    transition: width 0.4s ease;
    box-shadow: 0 0 16px rgba(212, 175, 55, 0.54);
}

#menu li:hover::before {
    width: 100%;
}

#menu a {
    text-decoration: none;
    color: #f2ebe0;
    text-transform: uppercase;
    letter-spacing: 0.08em;
    font-weight: 500;
    transition: all 0.3s ease;
}

#menu li:hover a {
    color: #d4af37;
    text-shadow: 0 0 18px rgba(212, 175, 55, 0.48);
}

/* Hero Section */
.hero-section {
    text-align: center;
    padding: 6rem 2rem 5rem;
    position: relative;
    overflow: hidden;
    background: linear-gradient(135deg, rgba(26, 29, 46, 0.93) 0%, rgba(42, 45, 62, 0.89) 100%);
}

.hero-title {
    font-size: clamp(3.5rem, 10vw, 8rem);
    font-weight: 900;
    background: linear-gradient(135deg, #d4af37 0%, #c1121f 50%, #f4a261 100%);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
    margin-bottom: 2rem;
    text-transform: uppercase;
    letter-spacing: 0.25em;
    position: relative;
    filter: drop-shadow(0 0 34px rgba(212, 175, 55, 0.42));
    animation: titlePulse 6.5s ease-in-out infinite;
}

@keyframes titlePulse {

    0%,
    100% {
        filter: drop-shadow(0 0 34px rgba(212, 175, 55, 0.42));
        transform: scale(1);
    }

    50% {
        filter: drop-shadow(0 0 50px rgba(193, 18, 31, 0.58));
        transform: scale(1.015);
    }
}

.hero-subtitle {
    font-size: clamp(1.2rem, 3vw, 1.9rem);
    color: #ead9b8;
    letter-spacing: 0.12em;
    text-transform: uppercase;
    font-weight: 300;
    margin-top: 2.5rem;
    text-shadow: 0 0 24px rgba(212, 175, 55, 0.32);
}

/* Moorish Architecture SVG */
.spain-svg {
    width: 100%;
    height: 380px;
    margin-top: 4rem;
}

.moorish-arch {
    fill: none;
    stroke: #d4af37;
    stroke-width: 2.6;
    opacity: 0;
    animation: archReveal 4.2s ease-out forwards;
}

@keyframes archReveal {
    to {
        opacity: 0.8;
    }
}

.moorish-arch:nth-child(1) {
    animation-delay: 0s;
}

.moorish-arch:nth-child(2) {
    animation-delay: 0.4s;
    stroke: #f4a261;
}

.moorish-arch:nth-child(3) {
    animation-delay: 0.8s;
    stroke: #c1121f;
}

.moorish-arch:nth-child(4) {
    animation-delay: 1.2s;
    stroke: #e07a5f;
}

.moorish-arch:nth-child(5) {
    animation-delay: 1.6s;
    stroke: #d4af37;
}

.islamic-pattern {
    fill: none;
    stroke: #f4a261;
    stroke-width: 1.8;
    opacity: 0;
    animation: patternFade 3s ease-out forwards;
}

@keyframes patternFade {
    to {
        opacity: 0.65;
    }
}

.islamic-pattern:nth-child(1) {
    animation-delay: 2.2s;
}

.islamic-pattern:nth-child(2) {
    animation-delay: 2.4s;
}

.islamic-pattern:nth-child(3) {
    animation-delay: 2.6s;
}

.alhambra-tower {
    fill: none;
    stroke: #c1121f;
    stroke-width: 2.8;
    opacity: 0;
    animation: towerRise 3.8s ease-out forwards;
}

@keyframes towerRise {
    from {
        opacity: 0;
        transform: translateY(40px);
    }

    to {
        opacity: 0.82;
        transform: translateY(0);
    }
}

.alhambra-tower:nth-child(1) {
    animation-delay: 2.8s;
}

.alhambra-tower:nth-child(2) {
    animation-delay: 3s;
    stroke: #d4af37;
}

.gaudi-curve {
    fill: none;
    stroke: #6a4c93;
    stroke-width: 2.5;
    opacity: 0;
    animation: curveAppear 3.5s ease-out forwards;
}

@keyframes curveAppear {
    to {
        opacity: 0.75;
    }
}

.gaudi-curve:nth-child(1) {
    animation-delay: 3.3s;
}

.gaudi-curve:nth-child(2) {
    animation-delay: 3.5s;
    stroke: #2a9d8f;
}

.spanish-sun {
    fill: #f4a261;
    opacity: 0;
    animation: sunRise 4.2s ease-out forwards;
}

@keyframes sunRise {
    from {
        opacity: 0;
        transform: translateY(55px) scale(0.65);
    }

    to {
        opacity: 0.75;
        transform: translateY(0) scale(1);
    }
}

.spanish-sun:nth-child(1) {
    animation-delay: 3.8s;
}

.flamenco-accent {
    fill: #c1121f;
    opacity: 0;
    animation: accentPulse 2s ease-in-out infinite alternate;
}

.flamenco-accent:nth-child(1) {
    animation-delay: 4.2s;
}

.flamenco-accent:nth-child(2) {
    animation-delay: 4.4s;
}

@keyframes accentPulse {
    from {
        opacity: 0.4;
        transform: scale(0.9);
    }

    to {
        opacity: 0.95;
        transform: scale(1.12);
    }
}

/* Gallery Section */
.travel-gallery {
    max-width: 1600px;
    margin: 4rem auto;
    padding: 0 2rem 5rem;
}

.city-section {
    margin-bottom: 5rem;
}

.city-title {
    font-size: clamp(2.5rem, 5vw, 3.5rem);
    font-weight: 700;
    background: linear-gradient(135deg, #d4af37 0%, #c1121f 100%);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
    text-transform: uppercase;
    letter-spacing: 0.12em;
    margin-bottom: 3rem;
    position: relative;
    padding-left: 35px;
}

.city-title::before {
    content: '✧';
    position: absolute;
    left: 0;
    top: 50%;
    transform: translateY(-50%);
    font-size: 1.8rem;
    color: #d4af37;
    animation: estrellasGlow 4.5s ease-in-out infinite;
}

@keyframes estrellasGlow {

    0%,
    100% {
        opacity: 0.75;
        transform: translateY(-50%) scale(1);
        text-shadow: 0 0 16px rgba(212, 175, 55, 0.45);
    }

    50% {
        opacity: 1;
        transform: translateY(-50%) scale(1.24);
        text-shadow: 0 0 35px rgba(193, 18, 31, 0.78);
    }
}

.photo-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(340px, 1fr));
    gap: 3rem;
    margin-top: 2.5rem;
    justify-items: center;
}

.photo-grid .photo-card {
    max-width: 480px;
    width: 100%;
}

.photo-grid .photo-card.portrait {
    max-width: 360px;
}

/* Photo Card - Moorish Design */
.photo-card {
    position: relative;
    overflow: hidden;
    cursor: pointer;
    height: 420px;
    transition: all 0.82s cubic-bezier(0.4, 0, 0.2, 1);
    isolation: isolate;
    z-index: 1;
}

.photo-card.portrait {
    height: 520px;
}

.photo-card:hover {
    transform: translateY(-34px) scale(1.052);
    z-index: 10;
}

/* Moorish frame */
.card-frame {
    position: absolute;
    inset: 0;
    background: linear-gradient(135deg, rgba(26, 29, 46, 0.98) 0%, rgba(42, 45, 62, 0.96) 100%);
    border-radius: 14px;
    border: 2.5px solid rgba(212, 175, 55, 0.42);
    box-shadow: 0 17px 48px rgba(193, 18, 31, 0.27),
        0 0 44px rgba(212, 175, 55, 0.17) inset;
    transition: all 0.82s cubic-bezier(0.4, 0, 0.2, 1);
    overflow: hidden;
}

.photo-card:hover .card-frame {
    border-color: rgba(193, 18, 31, 0.72);
    box-shadow: 0 38px 85px rgba(193, 18, 31, 0.46),
        0 0 62px rgba(212, 175, 55, 0.34) inset;
}

/* Moorish geometric lines */
.geometric-lines {
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    height: 100%;
    z-index: 2;
    pointer-events: none;
    opacity: 0;
    transition: opacity 0.82s ease;
}

.photo-card:hover .geometric-lines {
    opacity: 1;
}

.geometric-decoration {
    position: absolute;
    background: linear-gradient(90deg, transparent, rgba(212, 175, 55, 0.38), transparent);
    width: 2.2px;
    height: 100%;
    animation: geometricFlow 6.2s ease-in-out infinite;
}

.geometric-decoration:nth-child(1) {
    left: 36%;
    animation-delay: 0s;
}

.geometric-decoration:nth-child(2) {
    left: 50%;
    background: linear-gradient(90deg, transparent, rgba(193, 18, 31, 0.4), transparent);
    width: 2.6px;
    animation-delay: 0.9s;
}

.geometric-decoration:nth-child(3) {
    left: 64%;
    animation-delay: 1.8s;
}

@keyframes geometricFlow {

    0%,
    100% {
        opacity: 0.5;
        transform: scaleY(1);
    }

    50% {
        opacity: 1;
        transform: scaleY(1.18);
    }
}

/* Spanish sunset sweep */
.sunset-sweep {
    position: absolute;
    top: -100%;
    left: 0;
    right: 0;
    height: 100%;
    background: linear-gradient(180deg,
            transparent,
            rgba(212, 175, 55, 0.34),
            rgba(193, 18, 31, 0.34),
            transparent);
    z-index: 3;
    pointer-events: none;
}

.photo-card:hover .sunset-sweep {
    animation: sunsetSweep 3.8s ease-in-out;
}

@keyframes sunsetSweep {
    0% {
        top: -100%;
    }

    100% {
        top: 100%;
    }
}

/* Image Container */
.photo-wrapper {
    position: absolute;
    inset: 0;
    overflow: hidden;
    border-radius: 14px;
}

.photo-wrapper::before {
    content: '';
    position: absolute;
    inset: 0;
    background: linear-gradient(135deg,
            rgba(212, 175, 55, 0.17) 0%,
            transparent 50%,
            rgba(193, 18, 31, 0.15) 100%);
    z-index: 1;
    pointer-events: none;
    opacity: 0.75;
    transition: opacity 0.75s ease;
}

.photo-card:hover .photo-wrapper::before {
    opacity: 0.95;
}

.photo-image {
    width: 100%;
    height: 78%;
    object-fit: cover;
    transition: all 1.18s cubic-bezier(0.4, 0, 0.2, 1);
    filter: saturate(0.85) contrast(1.1) brightness(0.91);
}

.photo-card:hover .photo-image {
    transform: scale(1.21);
    filter: saturate(1.16) contrast(1.19) brightness(1.06);
}

/* Photo Info Overlay */
.photo-info {
    position: absolute;
    bottom: 0;
    left: 0;
    right: 0;
    padding: 2.5rem;
    z-index: 5;
    background: linear-gradient(to top,
            rgba(26, 29, 46, 0.98) 0%,
            rgba(42, 45, 62, 0.95) 60%,
            transparent 100%);
    backdrop-filter: blur(34px);
    -webkit-backdrop-filter: blur(34px);
    border-radius: 0 0 14px 14px;
    border-top: 1.5px solid rgba(212, 175, 55, 0.4);
    transform: translateY(0);
    transition: all 0.82s cubic-bezier(0.4, 0, 0.2, 1);
}

.photo-location {
    font-size: clamp(1.6rem, 3vw, 2.1rem);
    font-weight: 600;
    color: #f2ebe0;
    letter-spacing: 0.08em;
    text-transform: uppercase;
    margin: 0;
    transition: all 0.4s ease;
    text-shadow: 0 0 24px rgba(212, 175, 55, 0.32);
}

.photo-card:hover .photo-location {
    color: #ead9b8;
    text-shadow: 0 0 36px rgba(193, 18, 31, 0.54);
}

/* Moorish tile corners */
.moorish-corner {
    position: absolute;
    z-index: 4;
    pointer-events: none;
    transition: all 0.75s ease;
}

.corner-tl,
.corner-br,
.corner-tr,
.corner-bl {
    width: 54px;
    height: 54px;
    border: 2.5px solid rgba(212, 175, 55, 0.48);
    border-radius: 2px;
}

.corner-tl {
    top: 12px;
    left: 12px;
    border-right: none;
    border-bottom: none;
}

.corner-tr {
    top: 12px;
    right: 12px;
    border-left: none;
    border-bottom: none;
}

.corner-bl {
    bottom: 12px;
    left: 12px;
    border-right: none;
    border-top: none;
}

.corner-br {
    bottom: 12px;
    right: 12px;
    border-left: none;
    border-top: none;
}

.photo-card:hover .moorish-corner {
    border-color: rgba(193, 18, 31, 0.84);
    box-shadow: 0 0 26px rgba(212, 175, 55, 0.54);
}

.photo-card:hover .corner-tl,
.photo-card:hover .corner-br {
    width: 66px;
    height: 66px;
}

.photo-card:hover .corner-tr,
.photo-card:hover .corner-bl {
    width: 66px;
    height: 66px;
}

/* Footer */
footer {
    background: linear-gradient(135deg, rgba(26, 29, 46, 0.98) 0%, rgba(42, 45, 62, 0.98) 100%);
    backdrop-filter: blur(42px);
    -webkit-backdrop-filter: blur(42px);
    border-top: 2px solid rgba(212, 175, 55, 0.42);
    padding: 3.5rem 2rem;
    margin-top: 5rem;
    text-align: center;
    box-shadow: 0 -4px 30px rgba(193, 18, 31, 0.25);
}

.footer-content {
    max-width: 1200px;
    margin: 0 auto;
}

.footer-title {
    font-size: clamp(1.4rem, 3vw, 1.6rem);
    background: linear-gradient(135deg, #d4af37 0%, #c1121f 100%);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
    letter-spacing: 0.12em;
    text-transform: uppercase;
    margin-bottom: 2rem;
    font-weight: 700;
}

.footer-credits {
    color: #ead9b8;
    font-size: 1rem;
    letter-spacing: 0.05em;
    margin-top: 2.5rem;
    font-weight: 300;
}

.footer-credits strong {
    background: linear-gradient(135deg, #d4af37 0%, #c1121f 100%);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
    font-weight: 700;
}

/* Language Links in Footer */
.footer-languages {
    margin: 2.5rem 0;
    display: flex;
    justify-content: center;
    flex-wrap: wrap;
    gap: 2rem;
}

.footer-languages a {
    color: #f2ebe0;
    text-decoration: none;
    font-size: 1rem;
    letter-spacing: 0.05em;
    text-transform: uppercase;
    transition: all 0.3s ease;
    padding: 0.5rem 1rem;
    border: 1px solid rgba(212, 175, 55, 0.42);
    border-radius: 5px;
}

.footer-languages a:hover {
    color: #ead9b8;
    border-color: rgba(193, 18, 31, 0.72);
    box-shadow: 0 0 22px rgba(212, 175, 55, 0.44);
}

.footer-languages a.current {
    background: linear-gradient(135deg, rgba(212, 175, 55, 0.32) 0%, rgba(193, 18, 31, 0.32) 100%);
    border-color: rgba(193, 18, 31, 0.6);
}


#langlist {
    list-style: none;
    display: flex;
    justify-content: center;
    align-items: center;
    flex-wrap: wrap;
    gap: var(--space-lg, 1rem);
    padding: 0;
    margin: 0;
}

#langlist li {
    position: relative;
}

#langlist a {
    text-decoration: none;
    color: var(--text-muted, inherit);
    font-size: var(--text-sm, 0.95rem);
    letter-spacing: 0.08em;
    padding: var(--space-sm, 0.5rem) var(--space-md, 1rem);
    border-radius: 8px;
    transition: all 0.3s ease;
    display: block;
    background: rgba(212, 165, 116, 0.06);
    border: 1px solid rgba(212, 165, 116, 0.15);
    white-space: nowrap;
}

#langlist a:hover {
    background: rgba(212, 165, 116, 0.12);
    border-color: rgba(212, 165, 116, 0.3);
    color: var(--baltic-deep-amber, currentColor);
    transform: translateY(-2px);
    box-shadow: var(--shadow-sm, 0 4px 12px rgba(0, 0, 0, 0.12));
}

#langlist .highlight a {
    background: linear-gradient(135deg, var(--baltic-deep-teal, #0f766e), var(--baltic-amber, #d4a574));
    color: var(--baltic-cream, #fffaf0);
    border-color: var(--baltic-deep-amber, #b7791f);
}

.licence {
    margin-top: 2rem;
}

.licence img {
    opacity: 0.7;
    transition: opacity 0.3s ease;
}

.licence img:hover {
    opacity: 1;
}

/* Responsive Design */
@media screen and (max-width: 968px) {
    header {
        flex-direction: column;
        text-align: center;
        padding: 1.5rem 1rem;
    }

    .site-branding {
        margin-bottom: 1.5rem;
    }

    #menu {
        justify-content: center;
    }

    #menu ul {
        justify-content: center;
    }

    .photo-grid {
        grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
        gap: 2.5rem;
    }

    .hero-title {
        letter-spacing: 0.15em;
    }

    .photo-card {
        height: 390px;
    }

    .photo-card.portrait {
        height: 490px;
    }
}

@media screen and (max-width: 600px) {
    .site-title a {
        font-size: 2rem;
        letter-spacing: 0.1em;
    }

    .site-tagline {
        font-size: 0.85rem;
    }

    #menu li {
        margin: 0 0.8rem;
        font-size: 0.95rem;
    }

    .hero-subtitle {
        letter-spacing: 0.08em;
    }

    .photo-grid {
        grid-template-columns: 1fr;
        gap: 2rem;
    }

    .photo-card {
        height: 360px;
    }

    .photo-card.portrait {
        height: 460px;
    }

    .photo-location {
        font-size: 1.5rem;
    }

    .photo-info {
        padding: 2rem;
    }

    .city-title {
        font-size: 2.2rem;
    }

    .footer-languages {
        gap: 1rem;
    }

    .footer-languages a {
        font-size: 0.9rem;
        padding: 0.4rem 0.8rem;
    }
}
