@import url('https://fonts.googleapis.com/css2?family=Bangers&family=Permanent+Marker&family=Creepster&family=Rubik+Spray+Paint&family=Monoton&family=Bungee+Shade&family=Rock+Salt&family=Bebas+Neue:wght@400&display=swap');

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

body {
    font-family: 'Bebas Neue', 'Arial Black', sans-serif;
    background: linear-gradient(145deg, #1a1a2e 0%, #16213e 25%, #0f3460 50%, #533483 75%, #e94560 100%);
    color: #ffffff;
    overflow-x: hidden;
    position: relative;
    min-height: 100vh;
}

/* Graffiti brick wall texture overlay */
body::before {
    content: '';
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background-image:
        repeating-linear-gradient(0deg,
            transparent,
            transparent 35px,
            rgba(255, 255, 255, 0.03) 35px,
            rgba(255, 255, 255, 0.03) 38px),
        repeating-linear-gradient(90deg,
            transparent,
            transparent 75px,
            rgba(255, 255, 255, 0.03) 75px,
            rgba(255, 255, 255, 0.03) 78px);
    pointer-events: none;
    z-index: 0;
}

/* Paint drip effect */
body::after {
    content: '';
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background-image:
        radial-gradient(ellipse at 15% 10%, rgba(233, 69, 96, 0.15) 0%, transparent 40%),
        radial-gradient(ellipse at 85% 20%, rgba(255, 215, 0, 0.12) 0%, transparent 40%),
        radial-gradient(ellipse at 50% 80%, rgba(0, 255, 255, 0.1) 0%, transparent 50%);
    animation: sprayPaint 8s ease-in-out infinite alternate;
    pointer-events: none;
    z-index: 0;
}

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

    100% {
        opacity: 0.8;
        transform: scale(1.05) rotate(3deg);
    }
}

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

/* Urban Graffiti Header */
header {
    background: rgba(26, 26, 46, 0.95);
    -webkit-backdrop-filter: blur(20px);
    backdrop-filter: blur(20px);
    border-bottom: 4px solid transparent;
    border-image: linear-gradient(90deg, #e94560, #ffd700, #00ffff, #ff00ff) 1;
    padding: 1.5rem 3rem;
    position: sticky;
    top: 0;
    z-index: 100;
    box-shadow: 0 4px 30px rgba(233, 69, 96, 0.4),
        0 0 60px rgba(255, 215, 0, 0.2) 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: 2.8rem;
    font-weight: 900;
    font-family: 'Bangers', cursive;
    background: linear-gradient(135deg, #e94560 0%, #ffd700 25%, #00ffff 50%, #ff00ff 75%, #e94560 100%);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
    letter-spacing: 8px;
    text-transform: uppercase;
    transition: all 0.4s ease;
    position: relative;
    filter: drop-shadow(0 0 20px rgba(233, 69, 96, 0.8)) drop-shadow(0 0 40px rgba(255, 215, 0, 0.5));
    animation: glitchText 3s infinite;
}

@keyframes glitchText {

    0%,
    90%,
    100% {
        transform: skew(0deg);
    }

    92% {
        transform: skew(-2deg);
    }

    94% {
        transform: skew(2deg);
    }
}

.site-title a:hover {
    filter: drop-shadow(0 0 30px rgba(233, 69, 96, 1)) drop-shadow(0 0 60px rgba(255, 215, 0, 0.8));
    letter-spacing: 12px;
    animation: wildGlitch 0.5s infinite;
}

@keyframes wildGlitch {

    0%,
    100% {
        transform: skew(0deg) translateX(0);
    }

    25% {
        transform: skew(-3deg) translateX(-2px);
    }

    75% {
        transform: skew(3deg) translateX(2px);
    }
}

.site-tagline {
    font-size: 1.1rem;
    color: #00ffff;
    letter-spacing: 4px;
    text-transform: uppercase;
    margin-top: 0.5rem;
    font-weight: 400;
    font-family: 'Permanent Marker', cursive;
    text-shadow: 0 0 20px rgba(0, 255, 255, 0.8), 2px 2px 0 #e94560;
}

/* Navigation Menu */
#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.1rem;
    line-height: 2.5rem;
    position: relative;
}

#menu li::before {
    content: '';
    position: absolute;
    bottom: -5px;
    left: 50%;
    transform: translateX(-50%) skew(-10deg);
    width: 0;
    height: 3px;
    background: linear-gradient(90deg, #e94560, #ffd700, #00ffff);
    transition: width 0.4s ease;
    box-shadow: 0 0 15px rgba(233, 69, 96, 1);
}

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

#menu a {
    text-decoration: none;
    color: #ffffff;
    text-transform: uppercase;
    letter-spacing: 2px;
    font-weight: 600;
    transition: all 0.3s ease;
    font-family: 'Bebas Neue', sans-serif;
    font-size: 1.3rem;
}

