/* Hot Springs Hub Styles - World-Class Design */

:root {
    /* Hot Spring Brand Colors */
    --spring-primary: #4A9FE7; /* Blue Lagoon Blue */
    --spring-secondary: #7DD3C0; /* Mineral Green */
    --spring-accent: #FFB366; /* Warm Steam Orange */
    --spring-hot: #FF6B6B; /* Hot Pool Red */
    --spring-cool: #74C0FC; /* Cool Water Blue */
    --spring-steam: #E3F2FD; /* Steam Mist */
    
    /* Temperature Gradient */
    --temp-cold: #1976D2;
    --temp-warm: #4A9FE7;
    --temp-hot: #FF7043;
    --temp-extreme: #D32F2F;
    
    /* Geothermal Effects */
    --steam-light: rgba(255, 255, 255, 0.1);
    --steam-medium: rgba(255, 255, 255, 0.2);
    --steam-heavy: rgba(255, 255, 255, 0.4);
    --mineral-blue: rgba(74, 159, 231, 0.1);
    --mineral-green: rgba(125, 211, 192, 0.1);
}

/* Reset and Base */
* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

body {
    font-family: 'Inter', -apple-system, BlinkMacSystemFont, 'Segoe UI', sans-serif;
    line-height: 1.6;
    color: #333;
    overflow-x: hidden;
}

.container {
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 20px;
}

/* Navigation */
.spring-nav {
    position: fixed;
    top: 0;
    left: 0;
    right: 0;
    background: rgba(255, 255, 255, 0.95);
    backdrop-filter: blur(20px);
    border-bottom: 1px solid rgba(74, 159, 231, 0.1);
    z-index: 1000;
    transition: all 0.3s ease;
}

.spring-nav .container {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 15px 20px;
}

.nav-brand a {
    color: var(--spring-primary);
    text-decoration: none;
    font-weight: 600;
    font-size: 16px;
    transition: color 0.3s ease;
}

/* Removed hover effects for consistent user experience across all devices */

.nav-links {
    display: flex;
    gap: 30px;
}

.nav-links a {
    color: #666;
    text-decoration: none;
    font-weight: 500;
    padding: 8px 16px;
    border-radius: 20px;
    transition: all 0.3s ease;
    position: relative;
}

.nav-links a
.nav-links a.active {
    color: var(--spring-primary);
    background: var(--mineral-blue);
}

