/* ===== IDŐJÁRÁS OLDAL STÍLUSOK ===== */

/* Időjárás szekció */
.weather-section {
    padding: 4rem 0;
    background: var(--light-background);
}

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

/* ===== IDŐJÁRÁS KÁRTYÁK ===== */

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

.weather-card {
    background: var(--card-background);
    border: 1px solid var(--border-color);
    border-radius: var(--border-radius);
    padding: 2rem;
    box-shadow: var(--shadow);
    transition: var(--transition);
    position: relative;
    overflow: hidden;
}

.weather-card::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    height: 4px;
    background: linear-gradient(90deg, var(--primary-color), var(--primary-light));
    border-radius: var(--border-radius) var(--border-radius) 0 0;
}

.weather-card:hover {
    transform: translateY(-4px);
    box-shadow: 0 8px 25px -8px rgba(0, 0, 0, 0.2);
    border-color: var(--primary-color);
}

/* ===== AKTUÁLIS IDŐJÁRÁS KÁRTYA ===== */

.current-weather {
    grid-column: 1 / -1;
    background: linear-gradient(135deg, rgba(244, 208, 63, 0.05), rgba(218, 165, 32, 0.05));
    border: 2px solid var(--primary-color);
}

.current-weather-header {
    display: flex;
    align-items: center;
    justify-content: space-between;
    margin-bottom: 2rem;
}

.current-weather-title {
    font-size: 1.5rem;
    font-weight: 700;
    color: var(--text-color);
    display: flex;
    align-items: center;
    gap: 0.75rem;
    font-family: 'Nunito', sans-serif;
}

.current-weather-title i {
    font-size: 2rem;
    color: var(--primary-color);
}

.current-weather-location {
    display: flex;
    align-items: center;
    gap: 0.5rem;
    color: var(--light-text);
    font-size: 0.9rem;
}

.current-weather-main {
    display: grid;
    grid-template-columns: 1fr auto;
    gap: 2rem;
    align-items: center;
}

.current-weather-info h2 {
    font-size: 4rem;
    font-weight: 800;
    color: var(--text-color);
    margin: 0;
    line-height: 1;
    font-family: 'Nunito', sans-serif;
}

.current-weather-description {
    font-size: 1.25rem;
    color: var(--light-text);
    margin: 0.5rem 0 1rem 0;
    font-family: 'Nunito', sans-serif;
}

.current-weather-details {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 1rem;
    margin-top: 1.5rem;
}

.weather-detail {
    display: flex;
    align-items: center;
    gap: 0.75rem;
    padding: 1rem;
    background: var(--light-background);
    border-radius: var(--border-radius);
    border: 1px solid var(--border-color);
    transition: var(--transition);
}

.weather-detail:hover {
    background: var(--hover-background);
    border-color: var(--primary-color);
}

.weather-detail i {
    font-size: 1.5rem;
    color: var(--primary-color);
    width: 24px;
    text-align: center;
}

.weather-detail-text {
    display: flex;
    flex-direction: column;
}

.weather-detail-label {
    font-size: 0.8rem;
    color: var(--light-text);
    text-transform: uppercase;
    letter-spacing: 0.5px;
    font-family: 'Nunito', sans-serif;
}

.weather-detail-value {
    font-size: 1.1rem;
    font-weight: 600;
    color: var(--text-color);
    font-family: 'Nunito', sans-serif;
}

.current-weather-icon {
    text-align: center;
}

.current-weather-icon i {
    font-size: 8rem;
    color: var(--primary-color);
    filter: drop-shadow(0 4px 8px rgba(0, 0, 0, 0.2));
}

/* ===== ÓRÁNKÉNTI ELŐREJELZÉS ===== */

.hourly-forecast {
    grid-column: 1 / -1;
}

.hourly-forecast-header {
    display: flex;
    align-items: center;
    justify-content: space-between;
    margin-bottom: 1.5rem;
}

.hourly-forecast-title {
    font-size: 1.5rem;
    font-weight: 700;
    color: var(--text-color);
    display: flex;
    align-items: center;
    gap: 0.75rem;
    font-family: 'Nunito', sans-serif;
}