#menu li:hover a {
    color: #ffd700;
    text-shadow: 0 0 20px rgba(255, 215, 0, 1), 0 0 30px rgba(233, 69, 96, 0.8);
    transform: translateY(-3px);
}

/* Hero Section - Graffiti Explosion */
.hero-section {
    text-align: center;
    padding: 5rem 2rem 4rem;
    position: relative;
    overflow: hidden;
    background: linear-gradient(135deg, rgba(26, 26, 46, 0.9) 0%, rgba(83, 52, 131, 0.7) 100%);
}

.hero-title {
    font-size: 7rem;
    font-weight: 900;
    font-family: 'Bangers', cursive;
    background: linear-gradient(135deg, #e94560 0%, #ffd700 20%, #00ffff 40%, #ff00ff 60%, #39ff14 80%, #e94560 100%);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
    background-size: 200% auto;
    margin-bottom: 1.5rem;
    text-transform: uppercase;
    letter-spacing: 15px;
    position: relative;
    filter: drop-shadow(0 0 30px rgba(233, 69, 96, 0.6));
    animation: graffitiFade 4s ease-in-out infinite, slideBackground 3s linear infinite;
    transform: skew(-5deg);
}

@keyframes graffitiFade {

    0%,
    100% {
        filter: drop-shadow(0 0 30px rgba(233, 69, 96, 0.6));
        transform: skew(-5deg) scale(1);
    }

    50% {
        filter: drop-shadow(0 0 50px rgba(255, 215, 0, 0.9)) drop-shadow(0 0 70px rgba(0, 255, 255, 0.7));
        transform: skew(-3deg) scale(1.02);
    }
}

@keyframes slideBackground {
    to {
        background-position: 200% center;
    }
}

.hero-subtitle {
    font-size: 1.8rem;
    color: #ffd700;
    letter-spacing: 6px;
    text-transform: uppercase;
    font-weight: 400;
    margin-top: 2rem;
    text-shadow: 0 0 25px rgba(255, 215, 0, 0.8), 3px 3px 0 #e94560, -2px -2px 0 #00ffff;
    font-family: 'Permanent Marker', cursive;
    animation: neonFlicker 2s infinite alternate;
}

@keyframes neonFlicker {

    0%,
    100% {
        opacity: 1;
        text-shadow: 0 0 25px rgba(255, 215, 0, 0.8), 3px 3px 0 #e94560, -2px -2px 0 #00ffff;
    }

    50% {
        opacity: 0.9;
        text-shadow: 0 0 35px rgba(255, 215, 0, 1), 3px 3px 0 #e94560, -2px -2px 0 #00ffff;
    }
}

/* Graffiti Spray Can SVG Animation */
.graffiti-svg {
    width: 100%;
    height: 280px;
    margin-top: 3rem;
}

.spray-can {
    fill: #e94560;
    opacity: 0;
    animation: sprayAppear 1.5s ease-out forwards;
}

@keyframes sprayAppear {
    from {
        transform: translateY(100px) rotate(-45deg);
        opacity: 0;
    }

    to {
        transform: translateY(0) rotate(0deg);
        opacity: 1;
    }
}

.spray-paint {
    fill: none;
    stroke-width: 4;
    stroke-linecap: round;
    opacity: 0;
    animation: sprayCurve 2s ease-out forwards;
}

.spray-paint:nth-child(1) {
    stroke: #ffd700;
    animation-delay: 0.5s;
}

.spray-paint:nth-child(2) {
    stroke: #00ffff;
    animation-delay: 0.8s;
}

.spray-paint:nth-child(3) {
    stroke: #ff00ff;
    animation-delay: 1.1s;
}

.spray-paint:nth-child(4) {
    stroke: #39ff14;
    animation-delay: 1.4s;
}

@keyframes sprayCurve {
    from {
        stroke-dasharray: 1000;
        stroke-dashoffset: 1000;
        opacity: 0;
    }

    to {
        stroke-dasharray: 1000;
        stroke-dashoffset: 0;
        opacity: 0.9;
    }
}

.paint-splatter {
    opacity: 0;
    animation: splatter 1s ease-out forwards;
}

.paint-splatter:nth-child(1) {
    fill: #e94560;
    animation-delay: 1.7s;
}

.paint-splatter:nth-child(2) {
    fill: #ffd700;
    animation-delay: 1.9s;
}

.paint-splatter:nth-child(3) {
    fill: #00ffff;
    animation-delay: 2.1s;
}

@keyframes splatter {
    from {
        transform: scale(0) rotate(0deg);
        opacity: 0;
    }

    to {
        transform: scale(1) rotate(360deg);
        opacity: 0.8;
    }
}

.drip {
    fill: #ffd700;
    opacity: 0;
    animation: paintDrip 2s ease-in-out infinite;
}

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

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

@keyframes paintDrip {

    0%,
    100% {
        transform: translateY(0);
        opacity: 0;
    }

    20% {
        opacity: 1;
    }

    100% {
        transform: translateY(50px);
        opacity: 0;
    }
}

/* Street Art Gallery Section */
.street-gallery {
    max-width: 1600px;
    margin: 3rem auto;
    padding: 0 2rem 4rem;
}

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

.region-title {
    font-size: 3.5rem;
    font-weight: 900;
    font-family: 'Bangers', cursive;
    background: linear-gradient(135deg, #e94560 0%, #ffd700 50%, #00ffff 100%);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
    text-transform: uppercase;
    letter-spacing: 10px;
    margin-bottom: 3rem;
    position: relative;
    padding-left: 30px;
    transform: skew(-5deg);
    text-shadow: 3px 3px 0 rgba(233, 69, 96, 0.3);
}

.region-title::before {
    content: '';
    position: absolute;
    left: 0;
    top: 50%;
    transform: translateY(-50%) skew(-15deg);
    width: 8px;
    height: 100%;
    background: linear-gradient(180deg, #e94560, #ffd700, #00ffff);
    box-shadow: 0 0 20px rgba(233, 69, 96, 1), 0 0 40px rgba(255, 215, 0, 0.6);
    border-radius: 5px;
}

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

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

/* Street Art Card - Wild & Urban */
.art-card {
    position: relative;
    overflow: hidden;
    cursor: pointer;
    transition: all 0.6s cubic-bezier(0.4, 0, 0.2, 1);
    isolation: isolate;
    z-index: 1;
}

.art-card:hover {
    transform: translateY(-25px) scale(1.05) rotate(2deg);
    z-index: 10;
}

/* Graffiti border effect */
.card-container {
    display: flex;
    flex-direction: column;
    position: relative;
    background: linear-gradient(135deg, rgba(26, 26, 46, 0.95) 0%, rgba(83, 52, 131, 0.9) 100%);
    border-radius: 20px;
    border: 3px solid transparent;
    background-clip: padding-box;
    box-shadow: 0 10px 50px rgba(233, 69, 96, 0.4),
        0 0 30px rgba(255, 215, 0, 0.2) inset,
        inset 0 0 0 3px rgba(26, 26, 46, 0.95);
    transition: all 0.6s cubic-bezier(0.4, 0, 0.2, 1);
    overflow: hidden;
}

.card-container::before {
    content: '';
    position: absolute;
    inset: -3px;
    background: linear-gradient(135deg, #e94560, #ffd700, #00ffff, #ff00ff);
    border-radius: 20px;
    z-index: -1;
    opacity: 0.8;
}

.art-card:hover .card-container {
    box-shadow: 0 25px 70px rgba(233, 69, 96, 0.6),
        0 0 60px rgba(255, 215, 0, 0.4) inset,
        inset 0 0 0 3px rgba(26, 26, 46, 0.95);
}

.art-card:hover .card-container::before {
    opacity: 1;
    animation: rotateBorder 3s linear infinite;
}

@keyframes rotateBorder {
    to {
        transform: rotate(360deg);
    }
}

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

.art-card:hover .spray-lines {
    opacity: 1;
}

.spray-line {
    position: absolute;
    width: 3px;
    height: 100%;
    animation: sprayMove 2s ease-in-out infinite;
}

.spray-line:nth-child(1) {
    left: 15%;
    background: linear-gradient(180deg, transparent, rgba(233, 69, 96, 0.6), transparent);
    animation-delay: 0s;
}

.spray-line:nth-child(2) {
    left: 35%;
    background: linear-gradient(180deg, transparent, rgba(255, 215, 0, 0.6), transparent);
    animation-delay: 0.5s;
}

.spray-line:nth-child(3) {
    left: 55%;
    background: linear-gradient(180deg, transparent, rgba(0, 255, 255, 0.6), transparent);
    animation-delay: 1s;
}

.spray-line:nth-child(4) {
    left: 75%;
    background: linear-gradient(180deg, transparent, rgba(255, 0, 255, 0.6), transparent);
    animation-delay: 0.3s;
}

@keyframes sprayMove {

    0%,
    100% {
        opacity: 0.3;
        height: 100%;
    }

    50% {
        opacity: 1;
        height: 130%;
    }
}

/* Tag scan effect */
.tag-scan {
    position: absolute;
    top: -100%;
    left: 0;
    right: 0;
    height: 100%;
    background: linear-gradient(180deg,
            transparent,
            rgba(255, 215, 0, 0.4),
            transparent);
    z-index: 3;
    pointer-events: none;
    box-shadow: 0 0 30px rgba(255, 215, 0, 0.8);
}

.art-card:hover .tag-scan {
    animation: tagSweep 2s ease-in-out;
}

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

    100% {
        top: 100%;
    }
}

/* Image Container */
.art-image-wrapper {
    position: relative;
    width: 100%;
    aspect-ratio: 4/3;
    overflow: hidden;
    border-radius: 20px;
}

/* Portrait orientation - manually add this class to portrait images */
.art-image-wrapper.portrait {
    aspect-ratio: 3/4;
}

.art-image-wrapper::before {
    content: '';
    position: absolute;
    inset: 0;
    background: linear-gradient(135deg,
            rgba(233, 69, 96, 0.3) 0%,
            transparent 50%,
            rgba(0, 255, 255, 0.3) 100%);
    z-index: 1;
    pointer-events: none;
    opacity: 0.5;
    transition: opacity 0.5s ease;
    mix-blend-mode: overlay;
}

.art-card:hover .art-image-wrapper::before {
    opacity: 0.8;
}

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

.art-card:hover .art-image {
    transform: scale(1.15) rotate(-2deg);
    filter: saturate(1.5) contrast(1.3) brightness(1.1) hue-rotate(5deg);
}

/* Art Info Overlay */
.art-info {
    position: relative;
    padding: 2rem;
    z-index: 5;
    background: linear-gradient(to top,
            rgba(26, 26, 46, 0.98) 0%,
            rgba(83, 52, 131, 0.85) 60%,
            transparent 100%);
    -webkit-backdrop-filter: blur(15px);
    backdrop-filter: blur(15px);
    border-radius: 0 0 20px 20px;
    border-top: 2px solid transparent;
    border-image: linear-gradient(90deg, #e94560, #ffd700, #00ffff) 1;
    transform: translateY(0);
    transition: all 0.6s cubic-bezier(0.4, 0, 0.2, 1);
    flex-shrink: 0;
}

.art-location {
    font-size: 2.2rem;
    font-weight: 900;
    font-family: 'Bangers', cursive;
    color: #ffd700;
    letter-spacing: 5px;
    text-transform: uppercase;
    margin: 0;
    transition: all 0.3s ease;
    text-shadow: 0 0 20px rgba(255, 215, 0, 0.8), 3px 3px 0 #e94560, -2px -2px 0 #00ffff;
    transform: skew(-3deg);
}

.art-card:hover .art-location {
    color: #00ffff;
    text-shadow: 0 0 30px rgba(0, 255, 255, 1), 3px 3px 0 #e94560, -2px -2px 0 #ffd700;
    transform: skew(-3deg) translateX(5px);
}

/* Graffiti tag corners */
.tag-frame {
    position: absolute;
    z-index: 4;
    pointer-events: none;
    transition: all 0.5s ease;
}

.tag-tl {
    top: 15px;
    left: 15px;
    width: 45px;
    height: 45px;
    border-top: 4px solid #e94560;
    border-left: 4px solid #ffd700;
    border-radius: 10px 0 0 0;
    box-shadow: 0 0 15px rgba(233, 69, 96, 0.8);
}

.tag-tr {
    top: 15px;
    right: 15px;
    width: 45px;
    height: 45px;
    border-top: 4px solid #00ffff;
    border-right: 4px solid #ff00ff;
    border-radius: 0 10px 0 0;
    box-shadow: 0 0 15px rgba(0, 255, 255, 0.8);
}

.tag-bl {
    bottom: 15px;
    left: 15px;
    width: 45px;
    height: 45px;
    border-bottom: 4px solid #39ff14;
    border-left: 4px solid #e94560;
    border-radius: 0 0 0 10px;
    box-shadow: 0 0 15px rgba(57, 255, 20, 0.8);
}

.tag-br {
    bottom: 15px;
    right: 15px;
    width: 45px;
    height: 45px;
    border-bottom: 4px solid #ffd700;
    border-right: 4px solid #00ffff;
    border-radius: 0 0 10px 0;
    box-shadow: 0 0 15px rgba(255, 215, 0, 0.8);
}

.art-card:hover .tag-frame {
    box-shadow: 0 0 25px currentColor;
}

.art-card:hover .tag-tl,
.art-card:hover .tag-br {
    width: 55px;
    height: 55px;
}

.art-card:hover .tag-tr,
.art-card:hover .tag-bl {
    width: 55px;
    height: 55px;
}

/* Footer with Urban Style */
footer {
    background: linear-gradient(135deg, rgba(26, 26, 46, 0.95) 0%, rgba(83, 52, 131, 0.95) 100%);
    -webkit-backdrop-filter: blur(20px);
    backdrop-filter: blur(20px);
    border-top: 4px solid transparent;
    border-image: linear-gradient(90deg, #e94560, #ffd700, #00ffff, #ff00ff) 1;
    padding: 3rem 2rem;
    margin-top: 4rem;
    text-align: center;
    box-shadow: 0 -4px 30px rgba(233, 69, 96, 0.4);
}

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

.footer-title {
    font-size: 1.8rem;
    font-family: 'Bangers', cursive;
    background: linear-gradient(135deg, #e94560 0%, #ffd700 50%, #00ffff 100%);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
    letter-spacing: 8px;
    text-transform: uppercase;
    margin-bottom: 1.5rem;
    font-weight: 900;
    text-shadow: 2px 2px 0 rgba(233, 69, 96, 0.3);
}

#langlist {
    padding-left: 0;
    border-radius: 50px;
    background: rgba(26, 26, 46, 0.9);
    display: inline-flex;
    flex-wrap: wrap;
    justify-content: center;
    border: 3px solid transparent;
    background-clip: padding-box;
    padding: 0.5rem;
    margin-bottom: 2rem;
    position: relative;
}

#langlist::before {
    content: '';
    position: absolute;
    inset: -3px;
    background: linear-gradient(90deg, #e94560, #ffd700, #00ffff, #ff00ff);
    border-radius: 50px;
    z-index: -1;
}

#langlist li {
    list-style: none;
    display: inline-block;
    margin: 0.3rem;
    padding: 0.8rem 1.5rem;
    border-radius: 30px;
    transition: all 0.3s ease;
    font-family: 'Bebas Neue', sans-serif;
}

#langlist a {
    text-decoration: none;
    color: #ffffff;
    font-size: 1rem;
    transition: all 0.3s ease;
    font-weight: 600;
    letter-spacing: 1px;
}

#langlist .highlight {
    background: linear-gradient(135deg, #e94560, #ffd700);
    box-shadow: 0 0 20px rgba(233, 69, 96, 0.8);
    transform: skew(-3deg);
}

#langlist .highlight a {
    color: #1a1a2e;
    font-weight: bold;
}

#langlist li:not(.highlight):hover {
    background: rgba(233, 69, 96, 0.5);
    box-shadow: 0 0 20px rgba(255, 215, 0, 0.6);
    transform: translateY(-3px) skew(-2deg);
}

#langlist li:not(.highlight):hover a {
    color: #ffd700;
    text-shadow: 0 0 15px rgba(255, 215, 0, 0.8);
}

