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

:root {
    /* Polish Heritage Color Palette */
    --baltic-amber: #d4a017;
    --crimson-red: #dc143c;
    --gothic-stone: #8b8680;
    --royal-white: #f5f5f0;
    --prussian-blue: #003153;
    --polish-silver: #c0c0c0;
    --brick-red: #9b2d30;
    --midnight-slate: #1a1f2e;
    --amber-glow: #ffd700;

    /* Gradients */
    --gradient-poland: linear-gradient(135deg, var(--crimson-red) 0%, var(--brick-red) 50%, var(--midnight-slate) 100%);
    --gradient-amber: linear-gradient(135deg, var(--baltic-amber) 0%, var(--amber-glow) 100%);
    --gradient-gothic: linear-gradient(135deg, var(--gothic-stone) 0%, var(--prussian-blue) 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(220, 20, 60, 0.12);
    --shadow-md: 0 8px 16px rgba(220, 20, 60, 0.2);
    --shadow-lg: 0 16px 32px rgba(220, 20, 60, 0.24);
    --shadow-xl: 0 24px 48px rgba(220, 20, 60, 0.3);
}

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

/* Polish Gothic pattern background */
body::before {
    content: '';
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background-image:
        radial-gradient(circle at 22% 30%, rgba(212, 160, 23, 0.09) 1.3px, transparent 1.3px),
        radial-gradient(circle at 68% 62%, rgba(220, 20, 60, 0.08) 1px, transparent 1px),
        radial-gradient(circle at 88% 18%, rgba(192, 192, 192, 0.07) 0.9px, transparent 0.9px),
        radial-gradient(circle at 12% 78%, rgba(155, 45, 48, 0.06) 1.2px, transparent 1.2px);
    background-size: 270px 270px, 310px 310px, 200px 200px, 280px 280px;
    background-position: 0 0, 55px 75px, 165px 295px, 85px 135px;
    pointer-events: none;
    z-index: 0;
    animation: gothicDrift 98s linear infinite;
}

@keyframes gothicDrift {
    0% {
        background-position: 0 0, 55px 75px, 165px 295px, 85px 135px;
    }

    100% {
        background-position: 270px 270px, 365px 385px, 365px 495px, 365px 415px;
    }
}

/* Baltic amber glow */
body::after {
    content: '';
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background-image:
        radial-gradient(ellipse at 28% 16%, rgba(212, 160, 23, 0.17) 0%, transparent 46%),
        radial-gradient(ellipse at 72% 72%, rgba(220, 20, 60, 0.14) 0%, transparent 50%),
        radial-gradient(ellipse at 50% 50%, rgba(155, 45, 48, 0.12) 0%, transparent 56%);
    animation: amberGlow 23s ease-in-out infinite alternate;
    pointer-events: none;
    z-index: 0;
}

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

    100% {
        opacity: 0.84;
        transform: scale(1.08) rotate(2deg);
    }
}

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

/* Header */
header {
    background: rgba(26, 31, 46, 0.94);
    backdrop-filter: blur(35px);
    -webkit-backdrop-filter: blur(35px);
    border-bottom: 2px solid rgba(212, 160, 23, 0.33);
    padding: 2rem 3rem;
    position: sticky;
    top: 0;
    z-index: 100;
    box-shadow: 0 4px 30px rgba(220, 20, 60, 0.24),
        0 0 36px rgba(212, 160, 23, 0.14) 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, #d4a017 0%, #dc143c 50%, #d4a017 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 25px rgba(212, 160, 23, 0.46));
    animation: polishShimmer 7.5s ease-in-out infinite;
}

@keyframes polishShimmer {

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

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

.site-title a:hover {
    filter: drop-shadow(0 0 36px rgba(220, 20, 60, 0.66));
    letter-spacing: 0.18em;
}

.site-tagline {
    font-size: clamp(0.9rem, 2vw, 1.05rem);
    color: #e8dac0;
    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, #d4a017, #dc143c);
    transition: width 0.4s ease;
    box-shadow: 0 0 15px rgba(212, 160, 23, 0.52);
}

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

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

#menu li:hover a {
    color: #d4a017;
    text-shadow: 0 0 17px rgba(212, 160, 23, 0.46);
}

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