.hourly-forecast-title i {
    color: var(--primary-color);
}

.hourly-forecast-scroll {
    display: flex;
    gap: 1rem;
    overflow-x: auto;
    padding: 1rem 0;
    scrollbar-width: none;
    -ms-overflow-style: none;
}

.hourly-forecast-scroll::-webkit-scrollbar {
    display: none;
}

.hourly-item {
    min-width: 120px;
    text-align: center;
    padding: 1.5rem 1rem;
    background: var(--light-background);
    border-radius: var(--border-radius);
    border: 1px solid var(--border-color);
    transition: var(--transition);
}

.hourly-item:hover {
    background: var(--hover-background);
    transform: translateY(-4px);
    border-color: var(--primary-color);
}

.hourly-time {
    font-size: 0.9rem;
    color: var(--light-text);
    margin-bottom: 0.5rem;
    font-family: 'Nunito', sans-serif;
}

.hourly-icon {
    font-size: 2rem;
    color: var(--primary-color);
    margin: 0.5rem 0;
}

.hourly-temp {
    font-size: 1.25rem;
    font-weight: 700;
    color: var(--text-color);
    font-family: 'Nunito', sans-serif;
}

.hourly-description {
    font-size: 0.8rem;
    color: var(--light-text);
    margin-top: 0.5rem;
    font-family: 'Nunito', sans-serif;
}

/* ===== 7 NAPOS ELŐREJELZÉS ===== */

.daily-forecast {
    grid-column: 1 / -1;
}

.daily-forecast-header {
    display: flex;
    align-items: center;
    justify-content: space-between;
    margin-bottom: 2rem;
}

.daily-forecast-nav {
    display: flex;
    align-items: center;
    gap: 1rem;
}

.daily-nav-btn {
    width: 40px;
    height: 40px;
    border-radius: 50%;
    border: 2px solid var(--primary-color);
    background: var(--card-background);
    color: var(--primary-color);
    display: flex;
    align-items: center;
    justify-content: center;
    cursor: pointer;
    transition: all 0.3s ease;
    font-size: 1.2rem;
}

.daily-nav-btn:hover {
    background: var(--primary-color);
    color: white;
    transform: scale(1.1);
}

.daily-nav-btn:disabled {
    opacity: 0.5;
    cursor: not-allowed;
    border-color: var(--border-color);
    color: var(--light-text);
}

.daily-nav-btn:disabled:hover {
    transform: none;
    background: var(--card-background);
}

.daily-forecast-title {
    font-size: 1.5rem;
    font-weight: 700;
    color: var(--text-color);
    display: flex;
    align-items: center;
    gap: 0.75rem;
    font-family: 'Nunito', sans-serif;
}

.daily-forecast-title i {
    color: var(--primary-color);
}

.daily-grid {
    display: flex;
    gap: 1.5rem;
    overflow-x: auto;
    scroll-behavior: smooth;
    padding: 1rem 0;
    scrollbar-width: none; /* Firefox */
    -ms-overflow-style: none; /* IE/Edge */
}

.daily-grid::-webkit-scrollbar {
    display: none; /* Chrome/Safari/Opera */
}

.daily-slider-container {
    position: relative;
    margin: 0 -1rem;
    padding: 0 1rem;
}

.daily-slider-wrapper {
    position: relative;
    overflow: hidden;
    border-radius: 20px;
}

.daily-slider-track {
    display: flex;
    transition: transform 0.5s cubic-bezier(0.4, 0, 0.2, 1);
}

.daily-slider-indicator {
    display: flex;
    justify-content: center;
    gap: 0.5rem;
    margin-top: 1.5rem;
}

.daily-slider-dot {
    width: 8px;
    height: 8px;
    border-radius: 50%;
    background: var(--border-color);
    cursor: pointer;
    transition: all 0.3s ease;
}

.daily-slider-dot.active {
    background: var(--primary-color);
    transform: scale(1.2);
}

.daily-item {
    min-width: 200px;
    flex-shrink: 0;
    background: linear-gradient(135deg, var(--card-background) 0%, rgba(255, 255, 255, 0.05) 100%);
    border-radius: 20px;
    border: 2px solid var(--border-color);
    padding: 2rem 1.5rem;
    text-align: center;
    transition: all 0.4s cubic-bezier(0.4, 0, 0.2, 1);
    position: relative;
    overflow: hidden;
    cursor: pointer;
}

