/* Glacier Hub Specialized Styles */

/* Navigation */
.glacier-nav {
    position: fixed;
    top: 0;
    left: 0;
    right: 0;
    background: rgba(255, 255, 255, 0.95);
    backdrop-filter: blur(10px);
    border-bottom: 1px solid rgba(59, 130, 246, 0.1);
    z-index: 1000;
    padding: 1rem 0;
    transition: all 0.3s ease;
}

.glacier-nav .container {
    display: flex;
    justify-content: space-between;
    align-items: center;
    max-width: 1400px;
    margin: 0 auto;
    padding: 0 2rem;
}

.nav-brand a {
    font-weight: 600;
    color: var(--primary);
    text-decoration: none;
    font-size: 1.1rem;
}

.nav-links {
    display: flex;
    gap: 2rem;
}

.nav-links a {
    color: var(--gray);
    text-decoration: none;
    font-weight: 500;
    transition: all 0.3s ease;
    padding: 0.5rem 1rem;
    border-radius: 25px;
}

.nav-links a
.nav-links a.active {
    color: var(--primary);
    background: rgba(59, 130, 246, 0.1);
}

/* Hero Section */
.glacier-hero,
.spring-hero {
    min-height: 80vh;
    max-height: 80vh;
    position: relative;
    display: flex;
    align-items: center;
    justify-content: center;
    text-align: center;
    overflow: hidden;
    background: linear-gradient(135deg, #1e293b 0%, #334155 50%, #475569 100%);
}

.hero-background {
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    z-index: 1;
}

.hero-gradient {
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: linear-gradient(135deg, 
        rgba(59, 130, 246, 0.8) 0%, 
        rgba(139, 92, 246, 0.6) 50%, 
        rgba(6, 182, 212, 0.8) 100%);
}

.hero-pattern {
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background-image: 
        radial-gradient(circle at 25% 25%, rgba(255, 255, 255, 0.1) 1px, transparent 1px),
        radial-gradient(circle at 75% 75%, rgba(255, 255, 255, 0.05) 1px, transparent 1px);
    background-size: 50px 50px;
    animation: patternMove 20s linear infinite;
}

@keyframes patternMove {
    0% { transform: translate(0, 0); }
    100% { transform: translate(50px, 50px); }
}

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

.hero-badge {
    display: inline-block;
    padding: 0.75rem 1.5rem;
    background: rgba(255, 255, 255, 0.2);
    border-radius: 50px;
    font-size: 0.9rem;
    font-weight: 600;
    margin-bottom: 2rem;
    backdrop-filter: blur(10px);
    border: 1px solid rgba(255, 255, 255, 0.3);
}

.hero-title {
    font-size: 4.5rem;
    font-weight: 900;
    line-height: 1.1;
    margin-bottom: 1.5rem;
    background: linear-gradient(45deg, #ffffff, #e2e8f0, #cbd5e1);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
    text-shadow: 0 4px 20px rgba(0, 0, 0, 0.3);
}

.hero-subtitle {
    font-size: 1.5rem;
    font-weight: 300;
    margin-bottom: 3rem;
    opacity: 0.9;
    line-height: 1.4;
}

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

.stat {
    text-align: center;
}

.stat-number {
    display: block;
    font-size: 2.5rem;
    font-weight: 800;
    color: #06b6d4;
    text-shadow: 0 2px 10px rgba(6, 182, 212, 0.3);
}

.stat-label {
    font-size: 0.9rem;
    opacity: 0.8;
    text-transform: uppercase;
    letter-spacing: 0.5px;
}

.hero-scroll {
    position: absolute;
    bottom: 2rem;
    left: 50%;
    transform: translateX(-50%);
    text-align: center;
    color: white;
    opacity: 0.7;
    z-index: 2;
}

.scroll-arrow {
    font-size: 1.5rem;
    animation: bounce 2s infinite;
}

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

/* Quick Navigation Cards */
.quick-nav {
    padding: 6rem 0;
    background: white;
    margin-top: 0;
    position: relative;
    z-index: 10;
}

.section-title {
    text-align: center;
    font-size: 2.5rem;
    font-weight: 800;
    margin-bottom: 3rem;
    background: linear-gradient(135deg, #1e293b, #3b82f6);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
}

.nav-cards {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
    gap: 2rem;
    max-width: 1200px;
    margin: 0 auto;
}

.nav-card {
    background: white;
    border-radius: 20px;
    padding: 3rem 2.5rem;
    text-decoration: none;
    color: inherit;
    box-shadow: 0 10px 40px rgba(0, 0, 0, 0.08);
    border: 1px solid rgba(226, 232, 240, 0.8);
    transition: all 0.4s cubic-bezier(0.4, 0, 0.2, 1);
    position: relative;
    overflow: hidden;
}

.nav-card::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    height: 4px;
    background: linear-gradient(90deg, #3b82f6, #8b5cf6, #06b6d4);
}

/* Removed nav card hover effects for better mobile experience */

.card-icon {
    font-size: 3rem;
    margin-bottom: 1.5rem;
    display: block;
}

.nav-card h3 {
    font-size: 1.5rem;
    font-weight: 700;
    margin-bottom: 1rem;
    color: var(--dark);
}

.nav-card p {
    color: var(--gray);
    margin-bottom: 1.5rem;
    line-height: 1.6;
}

.card-arrow {
    font-size: 1.2rem;
    color: var(--primary);
    font-weight: 600;
    transition: transform 0.3s ease;
}

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

/* Interactive Map */
.glacier-map {
    padding: 6rem 0;
    background: linear-gradient(135deg, #f8fafc 0%, #e2e8f0 100%);
}

.map-container {
    max-width: 800px;
    margin: 0 auto;
    position: relative;
}

.map-placeholder {
    width: 100%;
    height: 500px;
    background: linear-gradient(135deg, #1e293b, #334155);
    border-radius: 20px;
    position: relative;
    overflow: hidden;
    box-shadow: 0 20px 60px rgba(0, 0, 0, 0.15);
}

.map-placeholder::before {
    content: '';
    position: absolute;
    top: 50%;
    left: 50%;
    width: 300px;
    height: 200px;
    transform: translate(-50%, -50%);
    background: rgba(56, 189, 248, 0.4);
    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(56, 189, 248, 0.6);
}

.map-placeholder::after {
    content: 'Iceland Glaciers Map';
    position: absolute;
    top: 20px;
    left: 50%;
    transform: translateX(-50%);
    color: #38bdf8;
    font-weight: 600;
    font-size: 1.1rem;
    text-shadow: 0 2px 10px rgba(0, 0, 0, 0.5);
}

.map-point {
    position: absolute;
    cursor: pointer;
    transition: all 0.3s ease;
}

.point-marker {
    display: inline-block;
    width: 30px;
    height: 30px;
    background: linear-gradient(135deg, #3b82f6, #8b5cf6);
    color: white;
    border-radius: 50%;
    text-align: center;
    line-height: 30px;
    font-weight: 600;
    font-size: 0.9rem;
    box-shadow: 0 4px 15px rgba(59, 130, 246, 0.4);
    animation: pulse 3s infinite;
}

.point-label {
    position: absolute;
    top: -40px;
    left: 50%;
    transform: translateX(-50%);
    background: rgba(255, 255, 255, 0.95);
    backdrop-filter: blur(10px);
    color: #1e293b;
    padding: 0.5rem 1rem;
    border-radius: 8px;
    font-size: 0.8rem;
    font-weight: 600;
    white-space: nowrap;
    opacity: 1;
    transition: all 0.3s ease;
    border: 1px solid rgba(56, 189, 248, 0.3);
    box-shadow: 0 4px 15px rgba(0, 0, 0, 0.2);
}

.map-point{
    transform: translateX(-50%) scale(1.05);
    background: rgba(255, 255, 255, 1);
    box-shadow: 0 6px 20px rgba(0, 0, 0, 0.3);
    border-color: rgba(56, 189, 248, 0.6);
}

@keyframes pulse {
    0% { box-shadow: 0 4px 15px rgba(59, 130, 246, 0.4); }
    50% { box-shadow: 0 4px 25px rgba(59, 130, 246, 0.6); }
    100% { box-shadow: 0 4px 15px rgba(59, 130, 246, 0.4); }
}

/* Major Glaciers Grid */
.major-glaciers {
    padding: 6rem 0;
    background: white;
}

.glacier-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(350px, 1fr));
    gap: 2.5rem;
    max-width: 1400px;
    margin: 0 auto;
}

.glacier-card {
    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);
}

.glacier-card.featured {
    grid-column: span 2;
}

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

.glacier-image {
    height: 80px;
    background: linear-gradient(135deg, #1e293b, #334155, #475569);
    position: relative;
    overflow: hidden;
    border-radius: 8px 8px 0 0;
}

.glacier-card.featured .glacier-image {
    height: 100px;
}

.image-placeholder {
    width: 100%;
    height: 100%;
    display: flex;
    align-items: center;
    justify-content: center;
    color: #1a202c;
    font-size: 2rem;
    font-weight: 800;
    background: linear-gradient(135deg, #f8fafc, #e2e8f0);
    position: relative;
    overflow: hidden;
}

.image-placeholder::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: 
        linear-gradient(45deg, transparent 30%, rgba(255, 255, 255, 0.1) 50%, transparent 70%),
        radial-gradient(ellipse at center, transparent 40%, rgba(59, 130, 246, 0.1) 100%);
    animation: shimmer 4s ease-in-out infinite;
}

.image-placeholder::after {
    content: '';
    position: absolute;
    bottom: 0;
    left: 0;
    right: 0;
    height: 60%;
    background: linear-gradient(to top, rgba(0, 0, 0, 0.4) 0%, transparent 100%);
}

@keyframes shimmer {
    0%, 100% { opacity: 0.7; }
    50% { opacity: 1; }
}

/* Specific glacier image styles */
/* Simple consistent image placeholders like hot springs */

.glacier-rank {
    position: absolute;
    top: 1rem;
    right: 1rem;
    background: rgba(255, 255, 255, 0.2);
    padding: 0.5rem 1rem;
    border-radius: 20px;
    font-size: 0.9rem;
    font-weight: 700;
    backdrop-filter: blur(10px);
}

.glacier-content {
    padding: 2.5rem;
}

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

.glacier-tag {
    background: rgba(74, 159, 231, 0.1);
    color: #4a9fe7;
    padding: 4px 12px;
    border-radius: 15px;
    font-size: 0.8rem;
    font-weight: 500;
    display: inline-block;
    margin-bottom: 15px;
    width: fit-content;
}

.glacier-content p {
    color: var(--gray);
    line-height: 1.6;
    margin-bottom: 1.5rem;
}

.glacier-stats {
    display: flex;
    gap: 1.5rem;
    margin-bottom: 2rem;
    font-size: 0.9rem;
}

.glacier-stats span {
    color: var(--gray);
}

.glacier-link {
    color: var(--primary);
    text-decoration: none;
    font-weight: 600;
    font-size: 1.1rem;
    transition: all 0.3s ease;
    display: inline-flex;
    align-items: center;
    gap: 0.5rem;
}

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

/* Featured Experiences */
.featured-experiences {
    padding: 6rem 0;
    background: linear-gradient(135deg, #f8fafc 0%, #e2e8f0 100%);
}

.experience-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: 2.5rem;
    max-width: 1200px;
    margin: 0 auto;
}

.experience-card {
    background: white;
    border-radius: 20px;
    overflow: hidden;
    box-shadow: 0 10px 40px rgba(0, 0, 0, 0.08);
    transition: all 0.4s ease;
}

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

.experience-image {
    height: 200px;
    background: linear-gradient(135deg, #1e293b, #334155);
    position: relative;
    display: flex;
    align-items: center;
    justify-content: center;
    color: white;
    font-size: 1.1rem;
    font-weight: 600;
    overflow: hidden;
}

.experience-image::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: 
        radial-gradient(circle at 30% 30%, rgba(255, 255, 255, 0.1) 0%, transparent 50%),
        radial-gradient(circle at 70% 70%, rgba(6, 182, 212, 0.2) 0%, transparent 60%);
    animation: experienceShimmer 6s ease-in-out infinite;
}

@keyframes experienceShimmer {
    0%, 100% { opacity: 0.6; }
    50% { opacity: 1; }
}

/* Specific experience visuals */
.experience-card:nth-child(1) .experience-image {
    background: 
        radial-gradient(circle at 20% 80%, rgba(6, 182, 212, 0.4) 0%, transparent 70%),
        radial-gradient(circle at 80% 20%, rgba(59, 130, 246, 0.3) 0%, transparent 60%),
        linear-gradient(135deg, #0c4a6e 0%, #1e293b 50%, #334155 100%);
}

.experience-card:nth-child(2) .experience-image {
    background: 
        radial-gradient(circle at 50% 30%, rgba(139, 92, 246, 0.4) 0%, transparent 60%),
        radial-gradient(circle at 30% 70%, rgba(6, 182, 212, 0.3) 0%, transparent 70%),
        linear-gradient(135deg, #0f172a 0%, #1e293b 40%, #475569 100%);
}

.experience-card:nth-child(3) .experience-image {
    background: 
        radial-gradient(circle at 60% 40%, rgba(16, 185, 129, 0.3) 0%, transparent 60%),
        radial-gradient(circle at 20% 60%, rgba(59, 130, 246, 0.2) 0%, transparent 70%),
        linear-gradient(135deg, #064e3b 0%, #1e293b 50%, #334155 100%);
}

.experience-badge {
    position: absolute;
    top: 1rem;
    left: 1rem;
    background: linear-gradient(135deg, #f59e0b, #f97316);
    color: white;
    padding: 0.5rem 1rem;
    border-radius: 20px;
    font-size: 0.8rem;
    font-weight: 600;
}

.experience-card h3 {
    font-size: 1.4rem;
    font-weight: 700;
    margin: 1.5rem 1.5rem 1rem;
    color: var(--dark);
}

.experience-card p {
    color: var(--gray);
    margin: 0 1.5rem 1.5rem;
    line-height: 1.6;
}

.btn-secondary {
    display: inline-block;
    margin: 0 1.5rem 1.5rem;
    padding: 0.75rem 1.5rem;
    background: transparent;
    color: var(--primary);
    border: 2px solid var(--primary);
    border-radius: 8px;
    text-decoration: none;
    font-weight: 600;
    transition: all 0.3s ease;
}

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

/* Climate Section */
.climate-section {
    padding: 6rem 0;
    background: linear-gradient(135deg, #1e293b, #334155);
    color: white;
    text-align: center;
}

.climate-content h2 {
    font-size: 2.5rem;
    font-weight: 800;
    margin-bottom: 1.5rem;
}

.climate-intro {
    font-size: 1.2rem;
    margin-bottom: 3rem;
    opacity: 0.9;
    max-width: 600px;
    margin-left: auto;
    margin-right: auto;
}

.climate-stats {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(200px, 1fr));
    gap: 2rem;
    max-width: 800px;
    margin: 0 auto 3rem;
}

.climate-stat {
    text-align: center;
}

.stat-icon {
    font-size: 2.5rem;
    display: block;
    margin-bottom: 1rem;
}

.climate-stat h3 {
    font-size: 2rem;
    font-weight: 800;
    margin-bottom: 0.5rem;
    color: #06b6d4;
}

.climate-stat p {
    opacity: 0.8;
}

.btn-primary {
    display: inline-block;
    padding: 1rem 2rem;
    background: linear-gradient(135deg, #3b82f6, #8b5cf6);
    color: white;
    text-decoration: none;
    border-radius: 50px;
    font-weight: 700;
    transition: all 0.3s ease;
    box-shadow: 0 4px 20px rgba(59, 130, 246, 0.3);
}

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

/* Footer */
.glacier-footer {
    background: var(--dark);
    color: white;
    padding: 3rem 0 2rem;
}

.footer-content {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 2rem;
    max-width: 1200px;
    margin: 0 auto;
    text-align: center;
}

.footer-section h4 {
    font-size: 1.2rem;
    font-weight: 700;
    margin-bottom: 1rem;
}

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

.footer-section li {
    margin-bottom: 0.5rem;
}

.footer-section a {
    color: rgba(255, 255, 255, 0.7);
    text-decoration: none;
    transition: color 0.3s ease;
}

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

/* Simple interactions like hot springs */

/* Simple loading like hot springs */

/* Enhanced hero section with parallax depth */
.hero-content {
    animation: heroFloat 6s ease-in-out infinite;
}

@keyframes heroFloat {
    0%, 100% { transform: translateY(0px); }
    50% { transform: translateY(-10px); }
}

.hero-stats .stat {
    transition: all 0.3s ease;
}

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

/* Simple hover effects for interactive elements */
.nav-card,
.experience-card {
    transition: all 0.3s ease;
}

/* Removed nav card hover effects for better mobile experience */

/* Enhanced map interactions */
.map-point {
    will-change: transform;
}

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

.map-point{
    box-shadow: 0 6px 20px rgba(59, 130, 246, 0.5);
}


/* Improved accessibility and motion preferences */
@media (prefers-reduced-motion: reduce) {
    *,
    *::before,
    *::after {
        animation-duration: 0.01ms !important;
        animation-iteration-count: 1 !important;
        transition-duration: 0.01ms !important;
        scroll-behavior: auto !important;
    }
    
/* Removed hover effects for consistent user experience across all devices */
}

/* High contrast mode support */
@media (prefers-contrast: high) {
    .glacier-card {
        border: 2px solid;
    }
    
    .hero-gradient {
        opacity: 0.9;
    }
}

/* Dark mode support */
@media (prefers-color-scheme: dark) {
    .quick-nav,
    .major-glaciers {
        background: #0f172a;
    }
    
    .glacier-card,
    .nav-card,
    .experience-card {
        background: #1e293b;
        border-color: rgba(148, 163, 184, 0.2);
    }
}

/* Mobile Responsiveness */
@media (max-width: 768px) {
    .spring-hero {
        min-height: 300px; /* Compressed height for mobile as per audit */
    }
    
    .hero-title {
        font-size: 3rem;
    }
    
    .hero-stats {
        flex-direction: column;
        gap: 1.5rem;
    }
    
    .glacier-card.featured {
        grid-column: span 1;
    }
    
    /* Stack nav cards vertically on mobile */
    .nav-cards {
        grid-template-columns: 1fr;
        gap: 1.5rem;
    }
    
    .nav-card {
        padding: 2rem 1.5rem;
        min-height: 44px; /* Ensure tappable area */
    }
    
    .card-icon {
        font-size: 2.5rem;
        margin-bottom: 1rem;
    }
    
    .nav-card h3 {
        font-size: 1.3rem;
    }
    
    .nav-card p {
        font-size: 0.95rem;
        line-height: 1.5;
    }
    
    /* Stack climate section grid on mobile */
    .climate-grid {
        grid-template-columns: 1fr;
        gap: 2rem;
    }
    
    .climate-impacts,
    .sustainable-tourism {
        margin-bottom: 3rem;
        padding: 2rem 1rem;
    }
    
    /* Increased spacing between sections on mobile */
    .major-glaciers,
    .quick-nav,
    .climate-section {
        padding: 4rem 0;
    }
    
    .nav-links {
        display: none; /* Will add mobile menu later */
    }
    
    .glacier-nav .container {
        justify-content: center;
    }
}

@media (max-width: 480px) {
    .hero-title {
        font-size: 2.5rem;
    }
    
    .hero-subtitle {
        font-size: 1.2rem;
    }
    
    .section-title {
        font-size: 2rem;
    }
    
    /* Simplify animations on mobile for performance */
/* Removed hover effects for consistent user experience across all devices */
    
    .glacier-card::after {
        display: none; /* Remove glow effects on mobile */
    }
    
    .hero-content {
        animation: none; /* Reduce animations on mobile */
    }
}

/* Premium animation class for JavaScript intersection observer */
.animate-in {
    animation: premiumFadeIn 0.8s cubic-bezier(0.4, 0, 0.2, 1) forwards;
}

@keyframes premiumFadeIn {
    0% {
        opacity: 0;
        transform: translateY(40px) scale(0.95);
        filter: blur(5px);
    }
    100% {
        opacity: 1;
        transform: translateY(0) scale(1);
        filter: blur(0);
    }
}

/* Print styles */
@media print {
    .glacier-nav,
    .hero-scroll,
    .btn-primary,
    .btn-secondary {
        display: none;
    }
    
    .glacier-hero {
        min-height: auto;
        padding: 2rem 0;
    }
    
    * {
        background: white !important;
        color: black !important;
        box-shadow: none !important;
    }
}

/* Glaciers Comparison Table */
.glaciers-table-container {
    margin: 3rem 0 4rem 0;
    background: rgba(255, 255, 255, 0.95);
    border-radius: 16px;
    padding: 2.5rem;
    border: 1px solid rgba(59, 130, 246, 0.15);
    box-shadow: 0 10px 40px rgba(59, 130, 246, 0.08);
}

.table-title {
    font-size: 1.8rem;
    font-weight: 700;
    color: var(--text-high-contrast);
    margin-bottom: 1.5rem;
    text-align: center;
    background: linear-gradient(135deg, var(--primary), var(--secondary));
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
}

.section-subtitle {
    font-size: 1.5rem;
    font-weight: 600;
    color: var(--text-high-contrast);
    margin: 3rem 0 2rem 0;
    text-align: center;
}

.table-responsive {
    overflow-x: auto;
    border-radius: 12px;
    box-shadow: 0 4px 20px rgba(59, 130, 246, 0.1);
}

.glaciers-table {
    width: 100%;
    border-collapse: collapse;
    font-size: 0.95rem;
    background: white;
    border-radius: 12px;
    overflow: hidden;
}

.glaciers-table thead {
    background: linear-gradient(135deg, var(--primary), var(--secondary));
    color: white;
}

.glaciers-table th {
    padding: 1rem;
    text-align: left;
    font-weight: 600;
    font-size: 0.9rem;
    text-transform: uppercase;
    letter-spacing: 0.5px;
}

.glaciers-table tbody tr {
    transition: all 0.2s ease;
    border-bottom: 1px solid rgba(226, 232, 240, 0.8);
}

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

.glaciers-table tbody tr.featured-row {
    background: rgba(59, 130, 246, 0.06);
}

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

.glaciers-table td {
    padding: 1rem;
    vertical-align: top;
    color: var(--text-medium-contrast);
    line-height: 1.5;
}

.glacier-name {
    min-width: 180px;
}

.glacier-name strong {
    color: var(--text-high-contrast);
    font-size: 1.05rem;
    display: block;
    margin-bottom: 0.25rem;
}

.glacier-tag-small {
    display: inline-block;
    background: linear-gradient(135deg, var(--primary), var(--secondary));
    color: white;
    padding: 0.2rem 0.6rem;
    border-radius: 12px;
    font-size: 0.75rem;
    font-weight: 500;
    text-transform: uppercase;
    letter-spacing: 0.3px;
}

.accessibility {
    padding: 0.3rem 0.8rem;
    border-radius: 16px;
    font-size: 0.8rem;
    font-weight: 600;
    text-transform: uppercase;
    letter-spacing: 0.3px;
}

.accessibility.easy {
    background: rgba(34, 197, 94, 0.15);
    color: #059669;
    border: 1px solid rgba(34, 197, 94, 0.3);
}

.accessibility.moderate {
    background: rgba(251, 146, 60, 0.15);
    color: #ea580c;
    border: 1px solid rgba(251, 146, 60, 0.3);
}

.accessibility.hard {
    background: rgba(239, 68, 68, 0.15);
    color: #dc2626;
    border: 1px solid rgba(239, 68, 68, 0.3);
}

.table-note {
    margin-top: 1.5rem;
    font-size: 0.9rem;
    color: var(--text-light-contrast);
    font-style: italic;
    text-align: center;
    padding: 1rem;
    background: rgba(59, 130, 246, 0.03);
    border-radius: 8px;
    border-left: 3px solid var(--primary);
}

/* Responsive Table */
@media (max-width: 768px) {
    .glaciers-table-container {
        padding: 1.5rem;
        margin: 2rem 0;
    }
    
    .table-responsive {
        border-radius: 8px;
    }
    
    .glaciers-table {
        font-size: 0.85rem;
    }
    
    .glaciers-table th,
    .glaciers-table td {
        padding: 0.75rem 0.5rem;
    }
    
    .glacier-name {
        min-width: 140px;
    }
    
    .glacier-tag-small {
        font-size: 0.7rem;
        padding: 0.15rem 0.5rem;
    }
    
    .table-title {
        font-size: 1.5rem;
    }
}

/* Enhanced Climate Impact Section */
.climate-section {
    background: linear-gradient(135deg, rgba(219, 234, 254, 0.8), rgba(243, 244, 246, 0.9));
    padding: 5rem 0;
    border-top: 3px solid #3b82f6;
    position: relative;
    color: #1e293b;
}

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

.climate-content h2 {
    color: #1e40af;
    font-weight: 700;
}

.climate-intro {
    font-size: 1.15rem;
    line-height: 1.7;
    color: var(--text-medium-contrast);
    text-align: center;
    max-width: 900px;
    margin: 0 auto 3rem auto;
    background: rgba(255, 255, 255, 0.9);
    padding: 2rem;
    border-radius: 12px;
    border-left: 4px solid #3b82f6;
}

.climate-grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 3rem;
    margin: 3rem 0;
}

.climate-impacts,
.sustainable-tourism {
    background: rgba(255, 255, 255, 0.95);
    border-radius: 16px;
    padding: 2.5rem;
    border: 1px solid rgba(220, 38, 38, 0.15);
    box-shadow: 0 10px 40px rgba(220, 38, 38, 0.08);
}

.climate-impacts h3,
.sustainable-tourism h3 {
    color: var(--text-high-contrast);
    margin-bottom: 1.5rem;
    font-size: 1.3rem;
    display: flex;
    align-items: center;
    gap: 0.5rem;
}

.climate-stats {
    display: flex;
    flex-direction: column;
    gap: 1.5rem;
}

.climate-stat {
    display: flex;
    align-items: center;
    gap: 1rem;
    padding: 1rem;
    background: rgba(220, 38, 38, 0.05);
    border-radius: 12px;
    border-left: 3px solid #3b82f6;
}

.stat-icon {
    font-size: 2rem;
    min-width: 3rem;
    text-align: center;
}

.climate-stat h4 {
    color: #1e40af;
    font-size: 1.25rem;
    margin: 0 0 0.25rem 0;
    font-weight: 700;
}

.climate-stat p {
    color: var(--text-medium-contrast);
    margin: 0;
    font-size: 0.9rem;
}

.sustainability-guidelines {
    display: flex;
    flex-direction: column;
    gap: 1.25rem;
}

.guideline-item {
    display: flex;
    align-items: flex-start;
    gap: 1rem;
    padding: 1rem;
    background: rgba(34, 197, 94, 0.05);
    border-radius: 12px;
    border-left: 3px solid #22c55e;
}

.guideline-icon {
    font-size: 1.5rem;
    min-width: 2rem;
    text-align: center;
    margin-top: 0.25rem;
}

.guideline-item h4 {
    color: var(--text-high-contrast);
    font-size: 1rem;
    margin: 0 0 0.25rem 0;
    font-weight: 600;
}

.guideline-item p {
    color: var(--text-medium-contrast);
    margin: 0;
    font-size: 0.9rem;
    line-height: 1.5;
}

.climate-action {
    background: rgba(255, 255, 255, 0.95);
    border-radius: 16px;
    padding: 2.5rem;
    text-align: center;
    border: 2px solid rgba(59, 130, 246, 0.2);
    box-shadow: 0 10px 40px rgba(59, 130, 246, 0.08);
    margin-top: 2rem;
}

.climate-action h3 {
    color: var(--text-high-contrast);
    margin-bottom: 1rem;
    font-size: 1.3rem;
}

.climate-action p {
    color: var(--text-medium-contrast);
    font-size: 1.05rem;
    line-height: 1.6;
    margin-bottom: 2rem;
    max-width: 700px;
    margin-left: auto;
    margin-right: auto;
}

.action-buttons {
    display: flex;
    gap: 1rem;
    justify-content: center;
    flex-wrap: wrap;
}

.btn-primary,
.btn-secondary {
    padding: 0.875rem 1.75rem;
    border-radius: 25px;
    font-weight: 600;
    text-decoration: none;
    font-size: 0.95rem;
    transition: all 0.3s ease;
    display: inline-flex;
    align-items: center;
    gap: 0.5rem;
}

.btn-primary {
    background: linear-gradient(135deg, var(--primary), var(--secondary));
    color: white;
    border: 2px solid transparent;
}

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

.btn-secondary {
    background: transparent;
    color: var(--primary);
    border: 2px solid var(--primary);
}

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

/* Responsive Climate Section */
@media (max-width: 968px) {
    .climate-grid {
        grid-template-columns: 1fr;
        gap: 2rem;
    }
    
    .climate-impacts,
    .sustainable-tourism,
    .climate-action {
        padding: 2rem;
    }
    
    .climate-intro {
        padding: 1.5rem;
        font-size: 1.05rem;
    }
    
    .action-buttons {
        flex-direction: column;
        align-items: center;
    }
    
    .btn-primary,
    .btn-secondary {
        width: 100%;
        max-width: 300px;
        justify-content: center;
    }
}

/* Extra small screens */
@media (max-width: 600px) {
    .hero-title {
        font-size: 2.2rem !important;
        line-height: 1.2;
    }
    
    .hero-subtitle {
        font-size: 1rem !important;
    }
    
    .nav-card h3 {
        font-size: 1.2rem;
    }
    
    .nav-card p {
        font-size: 0.9rem;
    }
    
    .section-title {
        font-size: 1.8rem;
    }
    
    .climate-content h2 {
        font-size: 1.8rem;
    }
    
    .climate-intro {
        font-size: 1rem;
    }
    
    .climate-stat h4 {
        font-size: 1.1rem;
    }
}