/* Hero Section */
.spring-hero {
    position: relative;
    height: 100vh;
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: center;
    text-align: center;
    overflow: hidden;
    background: linear-gradient(135deg, #1e3c72 0%, #2a5298 50%, #4A9FE7 100%);
}

.hero-background {
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    overflow: hidden;
}

.hero-gradient {
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: linear-gradient(
        135deg,
        rgba(30, 60, 114, 0.9) 0%,
        rgba(42, 82, 152, 0.8) 30%,
        rgba(74, 159, 231, 0.7) 70%,
        rgba(125, 211, 192, 0.6) 100%
    );
}

.steam-pattern {
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background-image: 
        radial-gradient(circle at 20% 80%, var(--steam-light) 0%, transparent 50%),
        radial-gradient(circle at 80% 20%, var(--steam-medium) 0%, transparent 50%),
        radial-gradient(circle at 40% 40%, var(--steam-heavy) 0%, transparent 30%);
    animation: steamFloat 20s ease-in-out infinite;
}

@keyframes steamFloat {
    0%, 100% { transform: translateY(0px) rotate(0deg); opacity: 0.6; }
    33% { transform: translateY(-20px) rotate(1deg); opacity: 0.8; }
    66% { transform: translateY(-10px) rotate(-1deg); opacity: 0.7; }
}

.hero-content {
    position: relative;
    z-index: 2;
    max-width: 800px;
    padding: 0 20px;
}

.hero-badge {
    display: inline-block;
    background: rgba(255, 255, 255, 0.2);
    backdrop-filter: blur(10px);
    color: white;
    padding: 8px 20px;
    border-radius: 25px;
    font-size: 14px;
    font-weight: 500;
    margin-bottom: 20px;
    border: 1px solid rgba(255, 255, 255, 0.3);
}

.hero-title {
    font-size: clamp(2.5rem, 5vw, 4rem);
    font-weight: 800;
    color: white;
    margin-bottom: 20px;
    text-shadow: 0 2px 20px rgba(0, 0, 0, 0.3);
    line-height: 1.1;
}

.hero-subtitle {
    font-size: clamp(1.1rem, 2vw, 1.3rem);
    color: rgba(255, 255, 255, 0.9);
    margin-bottom: 40px;
    max-width: 600px;
    margin-left: auto;
    margin-right: auto;
}

.hero-stats {
    display: flex;
    justify-content: center;
    gap: 40px;
    margin-top: 40px;
}

.stat {
    text-align: center;
    color: white;
}

.stat-number {
    display: block;
    font-size: 2rem;
    font-weight: 700;
    color: var(--spring-accent);
    text-shadow: 0 2px 10px rgba(0, 0, 0, 0.3);
}

.stat-label {
    font-size: 0.9rem;
    opacity: 0.9;
    font-weight: 500;
}

.hero-scroll {
    position: absolute;
    bottom: 30px;
    left: 50%;
    transform: translateX(-50%);
    text-align: center;
    color: rgba(255, 255, 255, 0.8);
    font-size: 14px;
}

.scroll-arrow {
    font-size: 20px;
    animation: bounce 2s infinite;
    margin-top: 5px;
}

@keyframes bounce {
    0%, 20%, 50%, 80%, 100% { transform: translateY(0); }
    40% { transform: translateY(-10px); }
    60% { transform: translateY(-5px); }
}

/* Temperature Alert */
.temperature-alert {
    background: linear-gradient(135deg, var(--spring-secondary), var(--spring-cool));
    padding: 20px 0;
    border-bottom: 1px solid rgba(125, 211, 192, 0.2);
}

.alert-content {
    display: flex;
    align-items: center;
    gap: 20px;
    background: rgba(255, 255, 255, 0.1);
    backdrop-filter: blur(10px);
    padding: 15px 25px;
    border-radius: 15px;
    border: 1px solid rgba(255, 255, 255, 0.2);
}

.alert-icon {
    font-size: 2rem;
    flex-shrink: 0;
}

.alert-text {
    flex: 1;
    color: white;
}

.alert-text h3 {
    font-size: 1.2rem;
    font-weight: 600;
    margin-bottom: 5px;
}

.alert-text p {
    opacity: 0.9;
    font-size: 0.95rem;
}

.alert-button {
    background: rgba(255, 255, 255, 0.2);
    color: white;
    padding: 10px 20px;
    border-radius: 20px;
    text-decoration: none;
    font-weight: 500;
    transition: all 0.3s ease;
    border: 1px solid rgba(255, 255, 255, 0.3);
    flex-shrink: 0;
}

/* Removed hover effects for consistent user experience across all devices */

/* Quick Navigation */
.quick-nav {
    padding: 80px 0;
    background: linear-gradient(to bottom, #f8f9fa, #fff);
}

.section-title {
    font-size: 2.5rem;
    font-weight: 700;
    color: #1a1a1a;
    text-align: center;
    margin-bottom: 50px;
}

.nav-cards {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
    gap: 30px;
    margin-top: 50px;
}

.nav-card {
    background: white;
    border-radius: 20px;
    padding: 30px;
    text-decoration: none;
    color: inherit;
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.1);
    transition: all 0.3s ease;
    position: relative;
    overflow: hidden;
    border: 1px solid rgba(74, 159, 231, 0.1);
}

.nav-card::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    height: 4px;
    background: linear-gradient(90deg, var(--spring-primary), var(--spring-secondary));
    transform: scaleX(0);
    transition: transform 0.3s ease;
}

.nav-card{
    transform: scaleX(1);
}

/* Removed hover effects for consistent user experience across all devices */

.nav-card.hot {
    background: linear-gradient(135deg, rgba(255, 107, 107, 0.05), rgba(255, 179, 102, 0.05));
    border-color: var(--spring-hot);
}

.nav-card.hot::before {
    background: linear-gradient(90deg, var(--spring-hot), var(--spring-accent));
}