.daily-item {
    background: linear-gradient(135deg, var(--card-background) 0%, rgba(255, 255, 255, 0.05) 100%);
    border-radius: 20px;
    border: 2px solid var(--border-color);
    padding: 2rem 1.5rem;
    text-align: center;
    transition: all 0.4s cubic-bezier(0.4, 0, 0.2, 1);
    position: relative;
    overflow: hidden;
    cursor: pointer;
}

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

.daily-item:hover::before {
    transform: scaleX(1);
}

.daily-item:hover {
    background: linear-gradient(135deg, var(--hover-background) 0%, rgba(255, 255, 255, 0.1) 100%);
    transform: translateY(-8px) scale(1.02);
    border-color: var(--primary-color);
    box-shadow: 0 20px 40px rgba(0, 0, 0, 0.15);
}

.daily-item.active {
    background: linear-gradient(135deg, rgba(244, 208, 63, 0.1) 0%, rgba(218, 165, 32, 0.05) 100%);
    border-color: var(--primary-color);
    box-shadow: 0 15px 30px rgba(244, 208, 63, 0.2);
}

.daily-day {
    font-size: 1.1rem;
    font-weight: 700;
    color: var(--text-color);
    margin-bottom: 1.5rem;
    font-family: 'Nunito', sans-serif;
    text-transform: uppercase;
    letter-spacing: 0.5px;
}

.daily-icon {
    font-size: 3.5rem;
    color: var(--primary-color);
    margin: 1.5rem 0;
    transition: all 0.3s ease;
    filter: drop-shadow(0 4px 8px rgba(244, 208, 63, 0.3));
}

.daily-item:hover .daily-icon {
    transform: scale(1.1) rotate(5deg);
    filter: drop-shadow(0 6px 12px rgba(244, 208, 63, 0.4));
}

.daily-temp-range {
    display: flex;
    justify-content: center;
    align-items: center;
    gap: 1.5rem;
    margin: 1.5rem 0;
    position: relative;
}

.daily-temp-range::before {
    content: '';
    position: absolute;
    top: 50%;
    left: 50%;
    width: 1px;
    height: 20px;
    background: var(--border-color);
    transform: translate(-50%, -50%);
}

.daily-temp-max {
    font-size: 1.5rem;
    font-weight: 800;
    color: var(--text-color);
    font-family: 'Nunito', sans-serif;
    position: relative;
}

.daily-temp-max::after {
    content: '°C';
    font-size: 0.8rem;
    font-weight: 600;
    color: var(--light-text);
    position: absolute;
    top: -5px;
    right: -15px;
}

.daily-temp-min {
    font-size: 1.1rem;
    font-weight: 600;
    color: var(--light-text);
    font-family: 'Nunito', sans-serif;
    position: relative;
}

.daily-temp-min::after {
    content: '°C';
    font-size: 0.7rem;
    font-weight: 500;
    color: var(--light-text);
    position: absolute;
    top: -3px;
    right: -12px;
}

.daily-description {
    font-size: 0.95rem;
    color: var(--light-text);
    margin-top: 1rem;
    font-family: 'Nunito', sans-serif;
    font-weight: 500;
    text-transform: capitalize;
}

/* Extra design elemek */
.daily-item .weather-badge {
    position: absolute;
    top: 1rem;
    right: 1rem;
    background: rgba(244, 208, 63, 0.1);
    color: var(--primary-color);
    padding: 0.25rem 0.5rem;
    border-radius: 12px;
    font-size: 0.7rem;
    font-weight: 600;
    text-transform: uppercase;
    letter-spacing: 0.5px;
    opacity: 0;
    transform: translateY(-10px);
    transition: all 0.3s ease;
}

.daily-item:hover .weather-badge {
    opacity: 1;
    transform: translateY(0);
}

/* Animációk */
.daily-item {
    animation: fadeInUp 0.6s ease-out;
}

