/* Volcanoes Hub Specialized Styles - World Class Design */

/* Navigation */
.volcano-nav {
    position: fixed;
    top: 0;
    left: 0;
    right: 0;
    background: rgba(255, 255, 255, 0.95);
    backdrop-filter: blur(15px);
    border-bottom: 1px solid rgba(220, 38, 38, 0.1);
    z-index: 1000;
    padding: 1rem 0;
    transition: all 0.3s cubic-bezier(0.4, 0, 0.2, 1);
}

.volcano-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: #dc2626;
    text-decoration: none;
    font-size: 1.1rem;
    transition: all 0.3s ease;
}

/* Removed nav brand hover for consistent experience */

.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.active {
    color: #dc2626;
    background: rgba(220, 38, 38, 0.1);
}
/* Removed nav links hover for consistent experience */

/* Volcano Hero */
.volcano-hero {
    min-height: 100vh;
    position: relative;
    display: flex;
    align-items: center;
    justify-content: center;
    text-align: center;
    overflow: hidden;
    background: linear-gradient(135deg, #0f172a 0%, #1e293b 30%, #451a03 70%, #7c2d12 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(220, 38, 38, 0.8) 0%, 
        rgba(185, 28, 28, 0.6) 50%, 
        rgba(239, 68, 68, 0.7) 100%);
}

.lava-pattern {
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background-image: 
        radial-gradient(circle at 30% 20%, rgba(255, 87, 51, 0.3) 2px, transparent 2px),
        radial-gradient(circle at 70% 80%, rgba(220, 38, 38, 0.2) 1px, transparent 1px),
        radial-gradient(circle at 20% 70%, rgba(185, 28, 28, 0.2) 1px, transparent 1px);
    background-size: 100px 100px, 150px 150px, 80px 80px;
    animation: lavaFlow 20s linear infinite;
}

@keyframes lavaFlow {
    0% { transform: translate(0, 0) rotate(0deg); }
    100% { transform: translate(60px, 40px) rotate(360deg); }
}

.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);
    animation: badgeGlow 4s ease-in-out infinite;
}

@keyframes badgeGlow {
    0%, 100% { 
        box-shadow: 0 4px 20px rgba(220, 38, 38, 0.3); 
    }
    50% { 
        box-shadow: 0 8px 35px rgba(220, 38, 38, 0.6); 
    }
}