.footer-credits {
    color: #00ffff;
    font-size: 1rem;
    letter-spacing: 2px;
    margin-top: 2rem;
    font-weight: 400;
    font-family: 'Permanent Marker', cursive;
    text-shadow: 2px 2px 0 #e94560;
}

.footer-credits strong {
    background: linear-gradient(135deg, #e94560 0%, #ffd700 100%);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
    font-weight: 900;
    font-family: 'Bangers', cursive;
    font-size: 1.2rem;
}

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

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

    #menu {
        justify-content: center;
    }

    #menu ul {
        justify-content: center;
    }

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

    .hero-title {
        font-size: 4.5rem;
        letter-spacing: 10px;
    }

    .hero-subtitle {
        font-size: 1.4rem;
        letter-spacing: 4px;
    }

    .art-card {
        }

    .art-location {
        font-size: 1.8rem;
    }
}

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

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

    #menu li {
        margin: 0 0.7rem;
        font-size: 1rem;
    }

    .hero-title {
        font-size: 3rem;
        letter-spacing: 8px;
    }

    .hero-subtitle {
        font-size: 1.1rem;
        letter-spacing: 3px;
    }

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

    .art-card {
        }

    .art-location {
        font-size: 1.6rem;
    }

    .art-info {
        padding: 1.5rem;
    }

    .region-title {
        font-size: 2.5rem;
    }
}