.daily-item:nth-child(1) { animation-delay: 0.1s; }
.daily-item:nth-child(2) { animation-delay: 0.2s; }
.daily-item:nth-child(3) { animation-delay: 0.3s; }
.daily-item:nth-child(4) { animation-delay: 0.4s; }
.daily-item:nth-child(5) { animation-delay: 0.5s; }
.daily-item:nth-child(6) { animation-delay: 0.6s; }
.daily-item:nth-child(7) { animation-delay: 0.7s; }

/* Precipitation stílusok */
.daily-precipitation {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 0.25rem;
    margin-top: 0.5rem;
    font-size: 0.8rem;
    color: var(--light-text);
    font-family: 'Nunito', sans-serif;
    opacity: 0.8;
    transition: opacity 0.3s ease;
}

.daily-item:hover .daily-precipitation {
    opacity: 1;
}

/* Extra hover effektek */
.daily-item:hover .daily-day {
    color: var(--primary-color);
}

.daily-item:hover .daily-description {
    color: var(--text-color);
}

/* Aktív nap stílusok */
.daily-item.active {
    background: linear-gradient(135deg, rgba(244, 208, 63, 0.15) 0%, rgba(218, 165, 32, 0.1) 100%);
    border-color: var(--primary-color);
    box-shadow: 0 15px 30px rgba(244, 208, 63, 0.25);
    transform: translateY(-4px) scale(1.01);
}

.daily-item.active .daily-day {
    color: var(--primary-color);
    font-weight: 800;
}

.daily-item.active .daily-icon {
    transform: scale(1.05);
    filter: drop-shadow(0 8px 16px rgba(244, 208, 63, 0.5));
}

.daily-item.active .weather-badge {
    opacity: 1;
    transform: translateY(0);
    background: rgba(244, 208, 63, 0.2);
}

/* ===== RÉSZLETES ADATOK ===== */

.weather-details-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
    gap: 1.5rem;
}

.detail-card {
    background: var(--light-background);
    border-radius: var(--border-radius);
    border: 1px solid var(--border-color);
    padding: 1.5rem;
    text-align: center;
    transition: var(--transition);
}

.detail-card:hover {
    background: var(--hover-background);
    transform: translateY(-4px);
    border-color: var(--primary-color);
}

.detail-card-icon {
    font-size: 2.5rem;
    color: var(--primary-color);
    margin-bottom: 1rem;
}

.detail-card-title {
    font-size: 1rem;
    font-weight: 600;
    color: var(--text-color);
    margin-bottom: 0.5rem;
    font-family: 'Nunito', sans-serif;
}

.detail-card-value {
    font-size: 1.5rem;
    font-weight: 700;
    color: var(--text-color);
    margin-bottom: 0.5rem;
    font-family: 'Nunito', sans-serif;
}

.detail-card-description {
    font-size: 0.9rem;
    color: var(--light-text);
    font-family: 'Nunito', sans-serif;
}

/* ===== LÉGMINŐSÉG KÁRTYA ===== */

.air-quality-card {
    background: linear-gradient(135deg, rgba(21, 67, 96, 0.1), rgba(30, 58, 138, 0.1));
    border: 2px solid var(--secondary-color);
}

.air-quality-bar {
    width: 100%;
    height: 8px;
    background: var(--border-color);
    border-radius: 4px;
    margin: 1rem 0;
    overflow: hidden;
}

.air-quality-progress {
    height: 100%;
    border-radius: 4px;
    transition: width 0.3s ease;
}

/* ===== POLLEN INFORMÁCIÓK KÁRTYA ===== */

.pollen-info-card {
    background: linear-gradient(135deg, rgba(101, 150, 105, 0.1), rgba(16, 185, 129, 0.1));
    border: 2px solid var(--success-color);
}

.pollen-risk-indicator {
    margin: 1rem 0;
    text-align: center;
}

.pollen-risk-level {
    display: inline-block;
    padding: 0.5rem 1rem;
    border-radius: 20px;
    color: white;
    font-weight: 600;
    font-size: 0.9rem;
    text-transform: uppercase;
    letter-spacing: 0.5px;
    font-family: 'Nunito', sans-serif;
}

/* ===== UV INDEX KÁRTYA ===== */

