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

:root {
    /* Hungarian Color Palette - Budapest inspired */
    --danube-blue: #2c5f8d;
    --royal-gold: #c8a882;
    --parliament-cream: #f5f1e8;
    --evening-amber: #d4926f;
    --castle-stone: #8b7e74;
    --deep-burgundy: #7d3c3c;
    --night-indigo: #1a2332;
    --bridge-copper: #b87f5c;

    /* Gradients */
    --gradient-danube: linear-gradient(135deg, var(--danube-blue) 0%, var(--night-indigo) 100%);
    --gradient-royal: linear-gradient(135deg, var(--royal-gold) 0%, var(--evening-amber) 100%);
    --gradient-evening: linear-gradient(135deg, var(--deep-burgundy) 0%, var(--danube-blue) 50%, var(--night-indigo) 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(44, 95, 141, 0.1);
    --shadow-md: 0 8px 16px rgba(44, 95, 141, 0.18);
    --shadow-lg: 0 16px 32px rgba(44, 95, 141, 0.22);
    --shadow-xl: 0 24px 48px rgba(44, 95, 141, 0.28);
}

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

/* Danube river flow background */
body::before {
    content: '';
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background-image:
        radial-gradient(circle at 20% 40%, rgba(200, 168, 130, 0.08) 1px, transparent 1px),
        radial-gradient(circle at 70% 65%, rgba(44, 95, 141, 0.1) 1.5px, transparent 1.5px),
        radial-gradient(circle at 45% 15%, rgba(212, 146, 111, 0.06) 0.8px, transparent 0.8px),
        radial-gradient(circle at 85% 85%, rgba(125, 60, 60, 0.07) 1px, transparent 1px);
    background-size: 280px 280px, 320px 320px, 200px 200px, 260px 260px;
    background-position: 0 0, 60px 90px, 170px 310px, 100px 140px;
    pointer-events: none;
    z-index: 0;
    animation: riverFlow 100s linear infinite;
}

@keyframes riverFlow {
    0% {
        background-position: 0 0, 60px 90px, 170px 310px, 100px 140px;
    }

    100% {
        background-position: 280px 280px, 380px 410px, 370px 490px, 360px 420px;
    }
}

/* Hungarian evening glow */
body::after {
    content: '';
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background-image:
        radial-gradient(ellipse at 30% 20%, rgba(200, 168, 130, 0.15) 0%, transparent 45%),
        radial-gradient(ellipse at 70% 70%, rgba(125, 60, 60, 0.12) 0%, transparent 50%),
        radial-gradient(ellipse at 50% 50%, rgba(44, 95, 141, 0.1) 0%, transparent 55%);
    animation: eveningGlow 22s ease-in-out infinite alternate;
    pointer-events: none;
    z-index: 0;
}

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

    100% {
        opacity: 0.85;
        transform: scale(1.06) rotate(2deg);
    }
}

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

/* Header */
header {
    background: rgba(26, 35, 50, 0.93);
    backdrop-filter: blur(32px);
    -webkit-backdrop-filter: blur(32px);
    border-bottom: 2px solid rgba(200, 168, 130, 0.3);
    padding: 2rem 3rem;
    position: sticky;
    top: 0;
    z-index: 100;
    box-shadow: 0 4px 30px rgba(44, 95, 141, 0.22),
        0 0 35px rgba(200, 168, 130, 0.12) 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, #c8a882 0%, #d4926f 50%, #c8a882 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 22px rgba(200, 168, 130, 0.4));
    animation: goldenShimmer 7s ease-in-out infinite;
}

@keyframes goldenShimmer {

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

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

.site-title a:hover {
    filter: drop-shadow(0 0 32px rgba(212, 146, 111, 0.6));
    letter-spacing: 0.18em;
}

.site-tagline {
    font-size: clamp(0.9rem, 2vw, 1.05rem);
    color: #d4b896;
    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, #c8a882, #d4926f);
    transition: width 0.4s ease;
    box-shadow: 0 0 12px rgba(200, 168, 130, 0.5);
}

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

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

#menu li:hover a {
    color: #c8a882;
    text-shadow: 0 0 15px rgba(200, 168, 130, 0.4);
}

/* Hero Section */
.hero-section {
    text-align: center;
    padding: 6rem 2rem 5rem;
    position: relative;
    overflow: hidden;
    background: linear-gradient(135deg, rgba(26, 35, 50, 0.9) 0%, rgba(44, 62, 80, 0.85) 100%);
}

