/* Reykjanes Eruptions Specialized Styles - World Class Design */

/* Navigation */
.reykjanes-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(239, 68, 68, 0.1);
    z-index: 1000;
    padding: 1rem 0;
    transition: all 0.3s cubic-bezier(0.4, 0, 0.2, 1);
}

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

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

.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: #ef4444;
    background: rgba(239, 68, 68, 0.1);
}

/* Reykjanes Hero */
.reykjanes-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 20%, #451a03 60%, #7c2d12 100%);
}

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

.lava-gradient {
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: linear-gradient(135deg, 
        rgba(239, 68, 68, 0.9) 0%, 
        rgba(245, 158, 11, 0.7) 40%, 
        rgba(220, 38, 38, 0.8) 80%,
        rgba(127, 29, 29, 0.6) 100%);
}

.eruption-pattern {
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background-image: 
        radial-gradient(circle at 20% 30%, rgba(255, 87, 51, 0.4) 3px, transparent 3px),
        radial-gradient(circle at 60% 70%, rgba(239, 68, 68, 0.3) 2px, transparent 2px),
        radial-gradient(circle at 80% 20%, rgba(245, 158, 11, 0.3) 1px, transparent 1px),
        radial-gradient(circle at 40% 80%, rgba(220, 38, 38, 0.2) 2px, transparent 2px);
    background-size: 120px 120px, 180px 180px, 100px 100px, 150px 150px;
    animation: eruptionFlow 25s linear infinite;
}

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

.hero-content {
    position: relative;
    z-index: 2;
    color: white;
    max-width: 700px;
    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: activeGlow 3s ease-in-out infinite;
}

@keyframes activeGlow {
    0%, 100% { 
        box-shadow: 0 4px 20px rgba(239, 68, 68, 0.4); 
    }
    50% { 
        box-shadow: 0 8px 40px rgba(239, 68, 68, 0.7); 
    }
}