.uv-index-card {
    background: linear-gradient(135deg, rgba(244, 208, 63, 0.1), rgba(218, 165, 32, 0.1));
    border: 2px solid var(--primary-color);
}

.uv-index-bar {
    width: 100%;
    height: 8px;
    background: var(--border-color);
    border-radius: 4px;
    margin: 1rem 0;
    overflow: hidden;
}

.uv-index-progress {
    height: 100%;
    background: linear-gradient(90deg, var(--success-color), var(--warning-color), var(--error-color));
    border-radius: 4px;
    transition: width 0.3s ease;
}

/* ===== SZÉL IRÁNY ===== */

.wind-direction-card {
    background: linear-gradient(135deg, rgba(21, 67, 96, 0.1), rgba(30, 58, 138, 0.1));
    border: 2px solid var(--secondary-color);
}

.wind-arrow {
    width: 80px;
    height: 80px;
    margin: 1rem auto;
    position: relative;
}

.wind-arrow::before {
    content: '';
    position: absolute;
    top: 50%;
    left: 50%;
    width: 4px;
    height: 60px;
    background: var(--secondary-color);
    transform: translate(-50%, -50%) rotate(0deg);
    transform-origin: center bottom;
    transition: transform 0.3s ease;
}

.wind-arrow::after {
    content: '';
    position: absolute;
    top: 20%;
    left: 50%;
    width: 0;
    height: 0;
    border-left: 8px solid transparent;
    border-right: 8px solid transparent;
    border-bottom: 12px solid var(--secondary-color);
    transform: translate(-50%, -50%) rotate(0deg);
    transform-origin: center bottom;
    transition: transform 0.3s ease;
}

/* ===== NAPKELTE/NAPNYUGTA ===== */

.sun-times-card {
    background: linear-gradient(135deg, rgba(244, 208, 63, 0.1), rgba(218, 165, 32, 0.1));
    border: 2px solid var(--primary-color);
}

.sun-times {
    display: flex;
    justify-content: space-around;
    margin: 1.5rem 0;
}

.sun-time {
    text-align: center;
}

.sun-time-icon {
    font-size: 2rem;
    color: var(--primary-color);
    margin-bottom: 0.5rem;
}

.sun-time-label {
    font-size: 0.8rem;
    color: var(--light-text);
    text-transform: uppercase;
    letter-spacing: 0.5px;
    font-family: 'Nunito', sans-serif;
}

.sun-time-value {
    font-size: 1.1rem;
    font-weight: 600;
    color: var(--text-color);
    font-family: 'Nunito', sans-serif;
}

/* ===== IDŐJÁRÁS ÉRTESÍTÉSEK ===== */

.weather-alerts {
    grid-column: 1 / -1;
    background: linear-gradient(135deg, rgba(220, 38, 38, 0.1), rgba(239, 68, 68, 0.1));
    border: 2px solid var(--error-color);
}

.weather-alerts-header {
    display: flex;
    align-items: center;
    gap: 0.75rem;
    margin-bottom: 1.5rem;
}

.weather-alerts-title {
    font-size: 1.5rem;
    font-weight: 700;
    color: var(--text-color);
    font-family: 'Nunito', sans-serif;
}

.weather-alerts-title i {
    color: var(--error-color);
}

.alert-item {
    display: flex;
    align-items: center;
    gap: 1rem;
    padding: 1rem;
    background: rgba(220, 38, 38, 0.1);
    border-radius: var(--border-radius);
    border: 1px solid rgba(220, 38, 38, 0.2);
    margin-bottom: 1rem;
    transition: var(--transition);
}

.alert-item:hover {
    background: rgba(220, 38, 38, 0.15);
    border-color: var(--error-color);
}

.alert-item:last-child {
    margin-bottom: 0;
}

.alert-icon {
    font-size: 1.5rem;
    color: var(--error-color);
}

.alert-content h4 {
    font-size: 1rem;
    font-weight: 600;
    color: var(--text-color);
    margin: 0 0 0.25rem 0;
    font-family: 'Nunito', sans-serif;
}

.alert-content p {
    font-size: 0.9rem;
    color: var(--light-text);
    margin: 0;
    font-family: 'Nunito', sans-serif;
}