.card-icon {
    font-size: 2.5rem;
    margin-bottom: 20px;
    display: block;
}

.nav-card h3 {
    font-size: 1.3rem;
    font-weight: 600;
    margin-bottom: 10px;
    color: #1a1a1a;
}

.nav-card p {
    color: #666;
    margin-bottom: 15px;
    font-size: 0.95rem;
    line-height: 1.5;
}

.card-status {
    background: var(--mineral-blue);
    color: var(--spring-primary);
    padding: 4px 12px;
    border-radius: 15px;
    font-size: 0.8rem;
    font-weight: 500;
    display: inline-block;
    margin-bottom: 15px;
}

.nav-card.hot .card-status {
    background: rgba(255, 107, 107, 0.1);
    color: var(--spring-hot);
}

.card-arrow {
    position: absolute;
    bottom: 20px;
    right: 25px;
    font-size: 1.2rem;
    color: var(--spring-primary);
    transition: transform 0.3s ease;
}

.nav-card{
    transform: translateX(5px);
}

/* Spring Map */
.spring-map {
    padding: 80px 0;
    background: linear-gradient(135deg, #f0f8ff, #e3f2fd);
}

.map-container {
    margin-top: 40px;
}

.map-placeholder {
    position: relative;
    height: 500px;
    background: linear-gradient(135deg, #e1f5fe, #b3e5fc);
    border-radius: 20px;
    overflow: hidden;
    border: 2px solid rgba(74, 159, 231, 0.2);
}

.map-placeholder::before {
    content: '';
    position: absolute;
    top: 50%;
    left: 50%;
    width: 300px;
    height: 200px;
    transform: translate(-50%, -50%);
    background: rgba(74, 159, 231, 0.3);
    clip-path: polygon(
        /* Iceland outline approximation */
        15% 25%, 25% 20%, 35% 15%, 45% 10%, 55% 15%, 65% 12%, 75% 18%,
        85% 25%, 90% 35%, 88% 45%, 85% 55%, 80% 65%, 75% 75%, 70% 82%,
        60% 85%, 50% 88%, 40% 85%, 30% 80%, 25% 75%, 20% 65%, 15% 55%,
        12% 45%, 10% 35%, 15% 25%
    );
    border: 2px solid rgba(74, 159, 231, 0.5);
}

.map-placeholder::after {
    content: 'Iceland Hot Springs Map';
    position: absolute;
    top: 20px;
    left: 50%;
    transform: translateX(-50%);
    color: var(--spring-primary);
    font-weight: 600;
    font-size: 1.1rem;
    text-shadow: 0 2px 10px rgba(255, 255, 255, 0.8);
}

.map-regions {
    position: relative;
    width: 100%;
    height: 100%;
}

.map-region {
    position: absolute;
    text-align: center;
    cursor: pointer;
    transition: all 0.3s ease;
}

.region-marker {
    display: block;
    font-size: 2rem;
    margin-bottom: 5px;
    filter: drop-shadow(0 2px 10px rgba(0, 0, 0, 0.2));
    transition: all 0.3s ease;
}

.region-label {
    background: rgba(255, 255, 255, 0.9);
    backdrop-filter: blur(10px);
    padding: 5px 10px;
    border-radius: 15px;
    font-size: 0.8rem;
    font-weight: 600;
    color: #333;
    border: 1px solid rgba(74, 159, 231, 0.2);
    white-space: nowrap;
}

/* Removed hover effects for consistent user experience across all devices */

.map-region{
    transform: translateY(-2px);
}

.region-marker.famous { color: var(--spring-primary); }
.region-marker.natural { color: var(--spring-secondary); }
.region-marker.historic { color: var(--spring-accent); }
.region-marker.remote { color: #9C27B0; }
.region-marker.unique { color: var(--spring-cool); }
.region-marker.wild { color: #795548; }

/* Featured Springs */
.featured-springs {
    padding: 80px 0;
    background: white;
}

.springs-grid {
    display: grid;
    gap: 40px;
    margin-top: 50px;
}

.spring-card {
    display: grid;
    grid-template-columns: 1fr 1.5fr;
    gap: 30px;
    background: white;
    border-radius: 20px;
    overflow: hidden;
    box-shadow: 0 15px 40px rgba(0, 0, 0, 0.1);
    transition: all 0.3s ease;
    border: 1px solid rgba(74, 159, 231, 0.1);
}

/* Removed hover effects for consistent user experience across all devices */

.spring-card.featured {
    border: 2px solid var(--spring-primary);
}

.spring-image {
    position: relative;
    overflow: hidden;
}

.image-placeholder {
    height: 80px;
    background: linear-gradient(135deg, #f8fafc, #e2e8f0);
    display: flex;
    align-items: center;
    border-radius: 8px 8px 0 0;
    justify-content: center;
    position: relative;
    color: #1a202c;
    font-weight: 800;
    font-size: 2rem;
}

.blue-lagoon-bg {
    background: linear-gradient(135deg, #f8fafc, #e2e8f0);
    color: #1a202c;
    font-weight: 800;
    font-size: 2rem;
}

.myvatn-bg {
    background: linear-gradient(135deg, #f8fafc, #e2e8f0);
    color: #1a202c;
    font-weight: 800;
    font-size: 2rem;
}

.reykjadalur-bg {
    background: linear-gradient(135deg, #f8fafc, #e2e8f0);
    color: #1a202c;
    font-weight: 800;
    font-size: 2rem;
}

.spring-status {
    position: absolute;
    top: 15px;
    left: 15px;
    padding: 5px 12px;
    border-radius: 15px;
    font-size: 0.8rem;
    font-weight: 600;
    text-transform: uppercase;
    letter-spacing: 0.5px;
}

.spring-status.world-famous {
    background: rgba(255, 255, 255, 0.9);
    color: var(--spring-primary);
}

.spring-status.authentic {
    background: rgba(255, 255, 255, 0.9);
    color: var(--spring-secondary);
}

.spring-status.natural {
    background: rgba(255, 255, 255, 0.9);
    color: var(--spring-accent);
}

.spring-content {
    padding: 30px;
    display: flex;
    flex-direction: column;
    justify-content: center;
}

.spring-content h3 {
    font-size: 1.8rem;
    font-weight: 700;
    color: #1a1a1a;
    margin-bottom: 10px;
}

.spring-tag {
    background: var(--mineral-blue);
    color: var(--spring-primary);
    padding: 4px 12px;
    border-radius: 15px;
    font-size: 0.8rem;
    font-weight: 500;
    display: inline-block;
    margin-bottom: 15px;
    width: fit-content;
}

.spring-content p {
    color: #666;
    margin-bottom: 20px;
    line-height: 1.6;
}

.spring-stats {
    display: flex;
    gap: 25px;
    margin-bottom: 20px;
}

.spring-stats span {
    font-size: 0.9rem;
    color: #888;
}

.spring-stats strong {
    color: var(--spring-primary);
}

.spring-link {
    color: var(--spring-primary);
    text-decoration: none;
    font-weight: 600;
    transition: color 0.3s ease;
    margin-top: auto;
}

/* Removed hover effects for consistent user experience across all devices */

/* Geothermal Science */
.geothermal-science {
    padding: 80px 0;
    background: linear-gradient(135deg, #f8f9fa, #e3f2fd);
}

.science-content {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 50px;
    align-items: center;
    margin-top: 40px;
}

.science-intro {
    font-size: 1.1rem;
    color: #666;
    margin-bottom: 30px;
    line-height: 1.6;
}

.science-features {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 20px;
}

.science-feature {
    background: white;
    padding: 20px;
    border-radius: 15px;
    box-shadow: 0 5px 15px rgba(0, 0, 0, 0.1);
    transition: transform 0.3s ease;
}

/* Removed hover effects for consistent user experience across all devices */

.science-feature .feature-icon {
    font-size: 1.5rem;
    margin-bottom: 10px;
    display: block;
}

.science-feature h4 {
    font-weight: 600;
    margin-bottom: 8px;
    color: #1a1a1a;
}

.science-feature p {
    font-size: 0.9rem;
    color: #666;
    line-height: 1.4;
}

.science-visual {
    position: relative;
}

.geothermal-diagram {
    background: linear-gradient(to bottom, #87CEEB, #4682B4, #2F4F4F, #800080);
    border-radius: 20px;
    height: 400px;
    position: relative;
    overflow: hidden;
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.2);
}

.diagram-layer {
    position: absolute;
    left: 0;
    right: 0;
    padding: 15px 20px;
    color: white;
    font-weight: 600;
    text-align: center;
    border-bottom: 2px solid rgba(255, 255, 255, 0.3);
}

.surface { top: 0; background: rgba(135, 206, 235, 0.8); }
.heated-water { top: 25%; background: rgba(70, 130, 180, 0.8); }
.rock { top: 50%; background: rgba(47, 79, 79, 0.8); }
.magma { top: 75%; background: rgba(128, 0, 128, 0.8); }

/* Spring Types */
.spring-types {
    padding: 80px 0;
    background: white;
}

.types-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
    gap: 30px;
    margin-top: 50px;
}

.type-card {
    background: white;
    border-radius: 20px;
    padding: 30px;
    text-align: center;
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.1);
    transition: all 0.3s ease;
    border: 1px solid rgba(74, 159, 231, 0.1);
}

/* Removed hover effects for consistent user experience across all devices */

.type-icon {
    font-size: 3rem;
    margin-bottom: 20px;
    display: block;
}

.type-card h3 {
    font-size: 1.3rem;
    font-weight: 600;
    margin-bottom: 10px;
    color: #1a1a1a;
}

.type-card p {
    color: #666;
    margin-bottom: 15px;
    font-size: 0.95rem;
    line-height: 1.5;
}

.type-price {
    background: var(--mineral-blue);
    color: var(--spring-primary);
    padding: 5px 15px;
    border-radius: 15px;
    font-size: 0.9rem;
    font-weight: 600;
    display: inline-block;
}

/* Pool Culture */
.pool-culture {
    padding: 80px 0;
    background: linear-gradient(135deg, var(--spring-primary), var(--spring-secondary));
    color: white;
}

.culture-content {
    text-align: center;
    max-width: 800px;
    margin: 0 auto;
}

.culture-content h2 {
    font-size: 2.5rem;
    font-weight: 700;
    margin-bottom: 20px;
}

.culture-intro {
    font-size: 1.1rem;
    opacity: 0.95;
    margin-bottom: 40px;
    line-height: 1.6;
}

.culture-features {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 30px;
    margin-bottom: 40px;
}

.culture-feature {
    text-align: center;
}

.culture-feature .feature-icon {
    font-size: 2.5rem;
    margin-bottom: 15px;
    display: block;
}

.culture-feature h3 {
    font-size: 1.2rem;
    font-weight: 600;
    margin-bottom: 10px;
}

.culture-feature p {
    opacity: 0.9;
    font-size: 0.95rem;
    line-height: 1.4;
}

.btn-primary {
    background: rgba(255, 255, 255, 0.2);
    color: white;
    padding: 15px 30px;
    border-radius: 25px;
    text-decoration: none;
    font-weight: 600;
    display: inline-block;
    transition: all 0.3s ease;
    border: 2px solid rgba(255, 255, 255, 0.3);
}

/* Removed hover effects for consistent user experience across all devices */

/* Health Benefits */
.health-benefits {
    padding: 80px 0;
    background: linear-gradient(to bottom, #f8f9fa, #fff);
}

.benefits-grid {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 40px;
    margin-top: 50px;
}

.benefit-category {
    background: white;
    border-radius: 20px;
    padding: 30px;
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.1);
    border: 1px solid rgba(74, 159, 231, 0.1);
}

.benefit-category h3 {
    font-size: 1.5rem;
    font-weight: 600;
    margin-bottom: 20px;
    color: var(--spring-primary);
}

.benefit-category ul {
    list-style: none;
}

.benefit-category li {
    padding: 8px 0;
    padding-left: 25px;
    position: relative;
    color: #666;
    line-height: 1.5;
}

.benefit-category li::before {
    content: '✓';
    position: absolute;
    left: 0;
    color: var(--spring-secondary);
    font-weight: bold;
}

/* Safety Overview */
.safety-overview {
    padding: 80px 0;
    background: linear-gradient(135deg, #fff5f5, #ffe8e8);
}

.safety-content {
    text-align: center;
    max-width: 900px;
    margin: 0 auto;
}

.safety-content h2 {
    font-size: 2.5rem;
    font-weight: 700;
    color: #1a1a1a;
    margin-bottom: 20px;
}

.safety-intro {
    font-size: 1.1rem;
    color: #666;
    margin-bottom: 40px;
    line-height: 1.6;
}

.safety-features {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 30px;
    margin-bottom: 40px;
}

.safety-feature {
    background: white;
    border-radius: 20px;
    padding: 30px;
    text-align: center;
    box-shadow: 0 10px 30px rgba(255, 107, 107, 0.1);
    transition: transform 0.3s ease;
    border: 1px solid rgba(255, 107, 107, 0.1);
}

/* Removed hover effects for consistent user experience across all devices */

.safety-feature .feature-icon {
    font-size: 2.5rem;
    margin-bottom: 20px;
    display: block;
}

.safety-feature h3 {
    font-size: 1.2rem;
    font-weight: 600;
    margin-bottom: 10px;
    color: #1a1a1a;
}

.safety-feature p {
    color: #666;
    font-size: 0.95rem;
    line-height: 1.5;
}

/* Footer */
.spring-footer {
    background: #1a1a1a;
    color: white;
    padding: 60px 0 30px;
}

.footer-content {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 40px;
    margin-bottom: 30px;
}

.footer-section h4 {
    font-size: 1.2rem;
    font-weight: 600;
    margin-bottom: 20px;
    color: var(--spring-secondary);
}

.footer-section ul {
    list-style: none;
}

.footer-section li {
    margin-bottom: 8px;
}

.footer-section a {
    color: #ccc;
    text-decoration: none;
    transition: color 0.3s ease;
}

/* Removed hover effects for consistent user experience across all devices */

.footer-section p {
    color: #ccc;
    line-height: 1.6;
}

/* Responsive Design */
@media (max-width: 768px) {
    .nav-links {
        gap: 15px;
    }
    
    .nav-links a {
        padding: 6px 12px;
        font-size: 14px;
    }
    
    .hero-stats {
        gap: 20px;
        flex-wrap: wrap;
    }
    
    .alert-content {
        flex-direction: column;
        text-align: center;
        gap: 15px;
    }
    
    .nav-cards {
        grid-template-columns: 1fr;
        gap: 20px;
    }
    
    .spring-card {
        grid-template-columns: 1fr;
    }
    
    .science-content {
        grid-template-columns: 1fr;
        gap: 30px;
    }
    
    .science-features {
        grid-template-columns: 1fr;
    }
    
    .culture-features {
        grid-template-columns: 1fr;
        gap: 20px;
    }
    
    .benefits-grid {
        grid-template-columns: 1fr;
        gap: 20px;
    }
    
    .safety-features {
        grid-template-columns: 1fr;
        gap: 20px;
    }
    
    .footer-content {
        grid-template-columns: 1fr;
        gap: 30px;
        text-align: center;
    }
    
    .types-grid {
        grid-template-columns: 1fr;
        gap: 20px;
    }
    
    /* Mobile-specific map improvements */
    .map-placeholder {
        height: 350px;
    }
    
    .region-marker {
        font-size: 1.2rem;
        transform: scale(1.1);
    }
    
    .region-label {
        font-size: 0.7rem;
        padding: 4px 8px;
        opacity: 1 !important;
        pointer-events: none;
    }
    
    /* Ensure all interactive elements are touch-friendly */
    .map-region {
        min-width: 44px;
        min-height: 44px;
        display: flex;
        flex-direction: column;
        align-items: center;
        justify-content: center;
    }
    
    /* Remove hover effects on touch devices */
    @media (hover: none) {
/* Removed hover effects for consistent user experience across all devices */
        
        .nav-card
        .spring-card
/* Removed hover effects for consistent user experience across all devices */
    }
}