/* ================================
   🚀 MODERN WEATHER CSS 2025 - WordPress Integration
   Child Theme: GeneratePress
   ================================ */

/* ⚡ Enhanced 2025 CSS Custom Properties with Blue Theme */
:root {
    /* Primary Blue Colors - Matching website header */
    --primary-blue: #2563eb;
    --primary-blue-hover: #1d4ed8;
    --primary-blue-light: #dbeafe;
    --primary-blue-dark: #1e40af;
    
    /* Text Colors - High Contrast */
    --text-primary: #0f172a;
    --text-secondary: #334155;
    --text-muted: #64748b;
    --text-white: #ffffff;
    --text-link: #2563eb;
    
    /* Background Colors - Blue themed */
    --bg-white: #ffffff;
    --bg-light: #f8fafc;
    --bg-card: rgba(248, 250, 252, 0.95);
    --bg-blue-light: rgba(37, 99, 235, 0.05);
    
    /* Interactive States */
    --focus-ring: #2563eb;
    --focus-ring-offset: #ffffff;
    
    /* Enhanced Blue-based Weather Gradients */
    --gradient-sunny: linear-gradient(135deg, #f59e0b 0%, #ea580c 100%);
    --gradient-cloudy: linear-gradient(135deg, #3b82f6 0%, #6366f1 100%);
    --gradient-rainy: linear-gradient(135deg, #0f766e 0%, #0891b2 100%);
    --gradient-snowy: linear-gradient(135deg, #e0e7ff 0%, #a5b4fc 100%);
    --gradient-thunder: linear-gradient(135deg, #374151 0%, #6b7280 100%);
    --gradient-default: linear-gradient(135deg, #60a5fa 0%, #3b82f6 100%);
    
    /* Dynamic Time-based Summary Gradients */
    --gradient-dawn: linear-gradient(135deg, #fbbf24 0%, #f472b6 50%, #a78bfa 100%);
    --gradient-morning: linear-gradient(135deg, #60a5fa 0%, #34d399 50%, #fbbf24 100%);
    --gradient-day: linear-gradient(135deg, #3b82f6 0%, #06b6d4 50%, #10b981 100%);
    --gradient-afternoon: linear-gradient(135deg, #f59e0b 0%, #ea580c 50%, #dc2626 100%);
    --gradient-evening: linear-gradient(135deg, #8b5cf6 0%, #ec4899 50%, #f59e0b 100%);
    --gradient-night: linear-gradient(135deg, #1e293b 0%, #3730a3 50%, #1e1b4b 100%);
    
    /* Shadows - Layered depth */
    --shadow-subtle: 0 1px 3px rgba(0, 0, 0, 0.05);
    --shadow-medium: 0 4px 20px rgba(0, 0, 0, 0.08);
    --shadow-strong: 0 8px 30px rgba(0, 0, 0, 0.12);
    --shadow-mega: 0 16px 50px rgba(0, 0, 0, 0.15);
    
    /* Border Radius */
    --radius-sm: 8px;
    --radius-md: 16px;
    --radius-lg: 24px;
    --radius-xl: 32px;
    
    /* Transitions */
    --transition-fast: 0.15s cubic-bezier(0.4, 0, 0.2, 1);
    --transition-medium: 0.3s cubic-bezier(0.4, 0, 0.2, 1);
    --transition-slow: 0.5s cubic-bezier(0.4, 0, 0.2, 1);
    --transition-bounce: 0.6s cubic-bezier(0.68, -0.55, 0.265, 1.55);
}

/* 🌙 Dark Mode Variables */
@media (prefers-color-scheme: dark) {
    :root {
        --text-primary: #f0f6fc;
        --text-secondary: #c9d1d9;
        --text-muted: #8b949e;
        --bg-white: #0d1117;
        --bg-light: #161b22;
        --bg-card: rgba(22, 27, 34, 0.95);
        --focus-ring-offset: #0d1117;
        --shadow-subtle: 0 1px 3px rgba(0, 0, 0, 0.3);
        --shadow-medium: 0 4px 20px rgba(0, 0, 0, 0.4);
        --shadow-strong: 0 8px 30px rgba(0, 0, 0, 0.5);
        --shadow-mega: 0 16px 50px rgba(0, 0, 0, 0.6);
    }
}

/* 🎯 Enhanced Ultra Modern Grid */
.weather-grid {
    display: grid;
    grid-template-columns: repeat(2, 1fr); /* 2 oszlop fix */
    gap: 2rem;
    margin: 3rem auto;
    padding: 0 2rem;
    max-width: 1000px; /* Kisebb max szélesség 2 oszlophoz */
    position: relative;
}

@media (max-width: 768px) {
    .weather-grid {
        grid-template-columns: 1fr; /* Mobil: 1 oszlop */
        gap: 1.5rem;
        padding: 0 1rem;
        margin: 2rem auto;
    }
}

/* 🪟 Ultra Modern Weather Cards with Enhanced Accessibility */
.weather-box {
    background: var(--bg-card);
    backdrop-filter: blur(20px);
    -webkit-backdrop-filter: blur(20px);
    border: 2px solid rgba(255, 255, 255, 0.1);
    border-radius: var(--radius-lg);
    padding: 2rem 1.5rem;
    text-align: center;
    color: var(--text-primary);
    text-decoration: none;
    display: flex;
    flex-direction: column;
    gap: 1.25rem;
    position: relative;
    transition: var(--transition-medium);
    box-shadow: var(--shadow-medium);
    min-height: 380px;
    outline: none;
    overflow: hidden;
    /* Accessibility improvements */
    -webkit-tap-highlight-color: transparent;
    touch-action: manipulation;
    cursor: pointer;
}

@media (max-width: 768px) {
    .weather-box {
        padding: 1.75rem 1.25rem;
        min-height: 320px;
    }
}

/* Enhanced Focus States for WCAG AA */
.weather-box:focus-visible {
    outline: 3px solid var(--focus-ring);
    outline-offset: 4px;
    transform: translateY(-8px);
    box-shadow: var(--shadow-strong);
    border-color: var(--focus-ring);
}

/* ✨ Enhanced Glassmorphism Shimmer Effect */
.weather-box::before {
    content: '';
    position: absolute;
    top: -50%;
    left: -50%;
    width: 200%;
    height: 200%;
    background: conic-gradient(from 0deg, 
        transparent, 
        rgba(255, 255, 255, 0.15), 
        rgba(255, 255, 255, 0.05), 
        transparent);
    opacity: 0;
    transition: var(--transition-slow);
    pointer-events: none;
    animation: shimmerRotate 15s linear infinite;
}

.weather-box:hover::before,
.weather-box:focus-visible::before {
    opacity: 1;
}

@keyframes shimmerRotate {
    0% { transform: rotate(0deg); }
    100% { transform: rotate(360deg); }
}

/* 🌟 Enhanced 2025 Interactions */
.weather-box:active {
    transform: translateY(3px) scale(0.97);
    transition: var(--transition-fast);
}

@media (hover: hover) and (pointer: fine) {
    .weather-box:hover {
        transform: translateY(-16px);
        box-shadow: var(--shadow-mega);
        border-color: rgba(255, 255, 255, 0.3);
    }
}

/* 🎨 Enhanced Weather Backgrounds with Better Contrast */
.weather-bg-sunny {
    background: var(--gradient-sunny);
    color: var(--text-white);
    border-color: rgba(255, 255, 255, 0.2);
    position: relative;
}

.weather-bg-sunny::after {
    content: '';
    position: absolute;
    top: 24px;
    right: 24px;
    width: 12px;
    height: 12px;
    background: rgba(255, 255, 255, 0.9);
    border-radius: 50%;
    box-shadow: 
        0 0 0 6px rgba(255, 255, 255, 0.4),
        0 0 0 12px rgba(255, 255, 255, 0.2),
        0 0 0 18px rgba(255, 255, 255, 0.1);
    animation: sunPulse 4s ease-in-out infinite;
}

@keyframes sunPulse {
    0%, 100% { 
        opacity: 0.9; 
        transform: scale(1); 
    }
    50% { 
        opacity: 1; 
        transform: scale(1.3); 
    }
}

.weather-bg-cloudy {
    background: var(--gradient-cloudy);
    color: var(--text-white);
    border-color: rgba(255, 255, 255, 0.2);
}

.weather-bg-rainy {
    background: var(--gradient-rainy);
    color: var(--text-white);
    border-color: rgba(255, 255, 255, 0.2);
    position: relative;
}

.weather-bg-rainy::after {
    content: '';
    position: absolute;
    top: 0;
    left: 15%;
    right: 15%;
    height: 4px;
    background: linear-gradient(90deg, 
        transparent 0%, 
        rgba(255, 255, 255, 0.8) 50%, 
        transparent 100%);
    border-radius: 2px;
    animation: rainFlow 3s ease-in-out infinite;
}

@keyframes rainFlow {
    0% { transform: translateX(-80px); opacity: 0; }
    50% { opacity: 1; }
    100% { transform: translateX(80px); opacity: 0; }
}

.weather-bg-snowy {
    background: var(--gradient-snowy);
    color: var(--text-primary);
    border-color: rgba(255, 255, 255, 0.2);
}

.weather-bg-thunder {
    background: var(--gradient-thunder);
    color: var(--text-white);
    border-color: rgba(255, 255, 255, 0.2);
}

.weather-bg-default {
    background: var(--gradient-default);
    color: var(--text-white);
    border-color: rgba(255, 255, 255, 0.2);
}

/* 🎭 Enhanced Weather Icons with Better Accessibility */
.weather-icon {
    font-size: 4.5rem !important;
    margin: 0 0 1rem 0 !important;
    line-height: 1 !important;
    animation: iconFloat 6s ease-in-out infinite;
    filter: drop-shadow(0 8px 25px rgba(0, 0, 0, 0.2));
    transition: var(--transition-medium);
    position: relative;
    z-index: 2;
    /* Accessibility */
    user-select: none;
    -webkit-user-select: none;
}

@media (max-width: 768px) {
    .weather-icon {
        font-size: 3.75rem !important;
    }
}

.weather-box:hover .weather-icon,
.weather-box:focus-visible .weather-icon {
    transform: scale(1.25) rotateY(20deg);
    filter: drop-shadow(0 15px 35px rgba(0, 0, 0, 0.3));
}

@keyframes iconFloat {
    0%, 100% { transform: translateY(0px) rotate(0deg); }
    25% { transform: translateY(-12px) rotate(3deg); }
    75% { transform: translateY(-6px) rotate(-2deg); }
}

/* 📍 Enhanced City Name with Better Typography */
.weather-box p:nth-of-type(2) {
    font-size: 1.625rem !important;
    font-weight: 800 !important;
    margin: 0 0 1.25rem 0 !important;
    letter-spacing: -0.03em;
    line-height: 1.1;
    transition: var(--transition-medium);
    position: relative;
    z-index: 2;
    text-shadow: 0 2px 8px rgba(0, 0, 0, 0.1);
}

@media (max-width: 768px) {
    .weather-box p:nth-of-type(2) {
        font-size: 1.375rem !important;
    }
}

.weather-box:hover p:nth-of-type(2),
.weather-box:focus-visible p:nth-of-type(2) {
    transform: translateY(-6px);
}

/* 🌡️ Enhanced Temperature Display */
.weather-box p:nth-of-type(3) {
    font-size: 1.125rem !important;
    margin: 0.75rem 0 !important;
    font-weight: 600;
    position: relative;
    z-index: 2;
}

.weather-temp {
    font-size: 3rem !important;
    font-weight: 900 !important;
    display: inline-block;
    position: relative;
    transition: var(--transition-medium);
    letter-spacing: -0.06em;
    text-shadow: 0 4px 12px rgba(0, 0, 0, 0.15);
}

@media (max-width: 768px) {
    .weather-temp {
        font-size: 2.5rem !important;
    }
}

.weather-box:hover .weather-temp,
.weather-box:focus-visible .weather-temp {
    transform: scale(1.15);
}

/* Enhanced contrast for all weather backgrounds */
.weather-bg-sunny .weather-temp,
.weather-bg-cloudy .weather-temp,
.weather-bg-rainy .weather-temp,
.weather-bg-snowy .weather-temp,
.weather-bg-thunder .weather-temp,
.weather-bg-default .weather-temp {
    color: var(--text-white);
    text-shadow: 0 3px 12px rgba(0, 0, 0, 0.4);
}

/* 💨 Enhanced Wind & UV Info */
.weather-box p:nth-of-type(4),
.weather-box p:nth-of-type(5) {
    font-size: 1rem !important;
    margin: 0.5rem 0 !important;
    font-weight: 600;
    transition: var(--transition-medium);
    position: relative;
    z-index: 2;
    opacity: 0.95;
}

@media (max-width: 768px) {
    .weather-box p:nth-of-type(4),
    .weather-box p:nth-of-type(5) {
        font-size: 0.9rem !important;
    }
}

.weather-box:hover p:nth-of-type(4),
.weather-box:hover p:nth-of-type(5),
.weather-box:focus-visible p:nth-of-type(4),
.weather-box:focus-visible p:nth-of-type(5) {
    transform: translateY(-3px);
    opacity: 1;
}

.weather-box strong {
    font-weight: 800;
}

/* 💡 Enhanced Smart Advice with Better Accessibility */
.advice-full {
    background: rgba(255, 255, 255, 0.2);
    backdrop-filter: blur(15px);
    -webkit-backdrop-filter: blur(15px);
    border: 1px solid rgba(255, 255, 255, 0.3);
    border-radius: var(--radius-md);
    padding: 1.125rem;
    margin-top: 1rem;
    font-size: 0.95rem !important;
    line-height: 1.4 !important;
    display: flex !important;
    align-items: flex-start !important;
    gap: 0.875rem !important;
    position: relative;
    z-index: 2;
    transition: var(--transition-medium);
    font-weight: 600;
}

@media (max-width: 768px) {
    .advice-full {
        padding: 1rem;
        font-size: 0.9rem !important;
        gap: 0.75rem !important;
    }
}

.advice-full::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 4px;
    height: 100%;
    background: rgba(255, 255, 255, 0.8);
    border-radius: 2px;
}

.weather-box:hover .advice-full,
.weather-box:focus-visible .advice-full {
    transform: translateY(-3px);
    background: rgba(255, 255, 255, 0.25);
    border-color: rgba(255, 255, 255, 0.4);
}

.advice-icon {
    font-size: 1.2rem !important;
    flex-shrink: 0 !important;
    transition: var(--transition-medium);
    animation: iconPulse 5s infinite;
}

.weather-box:hover .advice-icon,
.weather-box:focus-visible .advice-icon {
    transform: scale(1.3);
}

@keyframes iconPulse {
    0%, 100% { opacity: 1; }
    50% { opacity: 0.8; }
}

.advice-text {
    font-weight: 600;
}

/* 🚨 Enhanced Alert Warnings with Better Accessibility */
.alert-warning {
    background: rgba(255, 59, 48, 0.2);
    backdrop-filter: blur(15px);
    -webkit-backdrop-filter: blur(15px);
    border: 2px solid rgba(255, 59, 48, 0.4);
    border-radius: var(--radius-md);
    padding: 1.125rem;
    margin-top: 1rem;
    font-weight: 700 !important;
    font-size: 0.95rem !important;
    line-height: 1.3;
    position: relative;
    z-index: 2;
    transition: var(--transition-medium);
    animation: alertGlow 5s ease-in-out infinite;
}

@media (max-width: 768px) {
    .alert-warning {
        padding: 1rem;
        font-size: 0.9rem !important;
    }
}

.alert-warning::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 5px;
    height: 100%;
    background: #ff3b30;
    border-radius: 2px;
}

.weather-box:hover .alert-warning,
.weather-box:focus-visible .alert-warning {
    transform: translateY(-3px);
    background: rgba(255, 59, 48, 0.25);
    border-color: rgba(255, 59, 48, 0.6);
}

@keyframes alertGlow {
    0%, 100% { 
        box-shadow: 0 4px 20px rgba(255, 59, 48, 0.25);
    }
    50% { 
        box-shadow: 0 8px 30px rgba(255, 59, 48, 0.4);
    }
}

/* 📦 Enhanced Summary Box with Better Accessibility and Instant Background Changes */
.summary-weather-box {
    background: var(--bg-card);
    backdrop-filter: blur(25px);
    -webkit-backdrop-filter: blur(25px);
    border: 2px solid rgba(255, 255, 255, 0.15);
    border-radius: var(--radius-xl);
    margin: 3rem auto;
    padding: 3rem;
    max-width: 1000px;
    box-shadow: var(--shadow-strong);
    position: relative;
    color: var(--text-primary);
    transition: transform var(--transition-medium), box-shadow var(--transition-medium), 
                background 0.8s ease-in-out !important;
    overflow: hidden;
}

@media (max-width: 768px) {
    .summary-weather-box {
        margin: 2rem 1rem;
        padding: 2.25rem 1.75rem;
    }
}

@media (hover: hover) and (pointer: fine) {
    .summary-weather-box:hover {
        transform: translateY(-12px);
        box-shadow: var(--shadow-mega);
        border-color: rgba(255, 255, 255, 0.25);
    }
}

.summary-weather-box::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    height: 8px;
    background: linear-gradient(90deg, 
        #ff8a00 0%, 
        #667eea 20%, 
        #1e3c72 40%, 
        #a8c0ff 60%,
        #ff8a00 80%,
        #667eea 100%);
    animation: gradientFlow 12s linear infinite;
}

@keyframes gradientFlow {
    0% { transform: translateX(-100%); }
    100% { transform: translateX(100%); }
}

/* Enhanced Time-based Backgrounds with Dynamic Colors - ANTRACIT TEXT */
.summary-bg-dawn {
    background: var(--gradient-dawn) !important;
    color: var(--text-primary) !important;
    border-color: rgba(255, 255, 255, 0.3) !important;
}

.summary-bg-morning {
    background: var(--gradient-morning) !important;
    color: var(--text-primary) !important;
    border-color: rgba(255, 255, 255, 0.3) !important;
}

.summary-bg-day {
    background: var(--gradient-day) !important;
    color: var(--text-primary) !important;
    border-color: rgba(255, 255, 255, 0.3) !important;
}

.summary-bg-afternoon {
    background: var(--gradient-afternoon) !important;
    color: var(--text-primary) !important;
    border-color: rgba(255, 255, 255, 0.3) !important;
}

.summary-bg-evening {
    background: var(--gradient-evening) !important;
    color: var(--text-primary) !important;
    border-color: rgba(255, 255, 255, 0.3) !important;
}

.summary-bg-night {
    background: var(--gradient-night) !important;
    color: var(--text-white) !important;
    border-color: rgba(255, 255, 255, 0.3) !important;
}

/* 📋 Enhanced Summary Content */
.summary-weather-box h2 {
    font-size: 2.25rem !important;
    font-weight: 700 !important;
    margin: 0 0 1.75rem 0 !important;
    text-align: center;
    line-height: 1.1;
    transition: var(--transition-medium);
    letter-spacing: -0.03em;
    text-shadow: 0 4px 12px rgba(0, 0, 0, 0.1);
}
/* Except night - white text */
.summary-bg-night h2 {
    color: var(--text-white) !important; /* Fehér éjszaka */
}
@media (max-width: 768px) {
    .summary-weather-box h2 {
        font-size: 1.75rem !important;
        margin: 0 0 1.5rem 0 !important;
    }
}

.summary-weather-box:hover h2 {
    transform: translateY(-6px);
}

.summary-weather-box ul {
    list-style: none !important;
    padding: 0 !important;
    margin: 2rem 0 !important;
    display: grid;
    gap: 1.25rem;
}

@media (max-width: 768px) {
    .summary-weather-box ul {
        margin: 1.5rem 0 !important;
        gap: 1rem;
    }
}

.summary-weather-box li {
    background: rgba(255, 255, 255, 0.15);
    backdrop-filter: blur(15px);
    -webkit-backdrop-filter: blur(15px);
    border: 1px solid rgba(255, 255, 255, 0.25);
    border-radius: var(--radius-md);
    padding: 1.5rem 1.75rem;
    margin: 0 !important;
    font-size: 1.125rem;
    font-weight: 600;
    transition: var(--transition-medium);
    position: relative;
    touch-action: manipulation;
    min-height: 48px;
    display: flex;
    align-items: center;
    cursor: default;
}

@media (max-width: 768px) {
    .summary-weather-box li {
        padding: 1.25rem 1.5rem;
        font-size: 1rem;
    }
}

.summary-weather-box li:focus-visible {
    outline: 3px solid var(--focus-ring);
    outline-offset: 2px;
    transform: translateX(20px) translateY(-4px);
    background: rgba(255, 255, 255, 0.25);
}

.summary-weather-box li:active {
    transform: translateX(8px) scale(0.98);
    transition: var(--transition-fast);
}

@media (hover: hover) and (pointer: fine) {
    .summary-weather-box li:hover {
        transform: translateX(20px) translateY(-4px);
        background: rgba(255, 255, 255, 0.25);
        border-color: rgba(255, 255, 255, 0.4);
        box-shadow: -8px 0 0 rgba(255, 255, 255, 0.6);
    }
}

.summary-weather-box li strong {
    font-weight: 800;
}

/* 🔗 Enhanced Ultra Modern Button with Better Accessibility */
.weather-more-link {
    text-align: center;
    margin-top: 3rem;
    padding: 0 2rem;
}

@media (max-width: 768px) {
    .weather-more-link {
        margin-top: 2rem;
        padding: 0 1rem;
    }
}

.weather-more-link a {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    gap: 0.875rem;
    background: linear-gradient(135deg, var(--primary-blue) 0%, var(--primary-blue-hover) 100%);
    color: var(--text-white) !important;
    padding: 1.5rem 3rem;
    border-radius: 50px;
    text-decoration: none !important;
    font-weight: 700;
    font-size: 1.125rem;
    box-shadow: 
        var(--shadow-strong),
        0 0 40px rgba(37, 99, 235, 0.3);
    transition: var(--transition-bounce);
    border: 2px solid rgba(255, 255, 255, 0.2);
    outline: none;
    min-height: 48px;
    min-width: 48px;
    -webkit-tap-highlight-color: transparent;
    touch-action: manipulation;
    position: relative;
    overflow: hidden;
    letter-spacing: -0.025em;
    cursor: pointer;
}

@media (max-width: 768px) {
    .weather-more-link a {
        padding: 1.25rem 2.5rem;
        font-size: 1rem;
        gap: 0.75rem;
    }
}

.weather-more-link a::before {
    content: '';
    position: absolute;
    top: 0;
    left: -100%;
    width: 100%;
    height: 100%;
    background: linear-gradient(90deg, 
        transparent 0%, 
        rgba(255, 255, 255, 0.4) 50%, 
        transparent 100%);
    transition: left 1s ease;
}

.weather-more-link a:hover::before {
    left: 100%;
}

.weather-more-link a:focus-visible {
    outline: 3px solid var(--focus-ring-offset);
    outline-offset: 4px;
    transform: translateY(-8px) scale(1.05);
    box-shadow: 
        var(--shadow-mega),
        0 0 60px rgba(37, 99, 235, 0.6);
}

.weather-more-link a:active {
    transform: scale(0.95);
    transition: var(--transition-fast);
}

@media (hover: hover) and (pointer: fine) {
    .weather-more-link a:hover {
        transform: translateY(-8px) scale(1.08);
        box-shadow: 
            var(--shadow-mega),
            0 0 60px rgba(37, 99, 235, 0.5);
        background: linear-gradient(135deg, var(--primary-blue-hover) 0%, var(--primary-blue-dark) 100%);
        color: var(--text-white) !important;
    }
}

/* 🔥 Performance & Enhanced Accessibility */
@media (prefers-reduced-motion: reduce) {
    *,
    *::before,
    *::after {
        animation-duration: 0.01ms !important;
        animation-iteration-count: 1 !important;
        transition-duration: 0.2s !important;
    }
    
    .weather-box:hover,
    .summary-weather-box:hover {
        transform: none !important;
    }
}

@media (prefers-contrast: high) {
    :root {
        --text-primary: #000000;
        --text-secondary: #000000;
        --bg-white: #ffffff;
        --bg-card: #ffffff;
    }
    
    .weather-box,
    .summary-weather-box {
        border-width: 3px;
        border-color: #000000;
        background: #ffffff;
        color: #000000;
    }
    
    .weather-bg-sunny,
    .weather-bg-cloudy,
    .weather-bg-rainy,
    .weather-bg-snowy,
    .weather-bg-thunder,
    .weather-bg-default {
        background: #ffffff !important;
        color: #000000 !important;
        border-color: #000000 !important;
    }
    
    .weather-temp {
        color: #000000 !important;
        text-shadow: none !important;
    }
    
    .weather-more-link a {
        background: #000000 !important;
        color: #ffffff !important;
        border-color: #000000 !important;
    }
}

/* 🌟 Advanced Glassmorphism Effects */
@supports (backdrop-filter: blur(20px)) {
    .weather-box,
    .summary-weather-box {
        background: rgba(255, 255, 255, 0.1);
        backdrop-filter: blur(20px);
        -webkit-backdrop-filter: blur(20px);
    }
}

/* 📱 Enhanced Mobile Touch Interactions */
@media (max-width: 768px) {
    .weather-box {
        transform-origin: center;
        will-change: transform;
    }
    
    .weather-box:active {
        transform: scale(0.96);
        transition: transform 0.1s ease;
    }
}

/* 🎨 Micro-interactions for Premium Feel */
.weather-box {
    will-change: transform, box-shadow;
}

.weather-icon {
    will-change: transform, filter;
}

.weather-temp {
    will-change: transform;
}

/* Enhanced Loading States */
.weather-box.loading {
    pointer-events: none;
    opacity: 0.7;
}

.weather-box.loading .weather-temp {
    background: linear-gradient(90deg, 
        transparent 25%, 
        rgba(255, 255, 255, 0.5) 50%, 
        transparent 75%);
    background-size: 200% 100%;
    animation: shimmer 2s infinite;
}

@keyframes shimmer {
    0% { background-position: -200% 0; }
    100% { background-position: 200% 0; }
}

/* Print Styles */
@media print {
    .weather-box,
    .summary-weather-box {
        background: white !important;
        color: black !important;
        border: 2px solid black !important;
        box-shadow: none !important;
    }
    
    .weather-more-link {
        display: none;
    }
}

/* Forecast Categories Shortcode */
.forecast-categories-grid {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 2rem;
    margin: 4rem auto;
    max-width: 1000px;
    padding: 0 2rem;
}

.forecast-card {
   
    background: linear-gradient(135deg, #667eea 0%, #764ba2 100%);
    color: white;
    padding: 2rem;
    border-radius: 16px;
    text-decoration: none;
    transition: all 0.3s ease;
    text-align: center;
    display: block;
    box-shadow: 0 8px 24px rgba(102, 126, 234, 0.25);
}
.forecast-card:hover {
     transform: translateY(-8px);
    box-shadow: 0 16px 32px rgba(102, 126, 234, 0.4);
}

.forecast-icon {
    margin-bottom: 1.5rem;
    opacity: 0.9;
}

.forecast-icon svg {
  
    stroke: white;
    transition: stroke 0.3s ease;
}
.forecast-icon:hover svg {
	stroke: #ffd700;
 }
.forecast-card h3 {
    font-size: 1.25rem;
    font-weight: 700;
    margin-bottom: 0.75rem;
    color: white !important;
}

.forecast-card p {
    opacity: 0.85;
    font-size: 0.95rem;
    line-height: 1.4;
    margin: 0;
    color: white !important;
}

@media (max-width: 768px) {
    .forecast-categories-grid {
        grid-template-columns: 1fr;
        gap: 1.5rem;
        margin: 2rem auto;
        padding: 0 1rem;
    }
}
/* Summary box címe - CSAK a transform tiltása + font-weight biztosítása */
.summary-weather-box h2 {
    /* Transform tiltása - ez volt a fő probléma */
    transform: none !important;
    
    /* Font-weight explicit beállítása ha kell */
    font-weight: 900 !important;
}

.summary-weather-box:hover h2 {
    /* Transform tiltása hover-ra is */
    transform: none !important;
    
    /* Az összes többi tulajdonság maradjon az eredeti */
}
.weather-bg-cloudy,
.weather-bg-rainy,
.weather-bg-snowy,
.weather-bg-thunder,
.weather-bg-default {
    color: var(--text-white) !important;
}


}
.weather-bg-cloudy,
.weather-bg-rainy,
.weather-bg-thunder,
.weather-bg-night,
.weather-bg-snowy {
    color: var(--text-white);
}