/* ===== RUHAZATI TANÁCSOK ===== */

.clothing-advice-card {
    background: linear-gradient(135deg, rgba(101, 150, 105, 0.1), rgba(16, 185, 129, 0.1));
    border: 2px solid var(--success-color);
}

.clothing-items {
    display: flex;
    flex-wrap: wrap;
    gap: 0.75rem;
    margin: 1.5rem 0;
}

.clothing-item {
    display: flex;
    align-items: center;
    gap: 0.5rem;
    padding: 0.75rem 1rem;
    background: rgba(101, 150, 105, 0.1);
    border-radius: 20px;
    border: 1px solid rgba(101, 150, 105, 0.2);
    font-size: 0.9rem;
    color: var(--text-color);
    transition: var(--transition);
    font-family: 'Nunito', sans-serif;
}

.clothing-item:hover {
    background: rgba(101, 150, 105, 0.2);
    border-color: var(--success-color);
}

.clothing-item i {
    color: var(--success-color);
}

/* ===== RESPONZÍV DESIGN ===== */

@media (max-width: 768px) {
    .container {
        padding: 0 1rem;
    }
    
    .weather-section {
        padding: 2rem 0;
    }
    
    .weather-gallery-section {
        padding: 3rem 0;
    }
    
    .weather-gallery-section .section-header h2 {
        font-size: 2rem;
    }
    
    .weather-gallery-section .section-header p {
        font-size: 1rem;
    }
    
    .weather-filters {
        gap: 0.75rem;
    }
    
    .filter-btn {
        padding: 0.6rem 1.2rem;
        font-size: 0.85rem;
    }
    
    .weather-grid {
        grid-template-columns: 1fr;
        gap: 1.5rem;
        margin: 1.5rem 0;
    }
    
    .current-weather-main {
        grid-template-columns: 1fr;
        text-align: center;
        gap: 1.5rem;
    }
    
    .current-weather-info h2 {
        font-size: 3rem;
    }
    
    .current-weather-details {
        grid-template-columns: 1fr;
    }
    
    .hourly-forecast-scroll {
        gap: 0.75rem;
    }
    
    .hourly-item {
        min-width: 100px;
        padding: 1rem 0.75rem;
    }
    
    .daily-grid {
        gap: 1rem;
    }
    
    .daily-item {
        min-width: 160px;
        padding: 1.5rem 1rem;
    }
    
    .daily-forecast-nav {
        gap: 0.5rem;
    }
    
    .daily-nav-btn {
        width: 35px;
        height: 35px;
        font-size: 1rem;
    }
    
    .daily-item {
        min-width: 140px;
        padding: 1.5rem 1rem;
    }
    
    .daily-icon {
        font-size: 2.5rem;
        margin: 1rem 0;
    }
    
    .daily-temp-range {
        gap: 0.75rem;
        margin: 1rem 0;
    }
    
    .daily-temp-max {
        font-size: 1.25rem;
    }
    
    .daily-temp-min {
        font-size: 1rem;
    }
    
    .daily-forecast-title {
        font-size: 1.25rem;
    }
    
    .daily-slider-indicator {
        margin-top: 1rem;
    }
    
    .weather-details-grid {
        grid-template-columns: 1fr;
    }
    
    .air-quality-card,
    .pollen-info-card {
        margin-bottom: 1rem;
    }
    
    .pollen-risk-level {
        font-size: 0.8rem;
        padding: 0.4rem 0.8rem;
    }
    
    .sun-times {
        flex-direction: column;
        gap: 1rem;
    }
    
    .clothing-items {
        justify-content: center;
    }
}

@media (max-width: 480px) {
    .weather-card {
        padding: 1.5rem;
    }
    
    .current-weather-info h2 {
        font-size: 2.5rem;
    }
    
    .hourly-item {
        min-width: 80px;
        padding: 0.75rem 0.5rem;
    }
    
    .daily-item {
        padding: 1rem;
    }
}

/* ===== IDŐJÁRÁS GALÉRIA SZEKCIÓ ===== */