.hero-title {
    font-size: clamp(3.5rem, 10vw, 8rem);
    font-weight: 900;
    background: linear-gradient(135deg, #d4a017 0%, #dc143c 50%, #c0c0c0 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 32px rgba(212, 160, 23, 0.4));
    animation: titleGlow 6.2s ease-in-out infinite;
}

@keyframes titleGlow {

    0%,
    100% {
        filter: drop-shadow(0 0 32px rgba(212, 160, 23, 0.4));
        transform: scale(1);
    }

    50% {
        filter: drop-shadow(0 0 48px rgba(220, 20, 60, 0.56));
        transform: scale(1.013);
    }
}

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

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

.gothic-spire {
    fill: none;
    stroke: #d4a017;
    stroke-width: 2.8;
    opacity: 0;
    animation: spireRise 4.8s ease-out forwards;
}

@keyframes spireRise {
    from {
        opacity: 0;
        stroke-dashoffset: 300;
        transform: translateY(50px);
    }

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

.gothic-spire:nth-child(1) {
    animation-delay: 0s;
}

.gothic-spire:nth-child(2) {
    animation-delay: 0.5s;
    stroke: #dc143c;
}

.gothic-spire:nth-child(3) {
    animation-delay: 1s;
    stroke: #c0c0c0;
}

.church-arch {
    fill: none;
    stroke: #c0c0c0;
    stroke-width: 2.3;
    opacity: 0;
    animation: archReveal 3.2s ease-out forwards;
}

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

.church-arch:nth-child(1) {
    animation-delay: 1.6s;
}

.church-arch:nth-child(2) {
    animation-delay: 1.8s;
}

.church-arch:nth-child(3) {
    animation-delay: 2s;
}

.church-arch:nth-child(4) {
    animation-delay: 2.2s;
}

.gothic-window {
    fill: none;
    stroke: #d4a017;
    stroke-width: 2;
    opacity: 0;
    animation: windowGlow 2.8s ease-out forwards;
}

@keyframes windowGlow {
    to {
        opacity: 0.68;
    }
}

.gothic-window:nth-child(1) {
    animation-delay: 2.5s;
}

.gothic-window:nth-child(2) {
    animation-delay: 2.7s;
}

.gothic-window:nth-child(3) {
    animation-delay: 2.9s;
}

.hanseatic-house {
    fill: none;
    stroke: #dc143c;
    stroke-width: 2.5;
    opacity: 0;
    animation: houseAppear 3.5s ease-out forwards;
}

@keyframes houseAppear {
    from {
        opacity: 0;
        transform: scale(0.85);
    }

    to {
        opacity: 0.78;
        transform: scale(1);
    }
}

.hanseatic-house:nth-child(1) {
    animation-delay: 3.2s;
}

.hanseatic-house:nth-child(2) {
    animation-delay: 3.4s;
    stroke: #d4a017;
}

.polish-star {
    fill: #d4a017;
    opacity: 0;
    animation: starTwinkle 2.2s ease-in-out infinite alternate;
}

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

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

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

@keyframes starTwinkle {
    from {
        opacity: 0.35;
        transform: scale(0.85);
    }

    to {
        opacity: 0.92;
        transform: scale(1.15);
    }
}

.vistula-wave {
    fill: none;
    stroke: #003153;
    stroke-width: 2.2;
    opacity: 0;
    animation: waveFade 3.3s ease-out forwards;
}

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

.vistula-wave:nth-child(1) {
    animation-delay: 3.8s;
}

.vistula-wave:nth-child(2) {
    animation-delay: 4s;
    stroke: #8b8680;
    stroke-width: 1.8;
}

/* 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, #d4a017 0%, #dc143c 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: #d4a017;
    animation: emblemaGlow 4.2s ease-in-out infinite;
}

@keyframes emblemaGlow {

    0%,
    100% {
        opacity: 0.72;
        transform: translateY(-50%) scale(1);
        text-shadow: 0 0 15px rgba(212, 160, 23, 0.42);
    }

    50% {
        opacity: 1;
        transform: translateY(-50%) scale(1.2);
        text-shadow: 0 0 32px rgba(220, 20, 60, 0.76);
    }
}

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

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

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

/* Gothic frame */
.card-frame {
    position: absolute;
    inset: 0;
    background: linear-gradient(135deg, rgba(26, 31, 46, 0.97) 0%, rgba(42, 47, 62, 0.95) 100%);
    border-radius: 15px;
    border: 2.5px solid rgba(212, 160, 23, 0.4);
    box-shadow: 0 16px 46px rgba(220, 20, 60, 0.26),
        0 0 42px rgba(212, 160, 23, 0.16) inset;
    transition: all 0.78s cubic-bezier(0.4, 0, 0.2, 1);
    overflow: hidden;
}

.photo-card:hover .card-frame {
    border-color: rgba(220, 20, 60, 0.7);
    box-shadow: 0 36px 82px rgba(220, 20, 60, 0.44),
        0 0 60px rgba(212, 160, 23, 0.32) inset;
}

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

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

.tracery-decoration {
    position: absolute;
    background: linear-gradient(90deg, transparent, rgba(212, 160, 23, 0.36), transparent);
    width: 2px;
    height: 100%;
    animation: traceryFlow 5.8s ease-in-out infinite;
}

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

.tracery-decoration:nth-child(2) {
    left: 50%;
    background: linear-gradient(90deg, transparent, rgba(220, 20, 60, 0.38), transparent);
    width: 2.4px;
    animation-delay: 0.8s;
}

.tracery-decoration:nth-child(3) {
    left: 66%;
    animation-delay: 1.6s;
}

@keyframes traceryFlow {

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

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

/* Amber light sweep */
.amber-sweep {
    position: absolute;
    top: -100%;
    left: 0;
    right: 0;
    height: 100%;
    background: linear-gradient(180deg,
            transparent,
            rgba(212, 160, 23, 0.32),
            rgba(220, 20, 60, 0.32),
            transparent);
    z-index: 3;
    pointer-events: none;
}

.photo-card:hover .amber-sweep {
    animation: amberSweep 3.6s ease-in-out;
}

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

    100% {
        top: 100%;
    }
}

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

.photo-wrapper::before {
    content: '';
    position: absolute;
    inset: 0;
    background: linear-gradient(135deg,
            rgba(212, 160, 23, 0.16) 0%,
            transparent 50%,
            rgba(220, 20, 60, 0.14) 100%);
    z-index: 1;
    pointer-events: none;
    opacity: 0.72;
    transition: opacity 0.72s ease;
}

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

.photo-image {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: all 1.15s cubic-bezier(0.4, 0, 0.2, 1);
    filter: saturate(0.86) contrast(1.09) brightness(0.92);
}

.photo-card:hover .photo-image {
    transform: scale(1.19);
    filter: saturate(1.14) contrast(1.17) brightness(1.05);
}

/* 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, 31, 46, 0.97) 0%,
            rgba(42, 47, 62, 0.94) 60%,
            transparent 100%);
    backdrop-filter: blur(32px);
    -webkit-backdrop-filter: blur(32px);
    border-radius: 0 0 15px 15px;
    border-top: 1.5px solid rgba(212, 160, 23, 0.38);
    transform: translateY(0);
    transition: all 0.78s cubic-bezier(0.4, 0, 0.2, 1);
}

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

.photo-card:hover .photo-location {
    color: #e8dac0;
    text-shadow: 0 0 34px rgba(220, 20, 60, 0.52);
}

/* Polish emblem corners */
.polish-corner {
    position: absolute;
    z-index: 4;
    pointer-events: none;
    transition: all 0.72s ease;
}

.corner-tl,
.corner-br,
.corner-tr,
.corner-bl {
    width: 52px;
    height: 52px;
    border: 2.5px solid rgba(212, 160, 23, 0.46);
    border-radius: 3px;
}

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

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

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

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

.photo-card:hover .polish-corner {
    border-color: rgba(220, 20, 60, 0.82);
    box-shadow: 0 0 24px rgba(212, 160, 23, 0.52);
}

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

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

/* Footer */
footer {
    background: linear-gradient(135deg, rgba(26, 31, 46, 0.97) 0%, rgba(42, 47, 62, 0.97) 100%);
    backdrop-filter: blur(40px);
    -webkit-backdrop-filter: blur(40px);
    border-top: 2px solid rgba(212, 160, 23, 0.4);
    padding: 3.5rem 2rem;
    margin-top: 5rem;
    text-align: center;
    box-shadow: 0 -4px 30px rgba(220, 20, 60, 0.24);
}

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

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

.footer-credits strong {
    background: linear-gradient(135deg, #d4a017 0%, #dc143c 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: #f0ebe0;
    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, 160, 23, 0.4);
    border-radius: 5px;
}

.footer-languages a:hover {
    color: #e8dac0;
    border-color: rgba(220, 20, 60, 0.7);
    box-shadow: 0 0 20px rgba(212, 160, 23, 0.42);
}

.footer-languages a.current {
    background: linear-gradient(135deg, rgba(212, 160, 23, 0.3) 0%, rgba(220, 20, 60, 0.3) 100%);
    border-color: rgba(220, 20, 60, 0.58);
}


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