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

:root {
    /* Nordic Color Palette */
    --stockholm-blue: #4a90a4;
    --swedish-gold: #ffc627;
    --nordic-ice: #e8f4f8;
    --baltic-navy: #1e3a5f;
    --scandinavian-white: #f9fafb;
    --midnight-fjord: #1a2332;
    --arctic-silver: #b8c5d6;
    --northern-sky: #6ba3b8;
    --midsummer-yellow: #ffd866;

    /* Gradients */
    --gradient-nordic: linear-gradient(135deg, var(--baltic-navy) 0%, var(--stockholm-blue) 50%, var(--midnight-fjord) 100%);
    --gradient-ice: linear-gradient(135deg, var(--nordic-ice) 0%, var(--arctic-silver) 100%);
    --gradient-midnight: linear-gradient(135deg, var(--midnight-fjord) 0%, var(--baltic-navy) 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(74, 144, 164, 0.12);
    --shadow-md: 0 8px 16px rgba(74, 144, 164, 0.2);
    --shadow-lg: 0 16px 32px rgba(74, 144, 164, 0.24);
    --shadow-xl: 0 24px 48px rgba(74, 144, 164, 0.3);
}

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

/* Nordic snowflake pattern background */
body::before {
    content: '';
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background-image:
        radial-gradient(circle at 24% 32%, rgba(107, 163, 184, 0.09) 1.3px, transparent 1.3px),
        radial-gradient(circle at 72% 64%, rgba(74, 144, 164, 0.08) 1.1px, transparent 1.1px),
        radial-gradient(circle at 88% 20%, rgba(184, 197, 214, 0.07) 1px, transparent 1px),
        radial-gradient(circle at 12% 76%, rgba(255, 198, 39, 0.05) 1.2px, transparent 1.2px);
    background-size: 275px 275px, 315px 315px, 205px 205px, 285px 285px;
    background-position: 0 0, 54px 74px, 164px 294px, 84px 134px;
    pointer-events: none;
    z-index: 0;
    animation: nordicDrift 100s linear infinite;
}

@keyframes nordicDrift {
    0% {
        background-position: 0 0, 54px 74px, 164px 294px, 84px 134px;
    }

    100% {
        background-position: 275px 275px, 369px 389px, 369px 499px, 369px 419px;
    }
}

/* Northern lights glow */
body::after {
    content: '';
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background-image:
        radial-gradient(ellipse at 28% 16%, rgba(107, 163, 184, 0.16) 0%, transparent 48%),
        radial-gradient(ellipse at 72% 72%, rgba(74, 144, 164, 0.14) 0%, transparent 52%),
        radial-gradient(ellipse at 50% 50%, rgba(255, 198, 39, 0.1) 0%, transparent 58%);
    animation: auroraGlow 26s ease-in-out infinite alternate;
    pointer-events: none;
    z-index: 0;
}

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

    100% {
        opacity: 0.88;
        transform: scale(1.1) rotate(2deg);
    }
}

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

/* Header */
header {
    background: rgba(26, 35, 50, 0.95);
    backdrop-filter: blur(38px);
    -webkit-backdrop-filter: blur(38px);
    border-bottom: 2px solid rgba(107, 163, 184, 0.35);
    padding: 2rem 3rem;
    position: sticky;
    top: 0;
    z-index: 100;
    box-shadow: 0 4px 30px rgba(74, 144, 164, 0.26),
        0 0 40px rgba(107, 163, 184, 0.16) 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, #6ba3b8 0%, #ffc627 50%, #6ba3b8 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 28px rgba(107, 163, 184, 0.5));
    animation: nordicShimmer 8.5s ease-in-out infinite;
}

@keyframes nordicShimmer {

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

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

.site-title a:hover {
    filter: drop-shadow(0 0 40px rgba(255, 198, 39, 0.7));
    letter-spacing: 0.18em;
}

.site-tagline {
    font-size: clamp(0.9rem, 2vw, 1.05rem);
    color: #d4e4ed;
    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, #6ba3b8, #ffc627);
    transition: width 0.4s ease;
    box-shadow: 0 0 18px rgba(107, 163, 184, 0.56);
}

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

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

#menu li:hover a {
    color: #6ba3b8;
    text-shadow: 0 0 20px rgba(107, 163, 184, 0.5);
}

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