.weather-gallery-section {
    padding: 5rem 0;
    background: linear-gradient(135deg, var(--background-color) 0%, var(--light-background) 100%);
    position: relative;
}

.weather-gallery-section .container {
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 2rem;
}

.weather-gallery-section .section-header {
    text-align: center;
    margin-bottom: 3rem;
}

.weather-gallery-section .section-header h2 {
    font-size: 2.5rem;
    font-weight: 800;
    color: var(--text-color);
    margin-bottom: 1rem;
    font-family: 'Nunito', sans-serif;
}

.weather-gallery-section .section-header p {
    font-size: 1.1rem;
    color: var(--light-text);
    max-width: 600px;
    margin: 0 auto;
    line-height: 1.6;
    font-family: 'Nunito', sans-serif;
}

.gallery-actions {
    text-align: center;
    margin-top: 2rem;
}

.gallery-actions .btn {
    display: inline-flex;
    align-items: center;
    gap: 0.5rem;
    padding: 0.75rem 1.5rem;
    font-size: 1rem;
    font-weight: 600;
    text-decoration: none;
    border-radius: var(--border-radius);
    transition: var(--transition);
    font-family: 'Nunito', sans-serif;
}

.gallery-actions .btn:hover {
    transform: translateY(-2px);
    box-shadow: 0 4px 12px rgba(0, 0, 0, 0.15);
}

/* Időjárás szűrők */
.weather-filters {
    display: flex;
    justify-content: center;
    gap: 1rem;
    margin-top: 2rem;
    flex-wrap: wrap;
}

.filter-btn {
    display: inline-flex;
    align-items: center;
    gap: 0.5rem;
    padding: 0.75rem 1.5rem;
    background: var(--card-background);
    border: 2px solid var(--border-color);
    border-radius: 25px;
    color: var(--text-color);
    font-size: 0.9rem;
    font-weight: 600;
    cursor: pointer;
    transition: var(--transition);
    font-family: 'Nunito', sans-serif;
}

.filter-btn:hover {
    background: var(--primary-color);
    border-color: var(--primary-color);
    color: white;
    transform: translateY(-2px);
}

.filter-btn.active {
    background: var(--primary-color);
    border-color: var(--primary-color);
    color: white;
    box-shadow: 0 4px 12px rgba(244, 208, 63, 0.3);
}

.filter-btn i {
    font-size: 1rem;
}

/* Slide stílusok */
.slide {
    display: flex;
    flex-direction: column;
    transition: opacity 0.3s ease;
}

.slide[style*="display: none"] {
    display: none !important;
}

.slide[style*="opacity: 0"] {
    opacity: 0 !important;
}

/* ===== ANIMÁCIÓK ===== */

@keyframes fadeInUp {
    from {
        opacity: 0;
        transform: translateY(30px);
    }
    to {
        opacity: 1;
        transform: translateY(0);
    }
}

.weather-card {
    animation: fadeInUp 0.6s ease-out;
}

.weather-card:nth-child(1) { animation-delay: 0.1s; }
.weather-card:nth-child(2) { animation-delay: 0.2s; }
.weather-card:nth-child(3) { animation-delay: 0.3s; }
.weather-card:nth-child(4) { animation-delay: 0.4s; }
.weather-card:nth-child(5) { animation-delay: 0.5s; }
.weather-card:nth-child(6) { animation-delay: 0.6s; }

/* Galéria animációk */
.weather-gallery-section {
    animation: fadeInUp 0.8s ease-out;
}

.weather-filters {
    animation: fadeInUp 1s ease-out;
}

.filter-btn {
    animation: fadeInUp 1.2s ease-out;
}

.filter-btn:nth-child(1) { animation-delay: 1.2s; }
.filter-btn:nth-child(2) { animation-delay: 1.3s; }
.filter-btn:nth-child(3) { animation-delay: 1.4s; }
.filter-btn:nth-child(4) { animation-delay: 1.5s; }
.filter-btn:nth-child(5) { animation-delay: 1.6s; }
.filter-btn:nth-child(6) { animation-delay: 1.7s; }

/* Légminőség és pollen kártya animációk */
.air-quality-card,
.pollen-info-card {
    animation: fadeInUp 0.6s ease-out;
}