.hero-title {
    font-size: 4rem;
    font-weight: 900;
    line-height: 1.1;
    margin-bottom: 1.5rem;
    background: linear-gradient(45deg, #ffffff, #fbbf24, #f87171, #fcd34d);
    -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.4rem;
    font-weight: 300;
    margin-bottom: 2rem;
    opacity: 0.9;
    line-height: 1.4;
}

.hero-highlights {
    display: flex;
    justify-content: center;
    gap: 2rem;
    flex-wrap: wrap;
}

.hero-highlights span {
    padding: 0.5rem 1rem;
    background: rgba(255, 255, 255, 0.15);
    border-radius: 25px;
    font-size: 0.9rem;
    backdrop-filter: blur(5px);
    border: 1px solid rgba(255, 255, 255, 0.2);
}

/* Current Status */
.current-status {
    padding: 6rem 0;
    background: linear-gradient(135deg, #f8fafc 0%, #e2e8f0 100%);
}

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

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

.status-card {
    background: white;
    border-radius: 20px;
    padding: 2.5rem;
    box-shadow: 0 10px 40px rgba(0, 0, 0, 0.08);
    border: 1px solid rgba(226, 232, 240, 0.8);
    transition: all 0.4s ease;
    position: relative;
    overflow: hidden;
}

.status-card.alert::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    height: 4px;
    background: linear-gradient(90deg, #ef4444, #f59e0b);
    animation: alertPulse 2s ease-in-out infinite;
}

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

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

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

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

.status-icon {
    font-size: 2.5rem;
    margin-bottom: 1.5rem;
    display: block;
}

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

.status-level {
    display: inline-block;
    padding: 0.5rem 1rem;
    border-radius: 20px;
    font-size: 0.8rem;
    font-weight: 700;
    margin-bottom: 1rem;
    text-transform: uppercase;
    letter-spacing: 0.5px;
}

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

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

.status-level.variable {
    background: linear-gradient(135deg, #f59e0b, #fbbf24);
    color: white;
}

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

/* Eruption Timeline */
.eruption-timeline {
    padding: 6rem 0;
    background: white;
}

.timeline-container {
    max-width: 900px;
    margin: 0 auto;
}

.timeline-event {
    display: flex;
    gap: 2rem;
    margin-bottom: 3rem;
    background: white;
    border-radius: 20px;
    padding: 2.5rem;
    box-shadow: 0 10px 40px rgba(0, 0, 0, 0.08);
    border: 1px solid rgba(226, 232, 240, 0.8);
    transition: all 0.4s ease;
    position: relative;
    overflow: hidden;
}

.timeline-event.featured::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    height: 4px;
    background: linear-gradient(90deg, #ef4444, #f59e0b, #fbbf24);
    animation: featuredGlow 3s ease-in-out infinite;
}

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

.timeline-event.recent::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    height: 4px;
    background: linear-gradient(90deg, #ef4444, #f59e0b);
    animation: recentPulse 2s ease-in-out infinite;
}

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

@keyframes recentPulse {
    0%, 100% { opacity: 0.9; }
    50% { opacity: 1; }
}

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

.event-date {
    font-size: 1.3rem;
    font-weight: 800;
    color: #ef4444;
    min-width: 100px;
    text-align: center;
    padding: 1rem;
    background: rgba(239, 68, 68, 0.05);
    border-radius: 15px;
    height: fit-content;
}

.event-content {
    flex: 1;
}

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

.event-status {
    display: inline-block;
    padding: 0.25rem 0.75rem;
    background: rgba(239, 68, 68, 0.1);
    color: #ef4444;
    border-radius: 15px;
    font-size: 0.8rem;
    font-weight: 600;
    margin-bottom: 1rem;
}

.event-details {
    margin: 1.5rem 0;
    padding: 1.5rem;
    background: rgba(239, 68, 68, 0.05);
    border-radius: 15px;
    border-left: 4px solid #ef4444;
}

.detail {
    margin-bottom: 0.5rem;
    font-size: 0.9rem;
}

.impact-warning {
    margin-top: 1rem;
    padding: 1rem;
    background: rgba(220, 38, 38, 0.1);
    border: 1px solid rgba(220, 38, 38, 0.2);
    border-radius: 10px;
    font-size: 0.9rem;
}

.event-highlights {
    margin-top: 1.5rem;
}

.highlight {
    padding: 0.75rem;
    margin-bottom: 0.5rem;
    background: rgba(245, 158, 11, 0.05);
    border-radius: 10px;
    border-left: 3px solid #f59e0b;
    font-size: 0.9rem;
}

/* Visiting Information */
.visiting-info {
    padding: 6rem 0;
    background: linear-gradient(135deg, #f8fafc 0%, #e2e8f0 100%);
}

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

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

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

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

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

.info-content p {
    font-weight: 600;
    margin-bottom: 1rem;
    color: #ef4444;
}

.info-content ul {
    list-style: none;
    padding: 0;
}

.info-content li {
    padding: 0.5rem 0;
    border-bottom: 1px solid rgba(226, 232, 240, 0.5);
    position: relative;
    padding-left: 1rem;
}

.info-content li::before {
    content: '🔥';
    position: absolute;
    left: 0;
    font-size: 0.8rem;
}

/* Infrastructure Impact */
.infrastructure-impact {
    padding: 6rem 0;
    background: white;
}

.impact-overview {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 4rem;
    align-items: center;
    max-width: 1200px;
    margin: 0 auto 4rem;
}

.impact-text h3 {
    font-size: 2rem;
    font-weight: 800;
    margin-bottom: 1.5rem;
    color: var(--dark);
}

.lead {
    font-size: 1.2rem;
    color: var(--gray);
    line-height: 1.6;
}

.impact-stats {
    display: grid;
    gap: 2rem;
}

.impact-stat {
    text-align: center;
    padding: 2rem;
    background: rgba(239, 68, 68, 0.05);
    border-radius: 15px;
    border: 1px solid rgba(239, 68, 68, 0.1);
}

.stat-number {
    font-size: 2.5rem;
    font-weight: 800;
    color: #ef4444;
    display: block;
    margin-bottom: 0.5rem;
}

.stat-label {
    font-size: 0.9rem;
    color: var(--gray);
    font-weight: 500;
}

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

.impact-area {
    padding: 2rem;
    background: rgba(239, 68, 68, 0.05);
    border-radius: 15px;
    border-left: 4px solid #ef4444;
}

.impact-area h4 {
    font-size: 1.2rem;
    font-weight: 700;
    margin-bottom: 1rem;
    color: var(--dark);
}

/* Emergency Information */
.emergency-info {
    padding: 6rem 0;
    background: linear-gradient(135deg, #dc2626, #b91c1c);
    color: white;
}

.emergency-content h2 {
    text-align: center;
    font-size: 2.5rem;
    font-weight: 800;
    margin-bottom: 3rem;
}

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

.emergency-card {
    background: rgba(255, 255, 255, 0.1);
    padding: 2rem;
    border-radius: 15px;
    backdrop-filter: blur(10px);
}

.emergency-card h3 {
    font-size: 1.3rem;
    font-weight: 700;
    margin-bottom: 1.5rem;
}

.emergency-card ul {
    list-style: none;
    padding: 0;
}

.emergency-card li {
    padding: 0.5rem 0;
    border-bottom: 1px solid rgba(255, 255, 255, 0.2);
}

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

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

.cta-content p {
    font-size: 1.2rem;
    opacity: 0.9;
    margin-bottom: 2.5rem;
}

.cta-buttons {
    display: flex;
    justify-content: center;
    gap: 1.5rem;
    flex-wrap: wrap;
}

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

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

.btn-secondary {
    padding: 1rem 2rem;
    background: transparent;
    color: white;
    border: 2px solid rgba(255, 255, 255, 0.3);
    text-decoration: none;
    border-radius: 50px;
    font-weight: 600;
    transition: all 0.3s ease;
    backdrop-filter: blur(10px);
}

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

/* Mobile Responsiveness */
@media (max-width: 768px) {
    .hero-title {
        font-size: 3rem;
    }
    
    .hero-highlights {
        flex-direction: column;
        gap: 1rem;
    }
    
    .timeline-event {
        flex-direction: column;
        gap: 1rem;
    }
    
    .event-date {
        min-width: auto;
        text-align: left;
    }
    
    .impact-overview {
        grid-template-columns: 1fr;
        gap: 3rem;
    }
    
    .nav-links {
        display: none;
    }
    
    .reykjanes-nav .container {
        justify-content: center;
    }
    
    .cta-buttons {
        flex-direction: column;
        align-items: center;
    }
}

@media (max-width: 480px) {
    .hero-title {
        font-size: 2.5rem;
    }
    
    .hero-subtitle {
        font-size: 1.2rem;
    }
    
    .status-card,
    .visiting-card,
    .timeline-event {
        padding: 2rem;
    }
}

/* 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) {
    .status-card,
    .visiting-card,
    .timeline-event {
        border: 2px solid;
    }
}

/* Timeline Footer and Source Styling */
.timeline-footer {
    text-align: center;
    padding: 2rem 1rem;
    margin-top: 2rem;
    background: rgba(239, 68, 68, 0.05);
    border-radius: 12px;
    border: 1px solid rgba(239, 68, 68, 0.1);
}

.timeline-footer p {
    color: var(--dark);
    font-size: 0.95rem;
    margin: 0;
}

.timeline-footer a {
    color: #ef4444;
    text-decoration: none;
    font-weight: 600;
}

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

.event-source {
    margin-top: 1rem;
    padding: 0.75rem;
    background: rgba(239, 68, 68, 0.05);
    border-radius: 8px;
    border-left: 3px solid #ef4444;
}

.event-source strong {
    color: var(--dark);
}

.event-source a {
    color: #ef4444;
    text-decoration: none;
}

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