.hero-title {
    font-size: clamp(3.5rem, 10vw, 8rem);
    font-weight: 900;
    background: linear-gradient(135deg, #6ba3b8 0%, #ffc627 50%, #b8c5d6 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 36px rgba(107, 163, 184, 0.44));
    animation: titleGlow 6.8s ease-in-out infinite;
}

@keyframes titleGlow {

    0%,
    100% {
        filter: drop-shadow(0 0 36px rgba(107, 163, 184, 0.44));
        transform: scale(1);
    }

    50% {
        filter: drop-shadow(0 0 54px rgba(255, 198, 39, 0.6));
        transform: scale(1.016);
    }
}

.hero-subtitle {
    font-size: clamp(1.2rem, 3vw, 1.9rem);
    color: #d4e4ed;
    letter-spacing: 0.12em;
    text-transform: uppercase;
    font-weight: 300;
    margin-top: 2.5rem;
    text-shadow: 0 0 26px rgba(107, 163, 184, 0.34);
}

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

.nordic-building {
    fill: none;
    stroke: #6ba3b8;
    stroke-width: 2.4;
    opacity: 0;
    animation: buildingRise 4.5s ease-out forwards;
}

@keyframes buildingRise {
    from {
        opacity: 0;
        transform: translateY(45px);
    }

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

.nordic-building:nth-child(1) {
    animation-delay: 0s;
}

.nordic-building:nth-child(2) {
    animation-delay: 0.4s;
    stroke: #4a90a4;
}

.nordic-building:nth-child(3) {
    animation-delay: 0.8s;
    stroke: #b8c5d6;
}

.nordic-building:nth-child(4) {
    animation-delay: 1.2s;
    stroke: #6ba3b8;
}

.stockholm-spire {
    fill: none;
    stroke: #ffc627;
    stroke-width: 2.2;
    opacity: 0;
    animation: spireAppear 3.5s ease-out forwards;
}

@keyframes spireAppear {
    to {
        opacity: 0.78;
    }
}

.stockholm-spire:nth-child(1) {
    animation-delay: 1.8s;
}

.stockholm-spire:nth-child(2) {
    animation-delay: 2s;
}

.stockholm-spire:nth-child(3) {
    animation-delay: 2.2s;
}

.nordic-window {
    fill: none;
    stroke: #b8c5d6;
    stroke-width: 1.6;
    opacity: 0;
    animation: windowGlow 2.8s ease-out forwards;
}

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

.nordic-window:nth-child(1) {
    animation-delay: 2.6s;
}

.nordic-window:nth-child(2) {
    animation-delay: 2.8s;
}

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

.nordic-window:nth-child(4) {
    animation-delay: 3.2s;
}

.baltic-wave {
    fill: none;
    stroke: #4a90a4;
    stroke-width: 2.3;
    opacity: 0;
    animation: waveFade 3.4s ease-out forwards;
}

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

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

.baltic-wave:nth-child(2) {
    animation-delay: 3.7s;
    stroke: #6ba3b8;
    stroke-width: 2;
}

.baltic-wave:nth-child(3) {
    animation-delay: 3.9s;
    stroke: #b8c5d6;
    stroke-width: 1.7;
}

.midnight-sun {
    fill: #ffc627;
    opacity: 0;
    animation: sunRise 4.5s ease-out forwards;
}

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

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

.midnight-sun:nth-child(1) {
    animation-delay: 4s;
}

.nordic-star {
    fill: #ffd866;
    opacity: 0;
    animation: starTwinkle 2.3s ease-in-out infinite alternate;
}

.nordic-star:nth-child(1) {
    animation-delay: 4.4s;
}

.nordic-star:nth-child(2) {
    animation-delay: 4.6s;
}

.nordic-star:nth-child(3) {
    animation-delay: 4.8s;
}

@keyframes starTwinkle {
    from {
        opacity: 0.4;
        transform: scale(0.88);
    }

    to {
        opacity: 0.96;
        transform: scale(1.14);
    }
}

/* 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, #6ba3b8 0%, #ffc627 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: #6ba3b8;
    animation: snowflakeGlow 4.8s ease-in-out infinite;
}

@keyframes snowflakeGlow {

    0%,
    100% {
        opacity: 0.78;
        transform: translateY(-50%) scale(1) rotate(0deg);
        text-shadow: 0 0 18px rgba(107, 163, 184, 0.48);
    }

    50% {
        opacity: 1;
        transform: translateY(-50%) scale(1.26) rotate(90deg);
        text-shadow: 0 0 38px rgba(255, 198, 39, 0.8);
    }
}

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

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

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

/* Nordic frame */
.card-frame {
    position: absolute;
    inset: 0;
    background: linear-gradient(135deg, rgba(26, 35, 50, 0.98) 0%, rgba(42, 52, 66, 0.96) 100%);
    border-radius: 12px;
    border: 2.5px solid rgba(107, 163, 184, 0.44);
    box-shadow: 0 18px 50px rgba(74, 144, 164, 0.28),
        0 0 46px rgba(107, 163, 184, 0.18) inset;
    transition: all 0.85s cubic-bezier(0.4, 0, 0.2, 1);
    overflow: hidden;
}

.photo-card:hover .card-frame {
    border-color: rgba(255, 198, 39, 0.74);
    box-shadow: 0 40px 88px rgba(74, 144, 164, 0.48),
        0 0 65px rgba(255, 198, 39, 0.36) inset;
}

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

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

.nordic-decoration {
    position: absolute;
    background: linear-gradient(90deg, transparent, rgba(107, 163, 184, 0.4), transparent);
    width: 2.4px;
    height: 100%;
    animation: nordicFlow 6.5s ease-in-out infinite;
}

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

.nordic-decoration:nth-child(2) {
    left: 50%;
    background: linear-gradient(90deg, transparent, rgba(255, 198, 39, 0.42), transparent);
    width: 2.8px;
    animation-delay: 1s;
}

.nordic-decoration:nth-child(3) {
    left: 62%;
    animation-delay: 2s;
}

@keyframes nordicFlow {

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

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

/* Aurora light sweep */
.aurora-sweep {
    position: absolute;
    top: -100%;
    left: 0;
    right: 0;
    height: 100%;
    background: linear-gradient(180deg,
            transparent,
            rgba(107, 163, 184, 0.36),
            rgba(255, 198, 39, 0.36),
            transparent);
    z-index: 3;
    pointer-events: none;
}

.photo-card:hover .aurora-sweep {
    animation: auroraSweep 4s ease-in-out;
}

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

    100% {
        top: 100%;
    }
}

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

.photo-wrapper::before {
    content: '';
    position: absolute;
    inset: 0;
    background: linear-gradient(135deg,
            rgba(107, 163, 184, 0.18) 0%,
            transparent 50%,
            rgba(255, 198, 39, 0.16) 100%);
    z-index: 1;
    pointer-events: none;
    opacity: 0.78;
    transition: opacity 0.78s ease;
}

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

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

.photo-card:hover .photo-image {
    transform: scale(1.22);
    filter: saturate(1.18) contrast(1.2) brightness(1.07);
}

/* 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.98) 0%,
            rgba(42, 52, 66, 0.96) 60%,
            transparent 100%);
    backdrop-filter: blur(36px);
    -webkit-backdrop-filter: blur(36px);
    border-radius: 0 0 12px 12px;
    border-top: 1.5px solid rgba(107, 163, 184, 0.42);
    transform: translateY(0);
    transition: all 0.85s cubic-bezier(0.4, 0, 0.2, 1);
}

.photo-location {
    font-size: clamp(1.6rem, 3vw, 2.1rem);
    font-weight: 600;
    color: #e8f4f8;
    letter-spacing: 0.08em;
    text-transform: uppercase;
    margin: 0;
    transition: all 0.4s ease;
    text-shadow: 0 0 26px rgba(107, 163, 184, 0.34);
}

.photo-card:hover .photo-location {
    color: #d4e4ed;
    text-shadow: 0 0 38px rgba(255, 198, 39, 0.56);
}

/* Nordic geometric corners */
.nordic-corner {
    position: absolute;
    z-index: 4;
    pointer-events: none;
    transition: all 0.78s ease;
}

.corner-tl,
.corner-br,
.corner-tr,
.corner-bl {
    width: 56px;
    height: 56px;
    border: 2.5px solid rgba(107, 163, 184, 0.5);
    border-radius: 1px;
}

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

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

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

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

.photo-card:hover .nordic-corner {
    border-color: rgba(255, 198, 39, 0.86);
    box-shadow: 0 0 28px rgba(107, 163, 184, 0.56);
}

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

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

/* Footer */
footer {
    background: linear-gradient(135deg, rgba(26, 35, 50, 0.98) 0%, rgba(42, 52, 66, 0.98) 100%);
    backdrop-filter: blur(44px);
    -webkit-backdrop-filter: blur(44px);
    border-top: 2px solid rgba(107, 163, 184, 0.44);
    padding: 3.5rem 2rem;
    margin-top: 5rem;
    text-align: center;
    box-shadow: 0 -4px 30px rgba(74, 144, 164, 0.26);
}

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

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

.footer-credits strong {
    background: linear-gradient(135deg, #6ba3b8 0%, #ffc627 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: #e8f4f8;
    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(107, 163, 184, 0.44);
    border-radius: 5px;
}

.footer-languages a:hover {
    color: #d4e4ed;
    border-color: rgba(255, 198, 39, 0.74);
    box-shadow: 0 0 24px rgba(107, 163, 184, 0.46);
}

.footer-languages a.current {
    background: linear-gradient(135deg, rgba(107, 163, 184, 0.34) 0%, rgba(255, 198, 39, 0.34) 100%);
    border-color: rgba(255, 198, 39, 0.62);
}


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