.air-quality-card { animation-delay: 0.7s; }
.pollen-info-card { animation-delay: 0.8s; }

.air-quality-progress {
    animation: slideInLeft 1s ease-out 1s both;
}

.pollen-risk-level {
    animation: pulse 2s ease-in-out infinite;
}

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

@keyframes slideInLeft {
    from {
        width: 0;
        opacity: 0;
    }
    to {
        width: var(--target-width);
        opacity: 1;
    }
}

.current-weather-icon i {
    animation: pulse 3s ease-in-out infinite;
}

@keyframes rotate {
    from {
        transform: rotate(0deg);
    }
    to {
        transform: rotate(360deg);
    }
}

.wind-arrow.rotating::before,
.wind-arrow.rotating::after {
    animation: rotate 2s linear infinite;
}

/* ===== SÖTÉT MÓD OPTIMALIZÁCIÓK ===== */

/* UV index optimalizációk */
[data-theme="dark"] .uv-index-progress {
    box-shadow: 0 0 8px rgba(255, 255, 255, 0.3);
}

[data-theme="dark"] .uv-index-bar {
    background: rgba(255, 255, 255, 0.1);
}

/* Szél irány optimalizációk */
[data-theme="dark"] .wind-arrow::before {
    background: #3B82F6; /* Világosabb kék sötét módban */
    box-shadow: 0 0 12px rgba(59, 130, 246, 0.8);
}

[data-theme="dark"] .wind-arrow::after {
    border-bottom-color: #3B82F6; /* Világosabb kék sötét módban */
    filter: drop-shadow(0 0 6px rgba(59, 130, 246, 0.9));
}

[data-theme="dark"] .wind-direction-card {
    background: linear-gradient(135deg, rgba(59, 130, 246, 0.15), rgba(30, 58, 138, 0.15));
    border: 2px solid #3B82F6;
}

/* Légminőség optimalizációk */
[data-theme="dark"] .air-quality-card {
    background: linear-gradient(135deg, rgba(59, 130, 246, 0.15), rgba(30, 58, 138, 0.15));
    border: 2px solid #3B82F6;
}

[data-theme="dark"] .air-quality-bar {
    background: rgba(255, 255, 255, 0.1);
}

[data-theme="dark"] .air-quality-progress {
    box-shadow: 0 0 8px rgba(255, 255, 255, 0.3);
}

/* Pollen optimalizációk */
[data-theme="dark"] .pollen-info-card {
    background: linear-gradient(135deg, rgba(16, 185, 129, 0.15), rgba(101, 150, 105, 0.15));
    border: 2px solid #10B981;
}

[data-theme="dark"] .pollen-risk-level {
    box-shadow: 0 0 8px rgba(255, 255, 255, 0.3);
}

/* Sötét mód ruházati tanácsok optimalizációk */
[data-theme="dark"] .clothing-advice-card {
    background: linear-gradient(135deg, rgba(16, 185, 129, 0.15), rgba(101, 150, 105, 0.15));
    border: 2px solid #10B981;
}

[data-theme="dark"] .clothing-item {
    background: rgba(16, 185, 129, 0.1);
    border: 1px solid rgba(16, 185, 129, 0.3);
    color: var(--text-color);
}

[data-theme="dark"] .clothing-item:hover {
    background: rgba(16, 185, 129, 0.2);
    border-color: #10B981;
}

[data-theme="dark"] .clothing-item i {
    color: #10B981;
}

/* Sötét mód időjárás értesítések optimalizációk */
[data-theme="dark"] .weather-alerts {
    background: linear-gradient(135deg, rgba(239, 68, 68, 0.15), rgba(220, 38, 38, 0.15));
    border: 2px solid #EF4444;
}

[data-theme="dark"] .weather-alerts-title i {
    color: #EF4444;
}

[data-theme="dark"] .alert-item {
    background: rgba(239, 68, 68, 0.1);
    border: 1px solid rgba(239, 68, 68, 0.3);
}

[data-theme="dark"] .alert-item:hover {
    background: rgba(239, 68, 68, 0.2);
    border-color: #EF4444;
}

[data-theme="dark"] .alert-icon {
    color: #EF4444;
}
