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

:root {
    /* Italian Renaissance Color Palette */
    --tuscan-terracotta: #c1440e;
    --florentine-gold: #d4a574;
    --renaissance-cream: #f8f4e6;
    --venetian-red: #8b3a3a;
    --italian-marble: #e8e2d5;
    --verde-italia: #4a7c59;
    --roman-bronze: #a07855;
    --midnight-blue: #1e2a3a;
    --sienna-orange: #b85c38;

    /* Gradients */
    --gradient-italia: linear-gradient(135deg, var(--tuscan-terracotta) 0%, var(--venetian-red) 50%, var(--midnight-blue) 100%);
    --gradient-renaissance: linear-gradient(135deg, var(--florentine-gold) 0%, var(--roman-bronze) 100%);
    --gradient-sunset: linear-gradient(135deg, var(--sienna-orange) 0%, var(--tuscan-terracotta) 50%, var(--venetian-red) 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, 68, 14, 0.12);
    --shadow-md: 0 8px 16px rgba(193, 68, 14, 0.2);
    --shadow-lg: 0 16px 32px rgba(193, 68, 14, 0.24);
    --shadow-xl: 0 24px 48px rgba(193, 68, 14, 0.3);
}

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

/* Italian piazza pattern background */
body::before {
    content: '';
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background-image:
        radial-gradient(circle at 25% 35%, rgba(212, 165, 116, 0.09) 1.2px, transparent 1.2px),
        radial-gradient(circle at 65% 60%, rgba(193, 68, 14, 0.08) 1px, transparent 1px),
        radial-gradient(circle at 85% 20%, rgba(160, 120, 85, 0.07) 0.8px, transparent 0.8px),
        radial-gradient(circle at 15% 75%, rgba(139, 58, 58, 0.06) 1.3px, transparent 1.3px);
    background-size: 260px 260px, 300px 300px, 190px 190px, 270px 270px;
    background-position: 0 0, 50px 70px, 160px 290px, 80px 130px;
    pointer-events: none;
    z-index: 0;
    animation: piazzaDrift 95s linear infinite;
}

@keyframes piazzaDrift {
    0% {
        background-position: 0 0, 50px 70px, 160px 290px, 80px 130px;
    }

    100% {
        background-position: 260px 260px, 350px 370px, 350px 480px, 350px 400px;
    }
}

/* Tuscan sunset glow */
body::after {
    content: '';
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background-image:
        radial-gradient(ellipse at 25% 18%, rgba(212, 165, 116, 0.16) 0%, transparent 48%),
        radial-gradient(ellipse at 75% 78%, rgba(193, 68, 14, 0.14) 0%, transparent 52%),
        radial-gradient(ellipse at 50% 50%, rgba(139, 58, 58, 0.11) 0%, transparent 58%);
    animation: tuscanGlow 24s ease-in-out infinite alternate;
    pointer-events: none;
    z-index: 0;
}

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

    100% {
        opacity: 0.82;
        transform: scale(1.07) rotate(2deg);
    }
}

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

/* Header */
header {
    background: rgba(30, 42, 58, 0.94);
    backdrop-filter: blur(34px);
    -webkit-backdrop-filter: blur(34px);
    border-bottom: 2px solid rgba(212, 165, 116, 0.32);
    padding: 2rem 3rem;
    position: sticky;
    top: 0;
    z-index: 100;
    box-shadow: 0 4px 30px rgba(193, 68, 14, 0.24),
        0 0 38px rgba(212, 165, 116, 0.13) 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, #d4a574 0%, #c1440e 50%, #d4a574 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 24px rgba(212, 165, 116, 0.45));
    animation: renaissanceShimmer 8s ease-in-out infinite;
}

@keyframes renaissanceShimmer {

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

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

.site-title a:hover {
    filter: drop-shadow(0 0 35px rgba(193, 68, 14, 0.65));
    letter-spacing: 0.18em;
}

.site-tagline {
    font-size: clamp(0.9rem, 2vw, 1.05rem);
    color: #e8d4b8;
    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, #d4a574, #c1440e);
    transition: width 0.4s ease;
    box-shadow: 0 0 14px rgba(212, 165, 116, 0.5);
}

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

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

#menu li:hover a {
    color: #d4a574;
    text-shadow: 0 0 16px rgba(212, 165, 116, 0.45);
}

/* Hero Section */
.hero-section {
    text-align: center;
    padding: 6rem 2rem 5rem;
    position: relative;
    overflow: hidden;
    background: linear-gradient(135deg, rgba(30, 42, 58, 0.91) 0%, rgba(45, 62, 80, 0.87) 100%);
}