.hero-title {
    font-size: clamp(3.5rem, 10vw, 8rem);
    font-weight: 900;
    background: linear-gradient(135deg, #c8a882 0%, #d4926f 50%, #b87f5c 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 28px rgba(200, 168, 130, 0.35));
    animation: titleGlow 5.5s ease-in-out infinite;
}

@keyframes titleGlow {

    0%,
    100% {
        filter: drop-shadow(0 0 28px rgba(200, 168, 130, 0.35));
        transform: scale(1);
    }

    50% {
        filter: drop-shadow(0 0 42px rgba(212, 146, 111, 0.5));
        transform: scale(1.012);
    }
}

.hero-subtitle {
    font-size: clamp(1.2rem, 3vw, 1.9rem);
    color: #d4b896;
    letter-spacing: 0.12em;
    text-transform: uppercase;
    font-weight: 300;
    margin-top: 2.5rem;
    text-shadow: 0 0 20px rgba(200, 168, 130, 0.25);
}

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

.parliament-outline {
    fill: none;
    stroke: #c8a882;
    stroke-width: 2.5;
    opacity: 0;
    animation: drawParliament 5s ease-out forwards;
}

@keyframes drawParliament {
    to {
        opacity: 0.75;
        stroke-dashoffset: 0;
    }
}

.parliament-outline:nth-child(1) {
    animation-delay: 0s;
}

.parliament-outline:nth-child(2) {
    animation-delay: 0.5s;
    stroke: #d4926f;
}

.parliament-outline:nth-child(3) {
    animation-delay: 1s;
    stroke: #b87f5c;
}

.bridge-line {
    fill: none;
    stroke: #8b7e74;
    stroke-width: 3;
    opacity: 0;
    animation: buildBridge 4s ease-out forwards;
}

@keyframes buildBridge {
    from {
        opacity: 0;
        stroke-dashoffset: 1500;
    }

    to {
        opacity: 0.7;
        stroke-dashoffset: 0;
    }
}

.bridge-line:nth-child(1) {
    animation-delay: 1.5s;
}

.bridge-line:nth-child(2) {
    animation-delay: 1.7s;
    stroke: #c8a882;
}

.bridge-cable {
    fill: none;
    stroke: #d4926f;
    stroke-width: 1.5;
    opacity: 0;
    animation: cableAppear 2.5s ease-out forwards;
}

@keyframes cableAppear {
    to {
        opacity: 0.6;
    }
}

.bridge-cable:nth-child(1) {
    animation-delay: 2.2s;
}

.bridge-cable:nth-child(2) {
    animation-delay: 2.4s;
}

.bridge-cable:nth-child(3) {
    animation-delay: 2.6s;
}

.bridge-cable:nth-child(4) {
    animation-delay: 2.8s;
}

.dome-element {
    fill: none;
    stroke: #c8a882;
    stroke-width: 2;
    opacity: 0;
    animation: domeRise 3s ease-out forwards;
}

@keyframes domeRise {
    from {
        opacity: 0;
        transform: translateY(30px) scale(0.8);
    }

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

.dome-element:nth-child(1) {
    animation-delay: 3s;
}

.dome-element:nth-child(2) {
    animation-delay: 3.2s;
}

.danube-wave {
    fill: none;
    stroke: #2c5f8d;
    stroke-width: 2.5;
    opacity: 0;
    animation: waveFade 3.5s ease-out forwards;
}

@keyframes waveFade {
    to {
        opacity: 0.5;
    }
}

.danube-wave:nth-child(1) {
    animation-delay: 3.5s;
}

.danube-wave:nth-child(2) {
    animation-delay: 3.7s;
    stroke: #4a7ba7;
    stroke-width: 2;
}

.danube-wave:nth-child(3) {
    animation-delay: 3.9s;
    stroke: #6096c8;
    stroke-width: 1.5;
}

.star-light {
    fill: #d4926f;
    opacity: 0;
    animation: twinkle 2s ease-in-out infinite alternate;
}

.star-light:nth-child(1) {
    animation-delay: 4s;
}

.star-light:nth-child(2) {
    animation-delay: 4.3s;
}

.star-light:nth-child(3) {
    animation-delay: 4.6s;
}

@keyframes twinkle {
    from {
        opacity: 0.3;
        transform: scale(0.8);
    }

    to {
        opacity: 0.9;
        transform: scale(1.2);
    }
}

/* 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, #c8a882 0%, #d4926f 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: #c8a882;
    animation: ornamentGlow 3.8s ease-in-out infinite;
}

@keyframes ornamentGlow {

    0%,
    100% {
        opacity: 0.65;
        transform: translateY(-50%) scale(1);
        text-shadow: 0 0 12px rgba(200, 168, 130, 0.35);
    }

    50% {
        opacity: 1;
        transform: translateY(-50%) scale(1.18);
        text-shadow: 0 0 28px rgba(212, 146, 111, 0.7);
    }
}

.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 - Budapest Architecture Design */
.photo-card {
    position: relative;
    overflow: hidden;
    cursor: pointer;
    height: 420px;
    transition: all 0.75s cubic-bezier(0.4, 0, 0.2, 1);
    isolation: isolate;
    z-index: 1;
}

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

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

/* Ornate frame */
.card-frame {
    position: absolute;
    inset: 0;
    background: linear-gradient(135deg, rgba(26, 35, 50, 0.97) 0%, rgba(44, 62, 80, 0.95) 100%);
    border-radius: 18px;
    border: 2.5px solid rgba(200, 168, 130, 0.35);
    box-shadow: 0 14px 42px rgba(44, 95, 141, 0.24),
        0 0 38px rgba(200, 168, 130, 0.14) inset;
    transition: all 0.75s cubic-bezier(0.4, 0, 0.2, 1);
    overflow: hidden;
}

.photo-card:hover .card-frame {
    border-color: rgba(212, 146, 111, 0.65);
    box-shadow: 0 32px 75px rgba(44, 95, 141, 0.38),
        0 0 55px rgba(200, 168, 130, 0.28) inset;
}

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

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

.arch-line-decoration {
    position: absolute;
    background: linear-gradient(90deg, transparent, rgba(200, 168, 130, 0.32), transparent);
    width: 1.5px;
    height: 100%;
    animation: archFlow 5s ease-in-out infinite;
}

.arch-line-decoration:nth-child(1) {
    left: 30%;
    animation-delay: 0s;
}

.arch-line-decoration:nth-child(2) {
    left: 50%;
    background: linear-gradient(90deg, transparent, rgba(212, 146, 111, 0.38), transparent);
    width: 2px;
    animation-delay: 0.6s;
}

.arch-line-decoration:nth-child(3) {
    left: 70%;
    animation-delay: 1.2s;
}

@keyframes archFlow {

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

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

/* Golden hour sweep */
.golden-sweep {
    position: absolute;
    top: -100%;
    left: 0;
    right: 0;
    height: 100%;
    background: linear-gradient(180deg,
            transparent,
            rgba(200, 168, 130, 0.28),
            rgba(212, 146, 111, 0.28),
            transparent);
    z-index: 3;
    pointer-events: none;
}

.photo-card:hover .golden-sweep {
    animation: goldenSweep 3.2s ease-in-out;
}

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

    100% {
        top: 100%;
    }
}

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

.photo-wrapper::before {
    content: '';
    position: absolute;
    inset: 0;
    background: linear-gradient(135deg,
            rgba(200, 168, 130, 0.14) 0%,
            transparent 50%,
            rgba(125, 60, 60, 0.12) 100%);
    z-index: 1;
    pointer-events: none;
    opacity: 0.65;
    transition: opacity 0.65s ease;
}

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

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

.photo-card:hover .photo-image {
    transform: scale(1.16);
    filter: saturate(1.12) contrast(1.16) brightness(1.04);
}

/* 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, 35, 50, 0.97) 0%,
            rgba(44, 62, 80, 0.92) 60%,
            transparent 100%);
    backdrop-filter: blur(28px);
    -webkit-backdrop-filter: blur(28px);
    border-radius: 0 0 18px 18px;
    border-top: 1.5px solid rgba(200, 168, 130, 0.32);
    transform: translateY(0);
    transition: all 0.75s cubic-bezier(0.4, 0, 0.2, 1);
}

.photo-location {
    font-size: clamp(1.6rem, 3vw, 2.1rem);
    font-weight: 600;
    color: #e8dcc8;
    letter-spacing: 0.08em;
    text-transform: uppercase;
    margin: 0;
    transition: all 0.4s ease;
    text-shadow: 0 0 18px rgba(200, 168, 130, 0.25);
}

.photo-card:hover .photo-location {
    color: #d4b896;
    text-shadow: 0 0 28px rgba(212, 146, 111, 0.45);
}

/* Hungarian ornament corners */
.hungarian-corner {
    position: absolute;
    z-index: 4;
    pointer-events: none;
    transition: all 0.65s ease;
}

.corner-tl,
.corner-br,
.corner-tr,
.corner-bl {
    width: 48px;
    height: 48px;
    border: 2.5px solid rgba(200, 168, 130, 0.42);
    border-radius: 5px;
}

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

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

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

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

.photo-card:hover .hungarian-corner {
    border-color: rgba(212, 146, 111, 0.78);
    box-shadow: 0 0 20px rgba(200, 168, 130, 0.48);
}

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

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

/* Footer */
footer {
    background: linear-gradient(135deg, rgba(26, 35, 50, 0.97) 0%, rgba(44, 62, 80, 0.97) 100%);
    backdrop-filter: blur(36px);
    -webkit-backdrop-filter: blur(36px);
    border-top: 2px solid rgba(200, 168, 130, 0.35);
    padding: 3.5rem 2rem;
    margin-top: 5rem;
    text-align: center;
    box-shadow: 0 -4px 30px rgba(44, 95, 141, 0.22);
}

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

.footer-title {
    font-size: clamp(1.4rem, 3vw, 1.6rem);
    background: linear-gradient(135deg, #c8a882 0%, #d4926f 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: #d4b896;
    font-size: 1rem;
    letter-spacing: 0.05em;
    margin-top: 2.5rem;
    font-weight: 300;
}

.footer-credits strong {
    background: linear-gradient(135deg, #c8a882 0%, #d4926f 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: #e8dcc8;
    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(200, 168, 130, 0.35);
    border-radius: 5px;
}

.footer-languages a:hover {
    color: #d4b896;
    border-color: rgba(212, 146, 111, 0.65);
    box-shadow: 0 0 16px rgba(200, 168, 130, 0.38);
}

.footer-languages a.current {
    background: linear-gradient(135deg, rgba(200, 168, 130, 0.25) 0%, rgba(212, 146, 111, 0.25) 100%);
    border-color: rgba(212, 146, 111, 0.52);
}


#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;
    }
}