.hero-title {
    font-size: 4.5rem;
    font-weight: 900;
    line-height: 1.1;
    margin-bottom: 1.5rem;
    background: linear-gradient(45deg, #ffffff, #fbbf24, #f87171);
    -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: white;
    text-shadow: 0 2px 10px rgba(0, 0, 0, 0.5);
}

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

/* Activity Alert */
.activity-alert {
    background: rgba(239, 246, 255, 0.95);
    color: #1e40af;
    padding: 1.5rem 0;
    position: relative;
    z-index: 1;
    margin-bottom: 2rem;
    border: 1px solid rgba(59, 130, 246, 0.3);
}

.alert-content {
    display: flex;
    align-items: center;
    gap: 2rem;
    max-width: 1200px;
    margin: 0 auto;
}

.alert-icon {
    font-size: 2rem;
    animation: alertPulse 2s ease-in-out infinite;
}

@keyframes alertPulse {
    0%, 100% { transform: scale(1); }
    50% { transform: scale(1.1); }
}

.alert-text h3 {
    font-size: 1.2rem;
    font-weight: 700;
    margin-bottom: 0.5rem;
}

.alert-button {
    background: #3b82f6;
    color: white;
    padding: 0.75rem 1.5rem;
    border-radius: 25px;
    text-decoration: none;
    font-weight: 600;
    transition: all 0.3s ease;
    margin-left: auto;
}

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

.alert-dismiss {
    background: none;
    border: none;
    color: #6b7280;
    font-size: 1.2rem;
    cursor: pointer;
    padding: 0.5rem;
    margin-left: 1rem;
    border-radius: 50%;
    transition: background 0.3s ease;
}

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

/* Quick Navigation Cards */
.quick-nav {
    padding: 6rem 0;
    background: white;
}

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

.nav-cards {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 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 15px 40px rgba(0, 0, 0, 0.1);
    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;
    transform: translateY(0);
}

.nav-card.hot::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    height: 4px;
    background: linear-gradient(90deg, #dc2626, #ef4444, #dc2626);
    animation: hotGlow 3s ease-in-out infinite;
}

@keyframes hotGlow {
    0%, 100% { opacity: 0.8; }
    50% { opacity: 1; }
}

.nav-card::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    height: 4px;
    background: linear-gradient(90deg, #dc2626, #ef4444, #dc2626);
}

/* Removed 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-status {
    display: inline-block;
    padding: 0.25rem 0.75rem;
    background: rgba(220, 38, 38, 0.1);
    color: #dc2626;
    border-radius: 15px;
    font-size: 0.8rem;
    font-weight: 600;
    margin-bottom: 1rem;
}

.card-arrow {
    font-size: 1.2rem;
    color: #dc2626;
    font-weight: 600;
    transition: transform 0.3s ease;
}

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

/* Volcano Map */
.volcano-map {
    padding: 6rem 0;
    background: linear-gradient(135deg, #1e293b 0%, #451a03 100%);
    color: white;
}

.volcano-map .section-title {
    color: white;
    background: linear-gradient(135deg, #ffffff, #dc2626);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
}

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

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

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

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

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

.region-marker {
    display: inline-block;
    width: 35px;
    height: 35px;
    background: linear-gradient(135deg, #dc2626, #ef4444);
    color: white;
    border-radius: 50%;
    text-align: center;
    line-height: 35px;
    font-size: 1rem;
    box-shadow: 0 4px 15px rgba(220, 38, 38, 0.4);
    animation: volcanoPulse 3s infinite;
}

.region-marker.active {
    animation: activePulse 1.5s infinite;
    background: linear-gradient(135deg, #ef4444, #dc2626);
}

@keyframes volcanoPulse {
    0% { box-shadow: 0 4px 15px rgba(220, 38, 38, 0.4); }
    50% { box-shadow: 0 4px 25px rgba(220, 38, 38, 0.6); }
    100% { box-shadow: 0 4px 15px rgba(220, 38, 38, 0.4); }
}

@keyframes activePulse {
    0% { 
        box-shadow: 0 4px 15px rgba(239, 68, 68, 0.6);
        transform: scale(1);
    }
    50% { 
        box-shadow: 0 8px 30px rgba(239, 68, 68, 0.8);
        transform: scale(1.1);
    }
    100% { 
        box-shadow: 0 4px 15px rgba(239, 68, 68, 0.6);
        transform: scale(1);
    }
}

.region-label {
    position: absolute;
    top: -40px;
    left: 50%;
    transform: translateX(-50%);
    background: rgba(255, 255, 255, 0.95);
    backdrop-filter: blur(10px);
    color: #dc2626;
    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(220, 38, 38, 0.3);
    box-shadow: 0 4px 15px rgba(0, 0, 0, 0.2);
}

/* Removed map region hover effects for consistent user experience */

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

/* Featured Systems */
.featured-systems {
    padding: 6rem 0;
    background: white;
}

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

.system-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);
}

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

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

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

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

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

.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%);
    animation: volcanoShimmer 6s ease-in-out infinite;
}

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

.system-status {
    position: absolute;
    top: 1rem;
    left: 1rem;
    padding: 0.5rem 1rem;
    border-radius: 20px;
    font-size: 0.8rem;
    font-weight: 600;
}

.system-status.active {
    background: linear-gradient(135deg, #ef4444, #dc2626);
    color: white;
    animation: statusBlink 2s ease-in-out infinite;
}

.system-status.monitoring {
    background: linear-gradient(135deg, #dc2626, #ef4444);
    color: white;
}

.system-status.overdue {
    background: linear-gradient(135deg, #dc2626, #b91c1c);
    color: white;
}

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

.system-content {
    padding: 2.5rem;
}

.system-content h3 {
    font-size: 1.8rem;
    font-weight: 800;
    margin-bottom: 0.5rem;
    color: var(--dark);
}

.system-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;
}

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

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

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

.system-link {
    color: #dc2626;
    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 */

/* Eruption Timeline */
.eruption-timeline {
    padding: 6rem 0;
    background: linear-gradient(135deg, #f8fafc 0%, #e2e8f0 100%);
}

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

.timeline::before {
    content: '';
    position: absolute;
    left: 2rem;
    top: 0;
    bottom: 0;
    width: 3px;
    background: linear-gradient(to bottom, #dc2626, #ef4444);
}

.timeline-item {
    display: flex;
    gap: 2rem;
    margin-bottom: 3rem;
    position: relative;
}

.timeline-item.featured::before {
    content: '';
    position: absolute;
    left: 1.25rem;
    top: 1rem;
    width: 1.5rem;
    height: 1.5rem;
    background: linear-gradient(135deg, #dc2626, #ef4444);
    border-radius: 50%;
    border: 3px solid white;
    z-index: 2;
    animation: timelinePulse 3s ease-in-out infinite;
}

@keyframes timelinePulse {
    0%, 100% { 
        box-shadow: 0 0 0 0 rgba(220, 38, 38, 0.4);
        transform: scale(1);
    }
    50% { 
        box-shadow: 0 0 0 10px rgba(220, 38, 38, 0);
        transform: scale(1.1);
    }
}

.timeline-date {
    font-size: 1.2rem;
    font-weight: 800;
    color: #dc2626;
    min-width: 80px;
}

.timeline-content {
    background: white;
    padding: 2rem;
    border-radius: 15px;
    box-shadow: 0 4px 20px rgba(0, 0, 0, 0.06);
    flex: 1;
}

.timeline-impact {
    display: inline-block;
    padding: 0.25rem 0.75rem;
    background: rgba(220, 38, 38, 0.1);
    color: #dc2626;
    border-radius: 15px;
    font-size: 0.8rem;
    font-weight: 600;
    margin-top: 0.5rem;
}

/* Safety Overview */
.safety-overview {
    padding: 6rem 0;
    background: linear-gradient(135deg, #f8fafc, #e2e8f0);
    color: #1e293b;
    text-align: center;
}

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

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

.safety-features {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
    gap: 2rem;
    max-width: 1000px;
    margin: 0 auto 3rem;
}

.safety-feature {
    background: white;
    padding: 2rem;
    border-radius: 15px;
    box-shadow: 0 4px 20px rgba(0, 0, 0, 0.1);
    border: 1px solid rgba(220, 38, 38, 0.1);
    transition: all 0.3s ease;
}

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

.feature-icon {
    font-size: 3rem;
    margin-bottom: 1rem;
    display: block;
}

.safety-feature h3 {
    font-size: 1.3rem;
    font-weight: 700;
    margin-bottom: 1rem;
}

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

/* Removed button hover effects for better mobile experience */

/* Footer */
.volcano-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 */

/* Mobile Responsiveness */
@media (max-width: 768px) {
    .hero-title {
        font-size: 3rem;
    }
    
    .hero-stats {
        flex-direction: column;
        gap: 1.5rem;
    }
    
    .system-card.featured {
        grid-column: span 1;
    }
    
    .nav-links {
        display: none;
    }
    
    .volcano-nav .container {
        justify-content: center;
    }
    
    .alert-content {
        flex-direction: column;
        text-align: center;
        gap: 1rem;
    }
    
    /* 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;
    }
    
    /* Increased spacing between sections on mobile */
    .quick-nav,
    .volcano-map,
    .major-systems,
    .citations-section {
        padding: 4rem 0;
    }
    
    .timeline::before {
        left: 1rem;
    }
    
    .timeline-item {
        gap: 1rem;
    }
    
    .timeline-date {
        min-width: 60px;
        font-size: 1rem;
    }
}

@media (max-width: 480px) {
    .hero-title {
        font-size: 2.5rem;
    }
    
    .hero-subtitle {
        font-size: 1.2rem;
    }
    
    .section-title {
        font-size: 2rem;
    }
    
    .system-content,
    .timeline-content {
        padding: 1.5rem;
    }
}

/* 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;
    }
}

@media (prefers-contrast: high) {
    .system-card,
    .nav-card,
    .timeline-content {
        border: 2px solid;
    }
}

/* Fix missing volcano card headlines */
.system-content {
    padding: 30px;
    display: flex;
    flex-direction: column;
    justify-content: center;
}

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

/* Dark mode support */
@media (prefers-color-scheme: dark) {
    .quick-nav,
    .featured-systems {
        background: #0f172a;
    }
    
    .system-card,
    .nav-card,
    .timeline-content {
        background: #1e293b;
        border-color: rgba(148, 163, 184, 0.2);
    }
}

/* Citations Section */
.citations-section {
    background: rgba(255, 68, 68, 0.02);
    padding: 4rem 0;
    border-top: 1px solid rgba(255, 68, 68, 0.1);
}

.citations-list {
    max-width: 800px;
    margin: 0 auto;
}

.citation-item {
    display: flex;
    gap: 1rem;
    margin-bottom: 2rem;
    padding: 1.5rem;
    background: rgba(255, 255, 255, 0.8);
    border-radius: 12px;
    border-left: 4px solid #dc2626;
}

.citation-number {
    font-weight: 700;
    color: #dc2626;
    min-width: 2rem;
    font-size: 1.1rem;
}

.citation-content p {
    margin: 0;
    color: var(--text-high-contrast);
    line-height: 1.6;
}

.citation-content a {
    color: #dc2626;
    text-decoration: underline;
}

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

.citation {
    color: #dc2626;
    text-decoration: none;
    font-weight: 600;
    font-size: 0.9rem;
}

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

.citation-small {
    color: rgba(255, 255, 255, 0.9);
    text-decoration: none;
    font-size: 0.8rem;
}

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

.citations-note {
    text-align: center;
    margin-top: 3rem;
    padding: 1.5rem;
    background: rgba(255, 136, 68, 0.1);
    border-radius: 12px;
    border: 1px solid rgba(255, 136, 68, 0.2);
}

.citations-note p {
    margin: 0;
    color: var(--text-medium-contrast);
    font-size: 0.95rem;
}

.citations-note a {
    color: #dc2626;
    text-decoration: underline;
}

/* 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;
    }
    
    .alert-button {
        padding: 0.6rem 1.2rem;
        font-size: 0.9rem;
        min-height: 44px;
        min-width: 44px;
    }
}