.hero-title {
    font-size: clamp(3.5rem, 10vw, 8rem);
    font-weight: 900;
    background: linear-gradient(135deg, #d4a574 0%, #c1440e 50%, #a07855 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 30px rgba(212, 165, 116, 0.38));
    animation: italianGlow 6s ease-in-out infinite;
}

@keyframes italianGlow {

    0%,
    100% {
        filter: drop-shadow(0 0 30px rgba(212, 165, 116, 0.38));
        transform: scale(1);
    }

    50% {
        filter: drop-shadow(0 0 45px rgba(193, 68, 14, 0.55));
        transform: scale(1.014);
    }
}

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

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

.tower-line {
    fill: none;
    stroke: #d4a574;
    stroke-width: 3;
    opacity: 0;
    animation: drawTower 4.5s ease-out forwards;
}

@keyframes drawTower {
    to {
        opacity: 0.8;
        stroke-dashoffset: 0;
    }
}

.tower-line:nth-child(1) {
    animation-delay: 0s;
}

.tower-line:nth-child(2) {
    animation-delay: 0.4s;
    stroke: #c1440e;
}

.tower-line:nth-child(3) {
    animation-delay: 0.8s;
    stroke: #a07855;
}

.dome-arc {
    fill: none;
    stroke: #d4a574;
    stroke-width: 2.5;
    opacity: 0;
    animation: domeAppear 3.5s ease-out forwards;
}

@keyframes domeAppear {
    from {
        opacity: 0;
        transform: scale(0.7) translateY(40px);
    }

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

.dome-arc:nth-child(1) {
    animation-delay: 1.3s;
}

.dome-arc:nth-child(2) {
    animation-delay: 1.5s;
    stroke: #c1440e;
}

.dome-arc:nth-child(3) {
    animation-delay: 1.7s;
    stroke: #a07855;
}

.arcade-arch {
    fill: none;
    stroke: #a07855;
    stroke-width: 2;
    opacity: 0;
    animation: archReveal 3s ease-out forwards;
}

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

.arcade-arch:nth-child(1) {
    animation-delay: 2s;
}

.arcade-arch:nth-child(2) {
    animation-delay: 2.2s;
}

.arcade-arch:nth-child(3) {
    animation-delay: 2.4s;
}

.arcade-arch:nth-child(4) {
    animation-delay: 2.6s;
}

.arcade-arch:nth-child(5) {
    animation-delay: 2.8s;
}

.renaissance-window {
    fill: none;
    stroke: #d4a574;
    stroke-width: 1.8;
    opacity: 0;
    animation: windowGlow 2.5s ease-out forwards;
}

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

.renaissance-window:nth-child(1) {
    animation-delay: 3.2s;
}

.renaissance-window:nth-child(2) {
    animation-delay: 3.4s;
}

.renaissance-window:nth-child(3) {
    animation-delay: 3.6s;
}

.italian-sun {
    fill: #c1440e;
    opacity: 0;
    animation: sunRise 4s ease-out forwards;
}

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

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

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

.cypress-tree {
    fill: #4a7c59;
    opacity: 0;
    animation: treeGrow 3s ease-out forwards;
}

@keyframes treeGrow {
    from {
        opacity: 0;
        transform: scaleY(0);
        transform-origin: bottom;
    }

    to {
        opacity: 0.6;
        transform: scaleY(1);
    }
}

.cypress-tree:nth-child(1) {
    animation-delay: 4.2s;
}

.cypress-tree:nth-child(2) {
    animation-delay: 4.4s;
}

/* 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, #d4a574 0%, #c1440e 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: #d4a574;
    animation: florenceGlow 4s ease-in-out infinite;
}

@keyframes florenceGlow {

    0%,
    100% {
        opacity: 0.7;
        transform: translateY(-50%) scale(1);
        text-shadow: 0 0 14px rgba(212, 165, 116, 0.4);
    }

    50% {
        opacity: 1;
        transform: translateY(-50%) scale(1.22);
        text-shadow: 0 0 30px rgba(193, 68, 14, 0.75);
    }
}

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

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

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

/* Renaissance frame */
.card-frame {
    position: absolute;
    inset: 0;
    background: linear-gradient(135deg, rgba(30, 42, 58, 0.97) 0%, rgba(45, 62, 80, 0.95) 100%);
    border-radius: 16px;
    border: 2.5px solid rgba(212, 165, 116, 0.38);
    box-shadow: 0 15px 45px rgba(193, 68, 14, 0.26),
        0 0 40px rgba(212, 165, 116, 0.15) inset;
    transition: all 0.8s cubic-bezier(0.4, 0, 0.2, 1);
    overflow: hidden;
}

.photo-card:hover .card-frame {
    border-color: rgba(193, 68, 14, 0.68);
    box-shadow: 0 35px 80px rgba(193, 68, 14, 0.42),
        0 0 58px rgba(212, 165, 116, 0.3) inset;
}

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

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

.column-decoration {
    position: absolute;
    background: linear-gradient(90deg, transparent, rgba(212, 165, 116, 0.35), transparent);
    width: 1.8px;
    height: 100%;
    animation: columnFlow 5.5s ease-in-out infinite;
}

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

.column-decoration:nth-child(2) {
    left: 50%;
    background: linear-gradient(90deg, transparent, rgba(193, 68, 14, 0.4), transparent);
    width: 2.2px;
    animation-delay: 0.7s;
}

.column-decoration:nth-child(3) {
    left: 68%;
    animation-delay: 1.4s;
}

@keyframes columnFlow {

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

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

/* Tuscan light sweep */
.tuscan-sweep {
    position: absolute;
    top: -100%;
    left: 0;
    right: 0;
    height: 100%;
    background: linear-gradient(180deg,
            transparent,
            rgba(212, 165, 116, 0.3),
            rgba(193, 68, 14, 0.3),
            transparent);
    z-index: 3;
    pointer-events: none;
}

.photo-card:hover .tuscan-sweep {
    animation: tuscanSweep 3.4s ease-in-out;
}

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

    100% {
        top: 100%;
    }
}

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

.photo-wrapper::before {
    content: '';
    position: absolute;
    inset: 0;
    background: linear-gradient(135deg,
            rgba(212, 165, 116, 0.15) 0%,
            transparent 50%,
            rgba(193, 68, 14, 0.13) 100%);
    z-index: 1;
    pointer-events: none;
    opacity: 0.7;
    transition: opacity 0.7s ease;
}

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

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

.photo-card:hover .photo-image {
    transform: scale(1.2);
    filter: saturate(1.15) contrast(1.18) 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(30, 42, 58, 0.97) 0%,
            rgba(45, 62, 80, 0.93) 60%,
            transparent 100%);
    backdrop-filter: blur(30px);
    -webkit-backdrop-filter: blur(30px);
    border-radius: 0 0 16px 16px;
    border-top: 1.5px solid rgba(212, 165, 116, 0.35);
    transform: translateY(0);
    transition: all 0.8s cubic-bezier(0.4, 0, 0.2, 1);
}

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

.photo-card:hover .photo-location {
    color: #e8d4b8;
    text-shadow: 0 0 32px rgba(193, 68, 14, 0.5);
}

/* Renaissance corners */
.renaissance-corner {
    position: absolute;
    z-index: 4;
    pointer-events: none;
    transition: all 0.7s ease;
}

.corner-tl,
.corner-br,
.corner-tr,
.corner-bl {
    width: 50px;
    height: 50px;
    border: 2.5px solid rgba(212, 165, 116, 0.45);
    border-radius: 4px;
}

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

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

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

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

.photo-card:hover .renaissance-corner {
    border-color: rgba(193, 68, 14, 0.8);
    box-shadow: 0 0 22px rgba(212, 165, 116, 0.5);
}

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

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

/* Footer */
footer {
    background: linear-gradient(135deg, rgba(30, 42, 58, 0.97) 0%, rgba(45, 62, 80, 0.97) 100%);
    backdrop-filter: blur(38px);
    -webkit-backdrop-filter: blur(38px);
    border-top: 2px solid rgba(212, 165, 116, 0.38);
    padding: 3.5rem 2rem;
    margin-top: 5rem;
    text-align: center;
    box-shadow: 0 -4px 30px rgba(193, 68, 14, 0.24);
}

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

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

.footer-credits strong {
    background: linear-gradient(135deg, #d4a574 0%, #c1440e 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: #f0e6d2;
    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, 165, 116, 0.38);
    border-radius: 5px;
}

.footer-languages a:hover {
    color: #e8d4b8;
    border-color: rgba(193, 68, 14, 0.68);
    box-shadow: 0 0 18px rgba(212, 165, 116, 0.4);
}

.footer-languages a.current {
    background: linear-gradient(135deg, rgba(212, 165, 116, 0.28) 0%, rgba(193, 68, 14, 0.28) 100%);
    border-color: rgba(193, 68, 14, 0.55);
}


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