/* ========================================
   HÍR FOOTER STÍLUSOK
   ======================================== */

.article-footer {
    margin-top: 3rem;
    padding: 2rem 0;
    border-top: 2px solid var(--border-color);
    background: var(--light-background);
}

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

.article-source {
    display: flex;
    align-items: center;
    gap: 0.5rem;
    font-size: 0.95rem;
    color: var(--light-text);
    font-weight: 500;
}

.article-source i {
    color: var(--primary-color);
    font-size: 1.1rem;
}

.article-source .source-name {
    font-weight: 600;
    color: var(--text-color);
}

/* ========================================
   HELYI JÁRATÚ AUTÓBUSZ MENETREND STÍLUSOK
   ======================================== */

/* Menetrend szekció */
.schedule-section {
    padding: 4rem 2rem;
    background: var(--light-background);
}

.schedule-section .container {
    max-width: 1200px;
    margin: 0 auto;
}

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

.section-title {
    font-size: 2.5rem;
    font-weight: 700;
    color: var(--text-color);
    margin-bottom: 1rem;
    font-family: 'Nunito', sans-serif;
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 1rem;
}

.section-title i {
    color: var(--primary-color);
    font-size: 2.2rem;
}

.section-subtitle {
    font-size: 1.2rem;
    color: var(--light-text);
    font-family: 'Nunito', sans-serif;
}

/* Szűrők */
.schedule-filters {
    display: flex;
    gap: 2rem;
    margin-bottom: 3rem;
    flex-wrap: wrap;
    justify-content: center;
}

.filter-group {
    display: flex;
    flex-direction: column;
    gap: 0.5rem;
    min-width: 200px;
}

.filter-label {
    font-size: 1rem;
    font-weight: 600;
    color: var(--text-color);
    font-family: 'Nunito', sans-serif;
}

.filter-select {
    padding: 0.75rem 1rem;
    border: 2px solid var(--border-color);
    border-radius: 8px;
    background: var(--card-background);
    color: var(--text-color);
    font-size: 1rem;
    font-family: 'Nunito', sans-serif;
    transition: var(--transition);
    cursor: pointer;
}

.filter-select:focus {
    outline: none;
    border-color: var(--primary-color);
    box-shadow: 0 0 0 3px rgba(59, 130, 246, 0.1);
}

/* Menetrend táblázat */
.schedule-table-container {
    background: var(--card-background);
    border-radius: 16px;
    padding: 2rem;
    box-shadow: var(--shadow);
    border: 1px solid var(--border-color);
    overflow-x: auto;
    margin-bottom: 3rem;
}

.schedule-table {
    width: 100%;
    border-collapse: collapse;
    font-family: 'Nunito', sans-serif;
}

.schedule-table thead {
    background: var(--primary-color);
    color: white;
}

.schedule-table th {
    padding: 1rem;
    text-align: left;
    font-weight: 600;
    font-size: 1.1rem;
}

.stop-header {
    width: 40%;
    border-radius: 8px 0 0 0;
}

.times-header {
    width: 60%;
    border-radius: 0 8px 0 0;
}

.schedule-table tbody tr {
    border-bottom: 1px solid var(--border-color);
    transition: var(--transition);
}

.schedule-table tbody tr:hover {
    background: var(--light-background);
}

.schedule-table tbody tr:last-child {
    border-bottom: none;
}

.stop-cell {
    padding: 1rem;
    vertical-align: top;
}

.stop-number {
    display: inline-block;
    background: var(--primary-color);
    color: white;
    width: 24px;
    height: 24px;
    border-radius: 50%;
    text-align: center;
    line-height: 24px;
    font-size: 0.9rem;
    font-weight: 600;
    margin-right: 1rem;
}

.stop-name {
    font-size: 1rem;
    font-weight: 500;
    color: var(--text-color);
}

.time-cell {
    padding: 1rem;
}

.time-list {
    display: flex;
    flex-wrap: wrap;
    gap: 0.5rem;
}

.time-item {
    display: inline-block;
    padding: 0.5rem 0.75rem;
    border-radius: 6px;
    font-size: 0.9rem;
    font-weight: 500;
    text-align: center;
    min-width: 60px;
    transition: all 0.3s ease;
    border: 1px solid transparent;
}

.time-item[style*="display: none"] {
    display: none !important;
}

/* Időpont típusok - FEHÉR HÁTTÉR A JELÖLETLEN IDŐPONTOKHOZ */
.time-item.type-normal {
    background: #ffffff;
    color: #1f2937;
    border-color: #d1d5db;
    box-shadow: 0 1px 3px rgba(0, 0, 0, 0.1);
}

.time-item.type-x {
    background: #3b82f6;
    color: #ffffff;
    border-color: #1d4ed8;
    font-weight: 600;
}

.time-item.type-y {
    background: #22c55e;
    color: #ffffff;
    border-color: #16a34a;
    font-weight: 600;
}

.time-item.type-z {
    background: #f59e0b;
    color: #ffffff;
    border-color: #d97706;
    font-weight: 600;
}

/* Hover effektek */
.time-item:hover {
    transform: translateY(-2px);
    box-shadow: 0 4px 12px rgba(0, 0, 0, 0.15);
}

/* Az idő-alapú stílusok eltávolítva - minden időpont statikusan megjelenik */

/* A pulse animáció eltávolítva - már nem szükséges */

/* Jelmagyarázat stílusok */
.schedule-legend {
    background: var(--card-background);
    border-radius: 16px;
    padding: 2rem;
    box-shadow: var(--shadow);
    border: 1px solid var(--border-color);
    margin-top: 2rem;
}

.legend-title {
    font-size: 1.3rem;
    font-weight: 700;
    color: var(--text-color);
    margin-bottom: 1.5rem;
    font-family: 'Nunito', sans-serif;
    text-align: center;
}

.legend-items {
    display: flex;
    flex-wrap: wrap;
    gap: 1.5rem;
    justify-content: center;
}

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

.legend-item:hover {
    background: var(--hover-background);
    transform: translateY(-2px);
    box-shadow: 0 4px 12px rgba(0, 0, 0, 0.1);
}

.legend-color {
    width: 20px;
    height: 20px;
    border-radius: 6px;
    border: 2px solid transparent;
    flex-shrink: 0;
}

.legend-color.type-normal {
    background: #ffffff;
    border-color: #d1d5db;
    box-shadow: 0 1px 3px rgba(0, 0, 0, 0.1);
}

.legend-color.type-x {
    background: #3b82f6;
    border-color: #1d4ed8;
}

.legend-color.type-y {
    background: #22c55e;
    border-color: #16a34a;
}

.legend-color.type-z {
    background: #f59e0b;
    border-color: #d97706;
}

.legend-text {
    font-size: 0.95rem;
    font-weight: 500;
    color: var(--text-color);
    font-family: 'Nunito', sans-serif;
}

/* Reszponzív design a jelmagyarázathoz */
@media (max-width: 768px) {
    .schedule-legend {
        padding: 1.5rem;
        margin-top: 1.5rem;
    }
    
    .legend-title {
        font-size: 1.2rem;
        margin-bottom: 1.25rem;
    }
    
    .legend-items {
        flex-direction: column;
        gap: 1rem;
        align-items: center;
    }
    
    .legend-item {
        width: 100%;
        max-width: 300px;
        justify-content: flex-start;
    }
}

@media (max-width: 480px) {
    .schedule-legend {
        padding: 1rem;
    }
    
    .legend-title {
        font-size: 1.1rem;
    }
    
    .legend-item {
        padding: 0.625rem 1rem;
    }
    
    .legend-color {
        width: 18px;
        height: 18px;
    }
    
    .legend-text {
        font-size: 0.9rem;
    }
}

/* Reszponzív design */
@media (max-width: 768px) {
    .schedule-section {
        padding: 2rem 1rem;
    }
    
    .section-title {
        font-size: 2rem;
        flex-direction: column;
        gap: 0.5rem;
    }
    
    .schedule-filters {
        flex-direction: column;
        align-items: center;
        gap: 1rem;
    }
    
    .filter-group {
        width: 100%;
        max-width: 300px;
    }
    
    .schedule-table-container {
        padding: 1rem;
    }
    
    .schedule-table th,
    .schedule-table td {
        padding: 0.75rem 0.5rem;
    }
    
    .stop-number {
        width: 20px;
        height: 20px;
        line-height: 20px;
        font-size: 0.8rem;
        margin-right: 0.5rem;
    }
    
    .time-list {
        gap: 0.25rem;
    }
    
    .time-item {
        padding: 0.4rem 0.6rem;
        font-size: 0.8rem;
        min-width: 50px;
    }
    
}

@media (max-width: 480px) {
    .section-title {
        font-size: 1.8rem;
    }
    
    .section-subtitle {
        font-size: 1rem;
    }
    
    .schedule-table {
        font-size: 0.9rem;
    }
    
    .time-item {
        padding: 0.3rem 0.5rem;
        font-size: 0.75rem;
        min-width: 45px;
    }
}

/* Dark mode támogatás */
[data-theme="dark"] .time-item.type-normal {
    background: #ffffff;
    color: #1f2937;
    border-color: #6b7280;
}

[data-theme="dark"] .legend-color.type-normal {
    background: #ffffff;
    border-color: #6b7280;
}

/* ===== LEGFRISSEBB HÍREINK SECTION ===== */
.latest-news-section {
    padding: 5rem 0;
    background: linear-gradient(135deg, var(--background-color) 0%, var(--light-background) 100%);
}

.latest-news-section .section-title {
    text-align: center;
    font-size: 2.5rem;
    font-weight: 700;
    color: var(--text-color);
    margin-bottom: 3rem;
    position: relative;
}

.latest-news-section .section-title::after {
    content: '';
    position: absolute;
    bottom: -10px;
    left: 50%;
    transform: translateX(-50%);
    width: 80px;
    height: 4px;
    background: linear-gradient(90deg, var(--primary-color), var(--primary-light));
    border-radius: 2px;
}

.news-cards-grid,
.economy-news-cards-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 2rem;
    max-width: 1200px;
    margin: 0 auto;
}

.news-card {
    background: var(--card-background);
    border-radius: 20px;
    overflow: hidden;
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.1);
    border: 1px solid var(--border-color);
    transition: all 0.3s cubic-bezier(0.4, 0, 0.2, 1);
    height: 100%;
    display: flex;
    flex-direction: column;
}

.news-card:hover {
    transform: translateY(-8px);
    box-shadow: 0 20px 50px rgba(0, 0, 0, 0.15);
    border-color: var(--primary-color);
}

.news-card-image {
    position: relative;
    height: 250px;
    overflow: hidden;
}

/* Hír címkék */
.news-card-badges {
    position: absolute;
    top: 1rem;
    left: 1rem;
    display: flex;
    flex-direction: column;
    gap: 0.5rem;
    z-index: 2;
}

.news-badge {
    padding: 0.4rem 0.8rem;
    border-radius: 20px;
    font-size: 0.75rem;
    font-weight: 600;
    text-transform: uppercase;
    letter-spacing: 0.5px;
    font-family: 'Nunito', sans-serif;
    backdrop-filter: blur(10px);
    border: 1px solid rgba(255, 255, 255, 0.2);
    /* Rugalmas méretek a hosszabb szövegekhez */
    width: auto;
    min-width: 120px;
    height: 28px;
    display: flex;
    align-items: center;
    justify-content: center;
    text-align: center;
    white-space: nowrap;
    overflow: visible;
}

.news-badge-type {
    background: rgba(30, 64, 175, 0.9);
    color: white;
}

.news-badge-category {
    background: rgba(244, 208, 63, 0.9);
    color: var(--gray-800);
}

.news-card-image img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: transform 0.5s cubic-bezier(0.4, 0, 0.2, 1);
}

.news-card:hover .news-card-image img {
    transform: scale(1.1);
}

.news-card-date {
    position: absolute;
    top: 1rem;
    right: 1rem;
    background: var(--primary-color);
    color: white;
    padding: 0.75rem;
    border-radius: 12px;
    text-align: center;
    box-shadow: 0 4px 15px rgba(244, 208, 63, 0.3);
    min-width: 60px;
}

.news-card-date .day {
    display: block;
    font-size: 1.25rem;
    font-weight: 700;
    line-height: 1;
}

.news-card-date .month {
    display: block;
    font-size: 0.875rem;
    font-weight: 500;
    text-transform: uppercase;
    opacity: 0.9;
}

.news-card-content {
    padding: 1.5rem;
    flex: 1;
    display: flex;
    flex-direction: column;
}

.news-card-title {
    font-size: 1.25rem;
    font-weight: 600;
    color: var(--text-color);
    margin-bottom: 1rem;
    line-height: 1.4;
    display: -webkit-box;
    -webkit-line-clamp: 2;
    line-clamp: 2;
    -webkit-box-orient: vertical;
    overflow: hidden;
}

.news-card-excerpt {
    color: var(--light-text);
    line-height: 1.6;
    margin-bottom: 1.5rem;
    flex: 1;
    display: -webkit-box;
    -webkit-line-clamp: 3;
line-clamp: 3;
    -webkit-box-orient: vertical;
    overflow: hidden;
}

.news-card-btn {
    display: inline-flex;
    align-items: center;
    gap: 0.5rem;
    padding: 0.875rem 1.5rem;
    background: var(--primary-color);
    color: white;
    text-decoration: none;
    border-radius: 25px;
    font-weight: 600;
    font-size: 0.95rem;
    transition: all 0.3s cubic-bezier(0.4, 0, 0.2, 1);
    align-self: flex-start;
    box-shadow: 0 4px 15px rgba(244, 208, 63, 0.3);
}

.news-card-btn:hover {
    background: var(--primary-light);
    transform: translateY(-2px);
    box-shadow: 0 8px 25px rgba(244, 208, 63, 0.4);
    color: white;
    text-decoration: none;
}

.news-card-btn i {
    font-size: 1rem;
    transition: transform 0.3s ease;
}

.news-card-btn:hover i {
    transform: translateX(3px);
}

/* News Cards Reszponzív */
@media (max-width: 1200px) {
    .news-cards-grid,
    .economy-news-cards-grid {
        gap: 1.5rem;
    }
    
    .news-card-content {
        padding: 1.25rem;
    }
}

@media (max-width: 1024px) {
    .news-cards-grid,
    .economy-news-cards-grid {
        grid-template-columns: repeat(2, 1fr);
        gap: 1.5rem;
    }
    
    .news-card-title {
        font-size: 1.125rem;
    }
    
    .news-card-excerpt {
        font-size: 0.9rem;
    }
}

@media (max-width: 768px) {
    .latest-news-section {
        padding: 3rem 0;
    }
    
    .latest-news-section .section-title {
        font-size: 2rem;
        margin-bottom: 2rem;
    }
    
    .news-cards-grid,
    .economy-news-cards-grid {
        grid-template-columns: 1fr;
        gap: 2rem;
        max-width: 500px;
    }
    
    .news-card {
        max-width: 500px;
        margin: 0 auto;
    }
    
    .news-card-image {
        height: 220px;
    }
}

@media (max-width: 480px) {
    .latest-news-section {
        padding: 2rem 0;
    }
    
    .latest-news-section .section-title {
        font-size: 1.75rem;
        margin-bottom: 1.5rem;
    }
    
    .news-card-content {
        padding: 1rem;
    }
    
    .news-card-title {
        font-size: 1.125rem;
        margin-bottom: 0.75rem;
    }
    
    .news-card-excerpt {
        font-size: 0.85rem;
        margin-bottom: 1.25rem;
    }
    
    .news-card-btn {
        padding: 0.75rem 1.25rem;
        font-size: 0.9rem;
        width: 100%;
        justify-content: center;
    }
    
    .news-card-date {
        top: 0.75rem;
        right: 0.75rem;
        padding: 0.5rem;
        min-width: 50px;
    }
    
    .news-card-date .day {
        font-size: 1.125rem;
    }
    
    .news-card-date .month {
        font-size: 0.75rem;
    }
}

.flip-btn {
    display: inline-flex;
    align-items: center;
    gap: 0.5rem;
    padding: 0.75rem 1.5rem;
    background: var(--primary-color);
    color: white;
    text-decoration: none;
    border-radius: 25px;
    font-weight: 600;
    transition: all 0.3s ease;
    box-shadow: 0 4px 15px rgba(0, 0, 0, 0.1);
}

.flip-btn:hover {
    background: var(--primary-color);
    color: white;
    transform: translateY(-2px);
    box-shadow: 0 6px 20px rgba(0, 0, 0, 0.15);
}

.flip-btn i {
    font-size: 1.1rem;
    transition: transform 0.3s ease;
}

.flip-btn:hover i {
    transform: translateX(3px);
}

/* Történelmi Quiz CSS Stílusok - MyTiszaföldvár */

/* Kilépés gomb */
.exit-button-container {
    position: fixed;
    top: 20px;
    right: 20px;
    z-index: 1000;
}

.exit-button {
    display: flex;
    align-items: center;
    gap: 0.5rem;
    padding: 0.75rem 1.5rem;
    background: var(--error-color);
    color: white;
    text-decoration: none;
    border-radius: 25px;
    font-weight: 600;
    font-size: 0.9rem;
    transition: all 0.3s cubic-bezier(0.4, 0, 0.2, 1);
    box-shadow: 0 4px 15px rgba(220, 38, 38, 0.3);
    font-family: 'Nunito', sans-serif;
}

.exit-button:hover {
    background: #DC2626;
    transform: translateY(-2px);
    box-shadow: 0 8px 25px rgba(220, 38, 38, 0.4);
}

.exit-button i {
    font-size: 1rem;
}

/* Theme Toggle gomb */
.theme-toggle-container {
    position: fixed;
    top: 20px;
    right: 140px;
    z-index: 1000;
}

.theme-toggle {
    display: flex;
    align-items: center;
    justify-content: center;
    width: 48px;
    height: 48px;
    background: var(--primary-color);
    color: white;
    border: none;
    border-radius: 50%;
    cursor: pointer;
    transition: all 0.3s cubic-bezier(0.4, 0, 0.2, 1);
    box-shadow: 0 4px 15px rgba(30, 64, 175, 0.3);
    font-size: 1.2rem;
}

.theme-toggle:hover {
    background: var(--primary-dark);
    transform: translateY(-2px);
    box-shadow: 0 8px 25px rgba(30, 64, 175, 0.4);
}

.theme-toggle:active {
    transform: translateY(0);
}

/* Dark mode ikon */
[data-theme="dark"] .theme-toggle {
    background: var(--secondary-color);
    box-shadow: 0 4px 15px rgba(139, 92, 246, 0.3);
    color: white; /* Fehér ikon sötét módban */
}

[data-theme="dark"] .theme-toggle:hover {
    background: var(--secondary-dark);
    box-shadow: 0 8px 25px rgba(139, 92, 246, 0.4);
}

/* Quiz fő konténer */
.quiz-container {
    max-width: 900px;
    margin: 0 auto;
    padding: 2rem;
    background: var(--card-background);
    border-radius: 20px;
    box-shadow: 0 20px 60px rgba(0, 0, 0, 0.1);
    border: 1px solid var(--border-color);
    position: relative;
    overflow: hidden;
}

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

/* Quiz fejléc */
.quiz-header {
    text-align: center;
    margin-bottom: 3rem;
    padding-bottom: 2rem;
    border-bottom: 2px solid var(--border-color);
}

.quiz-title {
    font-size: 2.5rem;
    font-weight: 800;
    color: var(--text-color);
    margin-bottom: 1rem;
    font-family: 'Nunito', sans-serif;
    background: linear-gradient(135deg, var(--text-color), var(--primary-color));
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
}

.quiz-subtitle {
    font-size: 1.1rem;
    color: var(--light-text);
    margin-bottom: 1.5rem;
    font-family: 'Nunito', sans-serif;
}

.quiz-info {
    display: flex;
    justify-content: center;
    gap: 2rem;
    flex-wrap: wrap;
}

.quiz-stat {
    display: flex;
    align-items: center;
    gap: 0.5rem;
    padding: 0.75rem 1.5rem;
    background: var(--light-background);
    border-radius: 25px;
    border: 1px solid var(--border-color);
    color: var(--text-color);
    font-weight: 600;
    font-size: 0.9rem;
}

.quiz-stat i {
    color: var(--primary-color);
    font-size: 1.1rem;
}

/* Quiz kezdő képernyő */
.quiz-start {
    text-align: center;
    padding: 2rem 0;
}

.quiz-start-icon {
    width: 120px;
    height: 120px;
    margin: 0 auto 2rem;
    background: linear-gradient(135deg, var(--primary-color), var(--primary-light));
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 3rem;
    color: var(--secondary-color);
    box-shadow: 0 10px 30px rgba(244, 208, 63, 0.3);
}

.quiz-start h3 {
    font-size: 1.8rem;
    font-weight: 700;
    color: var(--text-color);
    margin-bottom: 1rem;
    font-family: 'Nunito', sans-serif;
}

.quiz-start p {
    color: var(--light-text);
    font-size: 1.1rem;
    line-height: 1.6;
    margin-bottom: 2rem;
    max-width: 500px;
    margin-left: auto;
    margin-right: auto;
}

.quiz-start-btn {
    background: linear-gradient(135deg, var(--primary-color), var(--primary-light));
    color: var(--secondary-color);
    padding: 1rem 2.5rem;
    border: none;
    border-radius: 50px;
    font-size: 1.1rem;
    font-weight: 700;
    cursor: pointer;
    transition: all 0.3s cubic-bezier(0.4, 0, 0.2, 1);
    box-shadow: 0 8px 25px rgba(244, 208, 63, 0.3);
    font-family: 'Nunito', sans-serif;
}

.quiz-start-btn:hover {
    transform: translateY(-3px);
    box-shadow: 0 12px 35px rgba(244, 208, 63, 0.4);
}

/* Quiz kérdés szekció */
.quiz-question {
    display: none;
    animation: fadeInUp 0.6s ease-out;
}

.quiz-question.active {
    display: block;
}

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

.question-header {
    margin-bottom: 2rem;
    text-align: center;
}

.question-number {
    background: var(--primary-color);
    color: var(--secondary-color);
    padding: 0.5rem 1rem;
    border-radius: 20px;
    font-weight: 700;
    font-size: 0.9rem;
    display: inline-block;
    margin-bottom: 1rem;
}

.question-text {
    font-size: 1.3rem;
    font-weight: 600;
    color: var(--text-color);
    line-height: 1.5;
    margin-bottom: 1rem;
    font-family: 'Nunito', sans-serif;
}

.question-image {
    width: 100%;
    max-width: 400px;
    height: 250px;
    margin: 0 auto 2rem;
    border-radius: 16px;
    overflow: hidden;
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.1);
    border: 2px solid var(--border-color);
}

.question-image img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: transform 0.3s ease;
}

.question-image:hover img {
    transform: scale(1.05);
}

/* Válasz opciók */
.answer-options {
    display: flex;
    flex-direction: column;
    gap: 1rem;
    margin-bottom: 2rem;
}

.answer-option {
    display: flex;
    align-items: center;
    gap: 1rem;
    padding: 1.25rem 1.5rem;
    background: var(--card-background);
    border: 2px solid var(--border-color);
    border-radius: 16px;
    cursor: pointer;
    transition: all 0.3s cubic-bezier(0.4, 0, 0.2, 1);
    position: relative;
    overflow: hidden;
}

.answer-option::before {
    content: '';
    position: absolute;
    top: 0;
    left: -100%;
    width: 100%;
    height: 100%;
    background: linear-gradient(90deg, transparent, rgba(244, 208, 63, 0.1), transparent);
    transition: left 0.5s ease;
}

.answer-option:hover::before {
    left: 100%;
}

.answer-option:hover {
    border-color: var(--primary-color);
    transform: translateY(-2px);
    box-shadow: 0 8px 25px rgba(244, 208, 63, 0.2);
}

.answer-option.selected {
    border-color: var(--primary-color);
    background: rgba(244, 208, 63, 0.1);
    box-shadow: 0 4px 15px rgba(244, 208, 63, 0.3);
}

.answer-option.correct {
    border-color: var(--success-color);
    background: rgba(101, 150, 105, 0.1);
    box-shadow: 0 4px 15px rgba(101, 150, 105, 0.3);
}

.answer-option.incorrect {
    border-color: var(--error-color);
    background: rgba(220, 38, 38, 0.1);
    box-shadow: 0 4px 15px rgba(220, 38, 38, 0.3);
}

.answer-option.disabled {
    pointer-events: none;
    opacity: 0.7;
}

.option-letter {
    background: var(--secondary-color);
    color: white;
    width: 40px;
    height: 40px;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 1.1rem;
    font-weight: 700;
    flex-shrink: 0;
    transition: all 0.3s ease;
}

.answer-option:hover .option-letter {
    background: var(--primary-color);
    transform: scale(1.1);
}

.answer-option.selected .option-letter {
    background: var(--primary-color);
}

.answer-option.correct .option-letter {
    background: var(--success-color);
}

.answer-option.incorrect .option-letter {
    background: var(--error-color);
}

.option-text {
    flex: 1;
    font-size: 1rem;
    font-weight: 500;
    color: var(--text-color);
    line-height: 1.4;
}

.answer-option.selected .option-text {
    color: var(--primary-color);
    font-weight: 600;
}

.answer-option.correct .option-text {
    color: var(--success-color);
    font-weight: 600;
}

.answer-option.incorrect .option-text {
    color: var(--error-color);
    font-weight: 600;
}

/* Quiz navigáció */
.quiz-navigation {
    display: flex;
    justify-content: space-between;
    align-items: center;
    margin-top: 2rem;
    padding-top: 2rem;
    border-top: 2px solid var(--border-color);
}

.quiz-btn {
    padding: 0.875rem 1.75rem;
    border: none;
    border-radius: 12px;
    font-weight: 600;
    font-size: 1rem;
    cursor: pointer;
    transition: all 0.3s cubic-bezier(0.4, 0, 0.2, 1);
    font-family: 'Nunito', sans-serif;
    display: flex;
    align-items: center;
    gap: 0.5rem;
}

.quiz-btn:disabled {
    opacity: 0.5;
    cursor: not-allowed;
    transform: none;
}

.quiz-btn:not(:disabled):hover {
    transform: translateY(-2px);
}

.btn-prev {
    background: var(--light-background);
    color: var(--text-color);
    border: 2px solid var(--border-color);
}

.btn-prev:hover:not(:disabled) {
    background: var(--border-color);
    border-color: var(--text-color);
}

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

.btn-next:hover:not(:disabled) {
    background: var(--primary-light);
    border-color: var(--primary-light);
    box-shadow: 0 8px 25px rgba(244, 208, 63, 0.3);
}

.btn-submit {
    background: var(--success-color);
    color: white;
    border: 2px solid var(--success-color);
}

.btn-submit:hover:not(:disabled) {
    background: #059669;
    border-color: #059669;
    box-shadow: 0 8px 25px rgba(5, 150, 105, 0.3);
}

/* Quiz eredmények */
.quiz-results {
    display: none;
    text-align: center;
    padding: 2rem 0;
    animation: fadeInUp 0.6s ease-out;
}

.quiz-results.active {
    display: block;
}

.results-icon {
    width: 120px;
    height: 120px;
    margin: 0 auto 2rem;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 3rem;
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.1);
}

.results-icon.excellent {
    background: linear-gradient(135deg, var(--success-color), #10B981);
    color: white;
}

.results-icon.good {
    background: linear-gradient(135deg, var(--primary-color), var(--primary-light));
    color: var(--secondary-color);
}

.results-icon.average {
    background: linear-gradient(135deg, var(--warning-color), #F59E0B);
    color: white;
}

.results-icon.poor {
    background: linear-gradient(135deg, var(--error-color), #EF4444);
    color: white;
}

.results-title {
    font-size: 2rem;
    font-weight: 700;
    color: var(--text-color);
    margin-bottom: 1rem;
    font-family: 'Nunito', sans-serif;
}

.results-score {
    font-size: 3rem;
    font-weight: 800;
    color: var(--primary-color);
    margin-bottom: 1rem;
    font-family: 'Nunito', sans-serif;
}

.results-message {
    color: var(--light-text);
    font-size: 1.1rem;
    line-height: 1.6;
    margin-bottom: 2rem;
    max-width: 500px;
    margin-left: auto;
    margin-right: auto;
}

.results-details {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 1.5rem;
    margin-bottom: 2rem;
}

.result-stat {
    background: var(--light-background);
    padding: 1.5rem;
    border-radius: 16px;
    border: 1px solid var(--border-color);
}

.result-stat-value {
    font-size: 2rem;
    font-weight: 700;
    color: var(--primary-color);
    margin-bottom: 0.5rem;
}

.result-stat-label {
    color: var(--light-text);
    font-size: 0.9rem;
    font-weight: 600;
    text-transform: uppercase;
    letter-spacing: 0.5px;
}

.results-actions {
    display: flex;
    gap: 1rem;
    justify-content: center;
    flex-wrap: wrap;
}

.btn-restart {
    background: var(--primary-color);
    color: var(--secondary-color);
    padding: 1rem 2rem;
    border: none;
    border-radius: 12px;
    font-weight: 600;
    font-size: 1rem;
    cursor: pointer;
    transition: all 0.3s ease;
    font-family: 'Nunito', sans-serif;
}

.btn-restart:hover {
    background: var(--primary-light);
    transform: translateY(-2px);
    box-shadow: 0 8px 25px rgba(244, 208, 63, 0.3);
}

.btn-home {
    background: var(--secondary-color);
    color: white;
    padding: 1rem 2rem;
    border: none;
    border-radius: 12px;
    font-weight: 600;
    font-size: 1rem;
    cursor: pointer;
    transition: all 0.3s ease;
    font-family: 'Nunito', sans-serif;
}

.btn-home:hover {
    background: var(--secondary-light);
    transform: translateY(-2px);
    box-shadow: 0 8px 25px rgba(30, 64, 175, 0.3);
}

/* Progress bar */
.quiz-progress {
    margin-bottom: 2rem;
}

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

.progress-fill {
    height: 100%;
    background: linear-gradient(90deg, var(--primary-color), var(--primary-light));
    border-radius: 4px;
    transition: width 0.5s ease;
    position: relative;
}

.progress-fill::after {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: linear-gradient(90deg, transparent, rgba(255, 255, 255, 0.3), transparent);
    animation: shimmer 2s infinite;
}

@keyframes shimmer {
    0% { transform: translateX(-100%); }
    100% { transform: translateX(100%); }
}

.progress-text {
    text-align: center;
    color: var(--light-text);
    font-size: 0.9rem;
    font-weight: 600;
}

/* Quiz betöltő animáció */
.quiz-loading {
    text-align: center;
    padding: 3rem 0;
}


.loading-text {
    color: var(--light-text);
    font-size: 1rem;
    font-weight: 500;
}

/* Dark mode támogatás */
[data-theme="dark"] .quiz-container {
    background: var(--card-background);
    border-color: var(--border-color);
}

[data-theme="dark"] .quiz-start-icon {
    box-shadow: 0 10px 30px rgba(244, 208, 63, 0.2);
}

[data-theme="dark"] .answer-option {
    background: var(--card-background);
    border-color: var(--border-color);
}

[data-theme="dark"] .answer-option:hover {
    background: var(--hover-background);
}

[data-theme="dark"] .quiz-stat {
    background: var(--light-background);
    border-color: var(--border-color);
    color: var(--text-color);
}

[data-theme="dark"] .result-stat {
    background: var(--light-background);
    border-color: var(--border-color);
}

[data-theme="dark"] .progress-bar {
    background: var(--border-color);
}

/* Reszponzív design */
@media (max-width: 768px) {
    .quiz-container {
        margin: 1rem;
        padding: 1.5rem;
        border-radius: 16px;
    }
    
    .quiz-title {
        font-size: 2rem;
    }
    
    .quiz-info {
        flex-direction: column;
        gap: 1rem;
        align-items: center;
    }
    
    .quiz-start-icon {
        width: 100px;
        height: 100px;
        font-size: 2.5rem;
    }
    
    .question-text {
        font-size: 1.2rem;
    }
    
    .question-image {
        height: 200px;
    }
    
    .answer-option {
        padding: 1rem 1.25rem;
    }
    
    .option-letter {
        width: 35px;
        height: 35px;
        font-size: 1rem;
    }
    
    .results-details {
        grid-template-columns: 1fr;
        gap: 1rem;
    }
    
    .results-actions {
        flex-direction: column;
        align-items: stretch;
    }
    
    .quiz-navigation {
        flex-direction: column;
        gap: 1rem;
    }
    
    .quiz-btn {
        width: 100%;
        justify-content: center;
    }
    
    /* Mobil téma váltó pozíció */
    .theme-toggle-container {
        top: 15px;
        right: 15px;
    }
    
    .exit-button-container {
        top: 15px;
        right: 75px;
    }
    
    .exit-button {
        padding: 0.5rem 1rem;
        font-size: 0.8rem;
    }
}

@media (max-width: 480px) {
    .quiz-container {
        margin: 0.5rem;
        padding: 1rem;
    }
    
    .quiz-title {
        font-size: 1.75rem;
    }
    
    .quiz-start h3 {
        font-size: 1.5rem;
    }
    
    .question-text {
        font-size: 1.1rem;
    }
    
    .answer-option {
        padding: 0.875rem 1rem;
    }
    
    .option-letter {
        width: 30px;
        height: 30px;
        font-size: 0.9rem;
    }
    
    .option-text {
        font-size: 0.95rem;
    }
    
    .results-score {
        font-size: 2.5rem;
    }
    
    .results-title {
        font-size: 1.75rem;
    }
    
    /* Kicsi mobil téma váltó pozíció */
    .theme-toggle-container {
        top: 10px;
        right: 10px;
    }
    
    .exit-button-container {
        top: 10px;
        right: 65px;
    }
    
    .theme-toggle {
        width: 40px;
        height: 40px;
        font-size: 1rem;
    }
    
    .exit-button {
        padding: 0.4rem 0.8rem;
        font-size: 0.75rem;
    }
}

/* Hír specifikus stílusok */
.back-button-section {
    margin-top: -100px;
    padding: 2rem 0;
    background: var(--light-background);
    border-bottom: 1px solid var(--border-color);
}

.back-button-section .container {
    display: flex;
    justify-content: flex-start;
}

.article-content {
    padding: 4rem 0;
}

/* Article Header stílusok a hír kártyákhoz igazítva */
.article-header {
    text-align: center;
    margin-bottom: 4rem;
    padding: 3rem 2rem;
    background: var(--card-background);
    border-radius: 20px;
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.1);
    border: 1px solid var(--border-color);
    transition: all 0.3s cubic-bezier(0.4, 0, 0.2, 1);
    position: relative;
    overflow: hidden;
}

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

.article-header:hover {
    transform: translateY(-4px);
    box-shadow: 0 20px 50px rgba(0, 0, 0, 0.15);
    border-color: var(--primary-color);
}

.article-category {
    margin-bottom: 1.5rem;
}

.category-badge {
    display: inline-block;
    background: linear-gradient(135deg, var(--primary-color) 0%, var(--primary-light) 100%);
    color: white;
    padding: 0.75rem 1.5rem;
    border-radius: 50px;
    font-size: 0.875rem;
    font-weight: 600;
    text-transform: uppercase;
    letter-spacing: 0.5px;
    box-shadow: 0 4px 15px rgba(244, 208, 63, 0.3);
    transition: all 0.3s ease;
}

.category-badge:hover {
    transform: translateY(-2px);
    box-shadow: 0 8px 25px rgba(244, 208, 63, 0.4);
}

.article-title {
    font-size: 2.5rem;
    font-weight: 700;
    color: var(--text-color);
    margin-bottom: 2rem;
    line-height: 1.2;
    position: relative;
    padding-bottom: 1.5rem;
}

.article-title::after {
    content: '';
    position: absolute;
    bottom: 0;
    left: 50%;
    transform: translateX(-50%);
    width: 80px;
    height: 4px;
    background: linear-gradient(90deg, var(--primary-color), var(--primary-light));
    border-radius: 2px;
}

.article-info {
    display: flex;
    justify-content: center;
    gap: 3rem;
    flex-wrap: wrap;
    margin-bottom: 2rem;
}

.article-author,
.article-date {
    display: flex;
    align-items: center;
    gap: 0.75rem;
    color: var(--light-text);
    font-size: 1rem;
    padding: 0.75rem 1.5rem;
    background: var(--light-background);
    border-radius: 25px;
    border: 1px solid var(--border-color);
    transition: all 0.3s ease;
}

.article-author:hover,
.article-date:hover {
    background: var(--primary-color);
    color: white;
    transform: translateY(-2px);
    box-shadow: 0 4px 15px rgba(244, 208, 63, 0.3);
}

.article-author i,
.article-date i {
    color: var(--primary-color);
    font-size: 1.25rem;
    transition: color 0.3s ease;
}

.article-author:hover i,
.article-date:hover i {
    color: white;
}

/* Article badges stílusok a hír kártyákhoz igazítva */
.article-badges {
    display: flex;
    justify-content: center;
    gap: 1rem;
    flex-wrap: wrap;
}

.article-badges .news-badge {
    padding: 0.5rem 1rem;
    border-radius: 20px;
    font-size: 0.8rem;
    font-weight: 600;
    text-transform: uppercase;
    letter-spacing: 0.5px;
    font-family: 'Nunito', sans-serif;
    backdrop-filter: blur(10px);
    border: 1px solid rgba(255, 255, 255, 0.2);
    width: auto;
    height: auto;
    display: flex;
    align-items: center;
    justify-content: center;
    text-align: center;
    white-space: nowrap;
    overflow: hidden;
    transition: all 0.3s ease;
    box-shadow: 0 4px 15px rgba(0, 0, 0, 0.1);
}

.article-badges .news-badge:hover {
    transform: translateY(-2px);
    box-shadow: 0 8px 25px rgba(0, 0, 0, 0.15);
}

.article-badges .news-badge-type {
    background: rgba(30, 64, 175, 0.9);
    color: white;
}

.article-badges .news-badge-category {
    background: rgba(244, 208, 63, 0.9);
    color: var(--gray-800);
}

.text-section {
    margin-bottom: 4rem;
    padding: 3rem 0;
}

.text-section-reverse {
    background: var(--light-background);
    margin: 0 -1rem;
    padding: 3rem 1rem;
}

.text-content {
    max-width: 800px;
    margin: 0 auto;
}

.text-content h2 {
    font-size: 2rem;
    font-weight: 600;
    color: var(--text-color);
    margin-bottom: 1.5rem;
    position: relative;
    padding-bottom: 1rem;
}

.text-content h2::after {
    content: '';
    position: absolute;
    bottom: 0;
    left: 0;
    width: 60px;
    height: 3px;
    background: linear-gradient(90deg, var(--primary-color), var(--primary-light));
    border-radius: 2px;
}

.text-content p {
    font-size: 1.125rem;
    line-height: 1.8;
    color: var(--light-text);
    margin-bottom: 1.5rem;
    text-align: justify;
}

.text-content p:last-child {
    margin-bottom: 0;
}

/* Reszponzív stílusok */
@media (max-width: 768px) {
    .article-header {
        padding: 2rem 1rem;
        margin-bottom: 3rem;
    }

    .article-title {
        font-size: 2rem;
    }

    .article-info {
        flex-direction: column;
        gap: 1rem;
    }

    .article-badges {
        gap: 0.75rem;
    }

    .article-badges .news-badge {
        font-size: 0.75rem;
        padding: 0.4rem 0.8rem;
    }

    .text-section {
        padding: 2rem 0;
    }

    .text-section-reverse {
        margin: 0 -0.5rem;
        padding: 2rem 0.5rem;
    }

    .text-content h2 {
        font-size: 1.75rem;
    }

    .text-content p {
        font-size: 1rem;
    }
}

@media (max-width: 480px) {
    .article-title {
        font-size: 1.75rem;
    }

    .article-header {
        padding: 1.5rem 1rem;
    }

    .text-content {
        padding: 0 1rem;
    }
}

/* ===== 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 button animations removed - handled in function.css */

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

/* ========================================
   KÖZÖSSÉG OLDAL STÍLUSOK
   ======================================== */

/* Közösségi Interjúk Szekció */
.community-interviews {
    padding: 4rem 0;
    background: var(--light-background);
    position: relative;
    overflow: hidden;
}

.community-interviews::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: url('data:image/svg+xml,<svg xmlns="https://www.w3.org/2000/svg" viewBox="0 0 100 100"><defs><pattern id="grain" width="100" height="100" patternUnits="userSpaceOnUse"><circle cx="25" cy="25" r="1" fill="%23cbd5e1" opacity="0.3"/><circle cx="75" cy="75" r="1" fill="%23cbd5e1" opacity="0.3"/><circle cx="50" cy="10" r="0.5" fill="%23cbd5e1" opacity="0.2"/><circle cx="10" cy="60" r="0.5" fill="%23cbd5e1" opacity="0.2"/><circle cx="90" cy="40" r="0.5" fill="%23cbd5e1" opacity="0.2"/></pattern></defs><rect width="100" height="100" fill="url(%23grain)"/></svg>');
    opacity: 0.1;
    pointer-events: none;
}

.interviews-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(350px, 1fr));
    gap: 2rem;
    margin-top: 3rem;
}

.interview-placeholder {
    background: var(--card-background);
    border-radius: var(--border-radius);
    padding: 2.5rem;
    text-align: center;
    box-shadow: var(--shadow);
    border: 2px dashed var(--border-color);
    transition: var(--transition);
    position: relative;
    overflow: hidden;
}

.interview-placeholder::before {
    content: '';
    position: absolute;
    top: -50%;
    left: -50%;
    width: 200%;
    height: 200%;
    background: linear-gradient(45deg, transparent, rgba(244, 208, 63, 0.05), transparent);
    transform: rotate(45deg);
    transition: all 0.6s ease;
    opacity: 0;
}

.interview-placeholder:hover::before {
    opacity: 1;
    animation: shimmer 2s infinite;
}

@keyframes shimmer {
    0% { transform: translateX(-100%) translateY(-100%) rotate(45deg); }
    100% { transform: translateX(100%) translateY(100%) rotate(45deg); }
}

.interview-placeholder:hover {
    transform: translateY(-5px);
    box-shadow: 0 20px 40px rgba(0, 0, 0, 0.15);
    border-color: var(--primary-color);
}

.placeholder-icon {
    width: 80px;
    height: 80px;
    background: linear-gradient(135deg, var(--primary-color), var(--primary-dark));
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    margin: 0 auto 1.25rem;
    color: white;
    font-size: 2rem;
    animation: pulse 2s infinite;
}

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

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

.placeholder-text {
    color: var(--light-text);
    font-size: 1rem;
    line-height: 1.6;
    margin-bottom: 1.5rem;
    font-family: 'Nunito', sans-serif;
}

.placeholder-coming-soon {
    display: inline-flex;
    align-items: center;
    gap: 0.5rem;
    background: linear-gradient(135deg, var(--warning-color), var(--primary-dark));
    color: white;
    padding: 0.75rem 1.5rem;
    border-radius: 50px;
    font-weight: 600;
    font-size: 0.875rem;
    animation: bounce 2s infinite;
    font-family: 'Nunito', sans-serif;
}

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

/* Közösségi Programok Szekció */
.community-programs {
    padding: 4rem 0;
    background: var(--background-color);
    position: relative;
}

/* Program Szűrők */
.program-filters {
    display: flex;
    justify-content: center;
    gap: 1rem;
    margin: 3rem 0;
    flex-wrap: wrap;
}

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

.filter-btn:hover {
    border-color: var(--primary-color);
    color: var(--primary-color);
    background: var(--card-background);
    transform: translateY(-2px);
    box-shadow: 0 8px 20px rgba(0, 0, 0, 0.15);
}

.filter-btn.active {
    background: var(--primary-color);
    border-color: var(--primary-color);
    color: white;
}

.filter-btn.active:hover {
    background: var(--primary-color);
    border-color: var(--primary-color);
    color: white;
    transform: translateY(-2px);
    box-shadow: 0 8px 25px rgba(244, 208, 63, 0.4);
}

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

/* Közösség oldal specifikus szűrő gombok */
.community-programs .filter-btn:hover {
    background: var(--card-background) !important;
    border-color: var(--primary-color);
    color: var(--primary-color);
    transform: translateY(-2px);
    box-shadow: 0 8px 20px rgba(0, 0, 0, 0.15);
}

.community-programs .filter-btn.active:hover {
    background: var(--primary-color) !important;
    border-color: var(--primary-color);
    color: white !important;
    transform: translateY(-2px);
    box-shadow: 0 8px 25px rgba(244, 208, 63, 0.4);
}

/* Programok Grid */
.programs-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(320px, 1fr));
    gap: 1.5rem;
    margin-top: 2rem;
}

/* Program Kártya */
.program-card {
    background: var(--card-background);
    border-radius: 20px;
    overflow: hidden;
    box-shadow: var(--shadow);
    border: 1px solid var(--border-color);
    transition: var(--transition);
    position: relative;
}

.program-card:hover {
    transform: translateY(-8px);
    box-shadow: 0 20px 40px rgba(0, 0, 0, 0.15);
    border-color: var(--primary-color);
}

/* Program Kép */
.program-image {
    position: relative;
    height: 250px;
    overflow: hidden;
}

.program-image img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: var(--transition);
}

.program-card:hover .program-image img {
    transform: scale(1.05);
}

.program-category-badge {
    position: absolute;
    top: 1rem;
    left: 1rem;
    background: var(--primary-color);
    color: white;
    padding: 0.5rem 1rem;
    border-radius: 20px;
    font-size: 0.75rem;
    font-weight: 600;
    display: flex;
    align-items: center;
    gap: 0.375rem;
    font-family: 'Nunito', sans-serif;
}

.program-status {
    position: absolute;
    top: 1rem;
    right: 1rem;
    padding: 0.375rem 0.75rem;
    border-radius: 20px;
    font-size: 0.75rem;
    font-weight: 600;
    font-family: 'Nunito', sans-serif;
}

.program-status.active {
    background: var(--success-color);
    color: white;
}

/* Program Tartalom */
.program-content {
    padding: 1.5rem;
}

.program-header {
    margin-bottom: 1rem;
}

.program-title {
    font-size: 1.25rem;
    font-weight: 700;
    color: var(--text-color);
    margin: 0;
    font-family: 'Nunito', sans-serif;
}

.program-description {
    color: var(--light-text);
    font-size: 0.875rem;
    line-height: 1.6;
    margin-bottom: 1.5rem;
    font-family: 'Nunito', sans-serif;
}

/* Program Részletek */
.program-details {
    margin-bottom: 1.5rem;
}

.detail-item {
    display: flex;
    align-items: center;
    gap: 0.75rem;
    margin-bottom: 0.75rem;
    font-size: 0.875rem;
    color: var(--light-text);
    font-family: 'Nunito', sans-serif;
}

.detail-item i {
    color: var(--primary-color);
    font-size: 1rem;
    width: 16px;
    flex-shrink: 0;
}

/* Program Kapcsolat */
.program-contact {
    margin-bottom: 1.5rem;
    padding: 1rem;
    background: var(--light-background);
    border-radius: 12px;
}

.contact-info {
    display: flex;
    align-items: center;
    gap: 0.5rem;
    margin-bottom: 0.5rem;
    font-size: 0.875rem;
    color: var(--text-color);
    font-family: 'Nunito', sans-serif;
}

.contact-info:last-child {
    margin-bottom: 0;
}

.contact-info i {
    color: var(--primary-color);
    font-size: 1rem;
    width: 16px;
}


/* Modal Ablakok */
.program-modal,
.registration-modal {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    z-index: 10000;
    display: none;
    align-items: center;
    justify-content: center;
    padding: 1rem;
}

.program-modal.active,
.registration-modal.active {
    display: flex;
}

.modal-overlay {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: rgba(0, 0, 0, 0.7);
    backdrop-filter: blur(4px);
}

.modal-content {
    position: relative;
    background: var(--card-background);
    border-radius: 20px;
    max-width: 600px;
    width: 100%;
    max-height: 90vh;
    overflow-y: auto;
    box-shadow: 0 25px 50px rgba(0, 0, 0, 0.3);
    animation: modalSlideIn 0.3s ease;
}

@keyframes modalSlideIn {
    from {
        opacity: 0;
        transform: translateY(-50px) scale(0.9);
    }
    to {
        opacity: 1;
        transform: translateY(0) scale(1);
    }
}

.modal-close {
    position: absolute;
    top: 1rem;
    right: 1rem;
    width: 40px;
    height: 40px;
    background: var(--light-background);
    border: none;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    cursor: pointer;
    transition: var(--transition);
    z-index: 1;
}

.modal-close:hover {
    background: var(--error-color);
    color: white;
}

.modal-header {
    padding: 2rem 2rem 1rem;
    border-bottom: 1px solid var(--border-color);
}

.modal-image {
    position: relative;
    height: 200px;
    border-radius: 12px;
    overflow: hidden;
    margin-bottom: 1rem;
}

.modal-image img {
    width: 100%;
    height: 100%;
    object-fit: cover;
}

.modal-category-badge {
    position: absolute;
    top: 1rem;
    left: 1rem;
    background: var(--primary-color);
    color: white;
    padding: 0.5rem 1rem;
    border-radius: 20px;
    font-size: 0.75rem;
    font-weight: 600;
    display: flex;
    align-items: center;
    gap: 0.375rem;
    font-family: 'Nunito', sans-serif;
}

.modal-title-section {
    display: flex;
    justify-content: space-between;
    align-items: flex-start;
}

.modal-title-section h2 {
    font-size: 1.5rem;
    font-weight: 700;
    color: var(--text-color);
    margin: 0;
    font-family: 'Nunito', sans-serif;
    flex: 1;
}

.modal-rating {
    display: flex;
    align-items: center;
    gap: 0.25rem;
    background: var(--light-background);
    padding: 0.5rem 1rem;
    border-radius: 20px;
    font-size: 0.875rem;
    font-weight: 600;
    color: var(--warning-color);
    font-family: 'Nunito', sans-serif;
}

.modal-body {
    padding: 1.5rem 2rem;
}

.modal-description {
    margin-bottom: 1.5rem;
}

.modal-description p {
    color: var(--light-text);
    line-height: 1.6;
    font-family: 'Nunito', sans-serif;
}

.modal-details {
    margin-bottom: 1.5rem;
}

.modal-contact {
    margin-bottom: 1.5rem;
    padding: 1rem;
    background: var(--light-background);
    border-radius: 12px;
}

.modal-requirements h3 {
    font-size: 1.125rem;
    font-weight: 600;
    color: var(--text-color);
    margin-bottom: 1rem;
    font-family: 'Nunito', sans-serif;
}

.modal-requirements ul {
    list-style: none;
    padding: 0;
    margin: 0;
}

.modal-requirements li {
    padding: 0.5rem 0;
    border-bottom: 1px solid var(--border-color);
    color: var(--light-text);
    font-family: 'Nunito', sans-serif;
}

.modal-requirements li:last-child {
    border-bottom: none;
}

.modal-requirements li::before {
    content: '✓';
    color: var(--success-color);
    font-weight: bold;
    margin-right: 0.5rem;
}

.modal-footer {
    padding: 1rem 2rem 2rem;
    display: flex;
    gap: 1rem;
    justify-content: flex-end;
}

/* Jelentkezési Form */
.registration-form {
    display: flex;
    flex-direction: column;
    gap: 1.5rem;
}

.form-group {
    display: flex;
    flex-direction: column;
    gap: 0.5rem;
}

.form-group label {
    font-weight: 600;
    color: var(--text-color);
    font-family: 'Nunito', sans-serif;
    font-size: 0.875rem;
}

.form-group input,
.form-group textarea {
    padding: 0.75rem;
    border: 2px solid var(--border-color);
    border-radius: 8px;
    font-family: 'Nunito', sans-serif;
    font-size: 0.875rem;
    transition: var(--transition);
    background: var(--input-background);
    color: var(--text-color);
}

.form-group input:focus,
.form-group textarea:focus {
    outline: none;
    border-color: var(--primary-color);
    box-shadow: 0 0 0 3px rgba(244, 208, 63, 0.1);
}

.checkbox-group {
    flex-direction: row;
    align-items: flex-start;
    gap: 0.75rem;
}

.checkbox-label {
    display: flex;
    align-items: flex-start;
    gap: 0.75rem;
    cursor: pointer;
    font-size: 0.875rem;
    line-height: 1.5;
    color: var(--text-color);
    font-family: 'Nunito', sans-serif;
}

.checkbox-label input[type="checkbox"] {
    -webkit-appearance: none;
    -moz-appearance: none;
    appearance: none;
    width: 20px;
    height: 20px;
    border: 2px solid var(--border-color);
    border-radius: 4px;
    background: #fff;
    cursor: pointer;
    position: relative;
    flex-shrink: 0;
    margin-top: 2px;
    transition: var(--transition);
}

.checkmark {
    display: none;
}

.checkbox-label input[type="checkbox"]:checked {
    background: var(--primary-color);
    border-color: var(--primary-color);
}

.checkbox-label input[type="checkbox"]:checked::after {
    content: '✓';
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    color: white;
    font-weight: bold;
    font-size: 12px;
}

.checkbox-label a {
    color: var(--primary-color);
    text-decoration: none;
}

.checkbox-label a:hover {
    text-decoration: underline;
}

/* Responsive Design */
@media (max-width: 768px) {
    .community-interviews,
    .community-programs {
        padding: 3rem 0;
    }
    
    .interviews-grid {
        grid-template-columns: 1fr;
        gap: 1.5rem;
        margin-top: 2rem;
    }
    
    .programs-grid {
        grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
        gap: 1.25rem;
        margin-top: 2rem;
    }
    
    .interview-placeholder {
        padding: 2rem 1.25rem;
    }
    
    .program-filters {
        gap: 0.75rem;
        margin: 2rem 0;
    }
    
    .filter-btn {
        padding: 0.625rem 1.25rem;
        font-size: 0.8125rem;
    }
    
    .program-card {
        margin-bottom: 1rem;
    }
    
    
    .modal-content {
        margin: 1rem;
        max-height: 95vh;
    }
    
    .modal-header {
        padding: 1.5rem 1.5rem 1rem;
    }
    
    .modal-body {
        padding: 1rem 1.5rem;
    }
    
    .modal-footer {
        padding: 1rem 1.5rem 1.5rem;
        flex-direction: column;
    }
    
    .modal-title-section {
        flex-direction: column;
        gap: 1rem;
        align-items: flex-start;
    }
}

@media (max-width: 480px) {
    .placeholder-title {
        font-size: 1.25rem;
    }
    
    .program-title {
        font-size: 1.125rem;
    }
    
    .program-filters {
        flex-direction: column;
        align-items: center;
    }
    
    .filter-btn {
        width: 100%;
        max-width: 200px;
        justify-content: center;
    }
    
    .programs-grid {
        grid-template-columns: 1fr;
        gap: 1rem;
    }
    
    .program-content {
        padding: 1rem;
    }
    
    .program-details {
        margin-bottom: 1rem;
    }
    
    .program-contact {
        margin-bottom: 1rem;
        padding: 0.75rem;
    }
    
    .modal-content {
        margin: 0.5rem;
        border-radius: 12px;
    }
    
    .modal-header {
        padding: 1rem;
    }
    
    .modal-body {
        padding: 1rem;
    }
    
    .modal-footer {
        padding: 1rem;
    }
    
    .form-group input,
    .form-group textarea {
        padding: 0.625rem;
    }
}

/**
 * MyTiszaföldvár - Programok Oldal Stílusok
 * Programs Page Styles with Interactive Calendar
 */

/* ===== NAPTÁR SZEKCIÓ ===== */
.calendar-section {
    padding: 4rem 0;
    background: linear-gradient(135deg, var(--light-background) 0%, var(--background-color) 100%);
}

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

.calendar-header {
    text-align: center;
    margin-bottom: 3rem;
}

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

.calendar-header p {
    font-size: 1.1rem;
    color: var(--light-text);
    max-width: 600px;
    margin: 0 auto;
    line-height: 1.6;
}

/* ===== NAPTÁR VEZÉRLŐK ===== */
.calendar-controls {
    display: flex;
    justify-content: center;
    align-items: center;
    gap: 2rem;
    margin-bottom: 2rem;
}

.calendar-nav-btn {
    background: var(--primary-color);
    color: white;
    border: none;
    width: 50px;
    height: 50px;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    cursor: pointer;
    transition: var(--transition);
    font-size: 1.2rem;
}

.calendar-nav-btn:hover {
    background: var(--primary-light);
    transform: translateY(-2px);
    box-shadow: 0 8px 20px rgba(244, 208, 63, 0.3);
}

.calendar-current-month {
    background: var(--card-background);
    padding: 1rem 2rem;
    border-radius: 25px;
    border: 2px solid var(--border-color);
    min-width: 200px;
    text-align: center;
}

.calendar-current-month span {
    font-size: 1.3rem;
    font-weight: 600;
    color: var(--text-color);
    font-family: 'Nunito', sans-serif;
}

/* ===== NAPTÁR RÁCS ===== */
.calendar-grid {
    background: var(--card-background);
    border-radius: 20px;
    overflow: hidden;
    box-shadow: var(--shadow);
    border: 1px solid var(--border-color);
    margin-bottom: 2rem;
}

.calendar-weekdays {
    display: grid;
    grid-template-columns: repeat(7, 1fr);
    background: var(--primary-color);
    color: white;
}

.weekday {
    padding: 1rem;
    text-align: center;
    font-weight: 600;
    font-size: 0.9rem;
    border-right: 1px solid rgba(255, 255, 255, 0.2);
}

.weekday:last-child {
    border-right: none;
}

.calendar-days {
    display: grid;
    grid-template-columns: repeat(7, 1fr);
    min-height: 400px;
}

.calendar-day {
    padding: 1rem;
    border-right: 1px solid var(--border-color);
    border-bottom: 1px solid var(--border-color);
    cursor: pointer;
    transition: var(--transition);
    position: relative;
    min-height: 80px;
    display: flex;
    flex-direction: column;
    justify-content: space-between;
}

.calendar-day:nth-child(7n) {
    border-right: none;
}

.calendar-day:hover {
    background: var(--hover-background);
    transform: scale(1.02);
}

.calendar-day.other-month {
    background: var(--light-background);
    color: var(--light-text);
}

.calendar-day.today {
    background: var(--primary-color);
    color: white;
    font-weight: 700;
}

.calendar-day.selected {
    background: var(--primary-light);
    color: white;
    font-weight: 700;
}

.calendar-day.has-events::after {
    content: '';
    position: absolute;
    bottom: 8px;
    left: 50%;
    transform: translateX(-50%);
    width: 6px;
    height: 6px;
    background: var(--primary-color);
    border-radius: 50%;
}

.calendar-day.today.has-events::after,
.calendar-day.selected.has-events::after {
    background: white;
}

.day-number {
    font-size: 1.1rem;
    font-weight: 600;
    margin-bottom: 0.5rem;
}

.day-events-count {
    font-size: 0.8rem;
    opacity: 0.8;
    text-align: center;
}

/* ===== ESEMÉNY LISTA ===== */
.calendar-events {
    background: var(--card-background);
    border-radius: 20px;
    padding: 2rem;
    box-shadow: var(--shadow);
    border: 1px solid var(--border-color);
}

.events-header {
    text-align: center;
    margin-bottom: 2rem;
}

.events-header h3 {
    font-size: 1.8rem;
    color: var(--text-color);
    margin-bottom: 0.5rem;
    font-weight: 600;
    font-family: 'Nunito', sans-serif;
}

.events-header p {
    color: var(--light-text);
    font-size: 1rem;
}

.no-events {
    text-align: center;
    padding: 3rem 1rem;
    color: var(--light-text);
}

.no-events i {
    font-size: 3rem;
    margin-bottom: 1rem;
    opacity: 0.5;
}

.events-list {
    display: flex;
    flex-direction: column;
    gap: 1rem;
}

.event-item {
    background: var(--light-background);
    padding: 1.5rem;
    border-radius: 12px;
    border: 1px solid var(--border-color);
    transition: var(--transition);
}

.event-item:hover {
    transform: translateY(-2px);
    box-shadow: 0 8px 25px rgba(0, 0, 0, 0.1);
    border-color: var(--primary-color);
}

.event-header {
    display: flex;
    justify-content: space-between;
    align-items: flex-start;
    margin-bottom: 1rem;
    gap: 1rem;
}

.event-title {
    font-size: 1.2rem;
    font-weight: 600;
    color: var(--text-color);
    flex: 1;
    font-family: 'Nunito', sans-serif;
}

.event-category {
    color: white;
    padding: 0.25rem 0.75rem;
    border-radius: 15px;
    font-size: 0.8rem;
    font-weight: 500;
    white-space: nowrap;
}

.event-time {
    font-size: 0.9rem;
    color: var(--primary-color);
    font-weight: 500;
    margin-bottom: 0.5rem;
}

.event-description {
    color: var(--light-text);
    line-height: 1.6;
    margin-bottom: 1rem;
}

.event-details {
    display: flex;
    flex-direction: column;
    gap: 0.5rem;
}

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

.event-location i,
.event-organizer i,
.event-price i {
    color: var(--primary-color);
    width: 16px;
}

/* ===== RESPONZÍV DESIGN ===== */
@media (max-width: 768px) {
    .calendar-controls {
        flex-direction: column;
        gap: 1rem;
    }
    
    .calendar-current-month {
        min-width: 180px;
    }
    
    .calendar-day {
        padding: 0.5rem;
        min-height: 60px;
    }
    
    .day-number {
        font-size: 1rem;
    }
    
    .day-events-count {
        font-size: 0.7rem;
    }
    
    .calendar-events {
        padding: 1.5rem;
    }
    
    .event-header {
        flex-direction: column;
        align-items: flex-start;
        gap: 0.5rem;
    }
    
    .event-category {
        align-self: flex-start;
    }
}

@media (max-width: 480px) {
    .calendar-header h2 {
        font-size: 2rem;
    }
    
    .calendar-container {
        padding: 0 1rem;
    }
    
    .calendar-day {
        padding: 0.25rem;
        min-height: 50px;
    }
    
    .day-number {
        font-size: 0.9rem;
    }
    
    .weekday {
        padding: 0.5rem;
        font-size: 0.8rem;
    }
}

/* ===== ANIMÁCIÓK ===== */
@keyframes fadeInUp {
    from {
        opacity: 0;
        transform: translateY(30px);
    }
    to {
        opacity: 1;
        transform: translateY(0);
    }
}

.calendar-section {
    animation: fadeInUp 0.8s ease-out;
}

.calendar-day {
    animation: fadeInUp 0.6s ease-out;
}

.calendar-day:nth-child(1) { animation-delay: 0.1s; }
.calendar-day:nth-child(2) { animation-delay: 0.15s; }
.calendar-day:nth-child(3) { animation-delay: 0.2s; }
.calendar-day:nth-child(4) { animation-delay: 0.25s; }
.calendar-day:nth-child(5) { animation-delay: 0.3s; }
.calendar-day:nth-child(6) { animation-delay: 0.35s; }
.calendar-day:nth-child(7) { animation-delay: 0.4s; }

/* ===== DARK MODE TÁMOGATÁS ===== */
[data-theme="dark"] .calendar-section {
    background: linear-gradient(135deg, var(--gray-100) 0%, var(--gray-50) 100%);
}

[data-theme="dark"] .calendar-grid,
[data-theme="dark"] .calendar-events,
[data-theme="dark"] .calendar-current-month {
    background: var(--gray-100);
    border-color: var(--gray-200);
}

[data-theme="dark"] .calendar-day.other-month {
    background: var(--gray-50);
}

[data-theme="dark"] .event-item {
    background: var(--gray-50);
    border-color: var(--gray-200);
}

/**
 * MyTiszaföldvár - Intézmények Oldal Stílusok
 * Institutions Page Styles
 */

/* ===== KERESÉS SZEKCIÓ ===== */
.search-section {
    padding: 2rem 0;
    background: linear-gradient(135deg, var(--light-background) 0%, var(--background-color) 100%);
}

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

.search-header {
    margin-bottom: 2rem;
}

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

.search-header p {
    font-size: 1.1rem;
    color: var(--light-text);
    max-width: 600px;
    margin: 0 auto;
    line-height: 1.6;
}

.search-form {
    display: flex;
    justify-content: center;
    gap: 1rem;
    margin-bottom: 2rem;
    flex-wrap: wrap;
}

.search-input {
    padding: 1rem 1.5rem;
    border: 2px solid var(--border-color);
    border-radius: 25px;
    font-size: 1rem;
    min-width: 300px;
    transition: var(--transition);
    font-family: 'Nunito', sans-serif;
    background: var(--input-background);
    color: var(--text-color);
}

.search-input:focus {
    outline: none;
    border-color: var(--primary-color);
    box-shadow: 0 0 0 3px rgba(244, 208, 63, 0.1);
}

.search-btn {
    background: var(--primary-color);
    color: white;
    padding: 1rem 2rem;
    border: none;
    border-radius: 25px;
    font-size: 1rem;
    font-weight: 600;
    cursor: pointer;
    transition: var(--transition);
    font-family: 'Nunito', sans-serif;
}

.search-btn:hover {
    background: var(--primary-light);
    transform: translateY(-2px);
    box-shadow: 0 10px 25px rgba(244, 208, 63, 0.3);
}

/* ===== KATEGÓRIA KÁRTYÁK ===== */
.categories-section {
    padding: 4rem 0;
    background: var(--card-background);
}

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

.categories-header {
    text-align: center;
    margin-bottom: 3rem;
}

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

.categories-header p {
    font-size: 1.1rem;
    color: var(--light-text);
    max-width: 600px;
    margin: 0 auto;
    line-height: 1.6;
}

.categories-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(350px, 1fr));
    gap: 2rem;
    margin-bottom: 3rem;
}

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

.category-card:hover {
    transform: translateY(-10px);
    box-shadow: 0 20px 40px rgba(0, 0, 0, 0.15);
    border-color: var(--primary-color);
}

.category-header {
    padding: 2rem;
    position: relative;
    overflow: hidden;
    display: flex;
    align-items: center;
    gap: 1rem;
}

.category-header::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: linear-gradient(135deg, var(--category-color) 0%, var(--category-color-dark) 100%);
    z-index: 1;
}

.category-icon {
    position: relative;
    z-index: 2;
    width: 80px;
    height: 80px;
    background: rgba(255, 255, 255, 0.2);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    margin: 0 auto;
    backdrop-filter: blur(10px);
    flex-shrink: 0;
}

.category-icon i {
    font-size: 2.5rem;
    color: white;
}

.category-title {
    position: relative;
    z-index: 2;
    font-size: 1.8rem;
    font-weight: 700;
    color: white;
    margin: 0;
    text-align: center;
    flex: 1;
}

.category-subtitle {
    position: relative;
    z-index: 2;
    font-size: 1rem;
    color: rgba(255, 255, 255, 0.9);
    line-height: 1.5;
}

.category-content {
    padding: 2rem;
}

.category-description {
    color: var(--light-text);
    line-height: 1.6;
    margin-bottom: 1.5rem;
    text-align: center;
}

.category-stats {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 1rem;
    margin-bottom: 2rem;
}

.stat-item {
    text-align: center;
    padding: 1rem;
    background: var(--light-background);
    border-radius: 12px;
    border: 1px solid var(--border-color);
}

.stat-number {
    font-size: 1.5rem;
    font-weight: 700;
    color: var(--text-color);
    margin-bottom: 0.25rem;
}

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

.category-actions {
    display: flex;
    gap: 1rem;
}

.category-btn {
    flex: 1;
    padding: 0.75rem 1rem;
    border-radius: 12px;
    text-align: center;
    text-decoration: none;
    font-weight: 600;
    transition: all 0.3s ease;
    font-size: 0.9rem;
}

.category-btn-primary {
    background: var(--category-color);
    color: white;
}

.category-btn-primary:hover {
    background: var(--category-color-dark);
    transform: translateY(-2px);
}

.category-btn-secondary {
    background: var(--light-background);
    color: var(--text-color);
    border: 1px solid var(--border-color);
}

.category-btn-secondary:hover {
    background: var(--hover-background);
    border-color: var(--primary-color);
}

/* ===== KATEGÓRIA SZÍNEK ===== */
.category-card.education {
    --category-color: #10b981;
    --category-color-dark: #059669;
}

.category-card.healthcare {
    --category-color: #ef4444;
    --category-color-dark: #dc2626;
}

.category-card.public-admin {
    --category-color: #3b82f6;
    --category-color-dark: #2563eb;
}

/* ===== INTÉZMÉNY LISTA ===== */
.institutions-list {
    padding: 2rem 0;
    background: var(--light-background);
}

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

.institutions-header {
    text-align: center;
    margin-bottom: 2rem;
}

.institutions-header h3 {
    font-size: 2rem;
    color: var(--text-color);
    margin-bottom: 1rem;
    font-weight: 600;
    font-family: 'Nunito', sans-serif;
}

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

.institution-item {
    background: var(--card-background);
    padding: 1.5rem;
    border-radius: 12px;
    box-shadow: var(--shadow);
    border: 1px solid var(--border-color);
    transition: var(--transition);
}

.institution-item:hover {
    transform: translateY(-3px);
    box-shadow: 0 8px 25px rgba(0, 0, 0, 0.12);
    border-color: var(--primary-color);
}

.institution-name {
    font-size: 1.2rem;
    font-weight: 600;
    color: var(--text-color);
    margin-bottom: 0.5rem;
    font-family: 'Nunito', sans-serif;
}

.institution-type {
    font-size: 0.9rem;
    color: var(--light-text);
    margin-bottom: 1rem;
    padding: 0.25rem 0.75rem;
    background: var(--light-background);
    border-radius: 15px;
    display: inline-block;
}

.institution-details {
    margin-bottom: 1rem;
}

.institution-detail {
    display: flex;
    align-items: center;
    gap: 0.5rem;
    margin-bottom: 0.5rem;
    color: var(--light-text);
    font-size: 0.9rem;
}

.institution-detail i {
    color: var(--primary-color);
    width: 16px;
}

/* ===== RESPONZÍV DESIGN ===== */
@media (max-width: 768px) {
    .search-form {
        flex-direction: column;
        align-items: center;
    }
    
    .search-input {
        min-width: 100%;
        max-width: 400px;
    }
    
    .categories-grid {
        grid-template-columns: 1fr;
    }
    
    .institutions-grid {
        grid-template-columns: 1fr;
    }
    
    .category-stats {
        grid-template-columns: 1fr;
    }
    
    .category-actions {
        flex-direction: column;
    }
}

@media (max-width: 480px) {
    .search-header h2,
    .categories-header h2 {
        font-size: 2rem;
    }
    
    .category-card,
    .institution-item {
        margin: 0 1rem;
    }
    
    .category-header {
        padding: 1.5rem;
    }
    
    .category-content {
        padding: 1.5rem;
    }
}

/* ===== ANIMÁCIÓK ===== */
@keyframes fadeInUp {
    from {
        opacity: 0;
        transform: translateY(30px);
    }
    to {
        opacity: 1;
        transform: translateY(0);
    }
}

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

.category-card:nth-child(2) { animation-delay: 0.1s; }
.category-card:nth-child(3) { animation-delay: 0.2s; }

/* ===== BETÖLTÉSI ANIMÁCIÓ ===== */
.loading-skeleton {
    background: linear-gradient(90deg, var(--light-background) 25%, var(--border-color) 50%, var(--light-background) 75%);
    background-size: 200% 100%;
    animation: loading 1.5s infinite;
}

@keyframes loading {
    0% { background-position: 200% 0; }
    100% { background-position: -200% 0; }
}

.skeleton-card {
    height: 400px;
    border-radius: 20px;
    margin-bottom: 2rem;
}

.skeleton-text {
    height: 1rem;
    margin-bottom: 0.5rem;
    border-radius: 4px;
}

.skeleton-text:last-child {
    width: 60%;
}

/* ===== DARK MODE TÁMOGATÁS ===== */
[data-theme="dark"] .search-section {
    background: linear-gradient(135deg, var(--gray-100) 0%, var(--gray-50) 100%);
}

[data-theme="dark"] .categories-section {
    background: var(--gray-100);
}

[data-theme="dark"] .institutions-list {
    background: var(--gray-50);
}

[data-theme="dark"] .category-card {
    background: var(--gray-100);
    border-color: var(--gray-200);
}

[data-theme="dark"] .institution-item {
    background: var(--gray-100);
    border-color: var(--gray-200);
}

[data-theme="dark"] .stat-item {
    background: var(--gray-50);
    border-color: var(--gray-200);
}

[data-theme="dark"] .institution-type {
    background: var(--gray-50);
    border-color: var(--gray-200);
}

[data-theme="dark"] .loading-skeleton {
    background: linear-gradient(90deg, var(--gray-100) 25%, var(--gray-200) 50%, var(--gray-100) 75%);
}

/* ===== HELYI GAZDASÁG OLDAL STÍLUSAI ===== */

/* Vállalkozói történetek szekció */
.stories-section {
    padding: 4rem 0;
    background: var(--light-background);
}

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

.stories-title {
    font-size: 2.5rem;
    font-weight: 700;
    color: var(--text-primary);
    text-align: center;
    margin-bottom: 1rem;
    position: relative;
}

.stories-title::after {
    content: '';
    position: absolute;
    bottom: -0.5rem;
    left: 50%;
    transform: translateX(-50%);
    width: 80px;
    height: 4px;
    background: linear-gradient(90deg, var(--primary-color), var(--secondary-color));
    border-radius: 2px;
}

.stories-subtitle {
    font-size: 1.125rem;
    color: var(--text-secondary);
    text-align: center;
    margin-bottom: 3rem;
    max-width: 600px;
    margin-left: auto;
    margin-right: auto;
}

.stories-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(350px, 1fr));
    gap: 2rem;
    margin-top: 3rem;
}

/* Story card stílusok a components.css-ben vannak definiálva */

/* Bepillantás a kulisszák mögé szekció */
.insights-section {
    padding: 4rem 0;
    background: var(--white);
}

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

.insights-title {
    font-size: 2.5rem;
    font-weight: 700;
    color: var(--text-primary);
    text-align: center;
    margin-bottom: 3rem;
    position: relative;
}

.insights-title::after {
    content: '';
    position: absolute;
    bottom: -0.5rem;
    left: 50%;
    transform: translateX(-50%);
    width: 80px;
    height: 4px;
    background: linear-gradient(90deg, var(--primary-color), var(--secondary-color));
    border-radius: 2px;
}

.insights-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(350px, 1fr));
    gap: 2rem;
}

/* Insight card stílusok a components.css-ben vannak definiálva */

/* Csatlakozz a helyi gazdasági közösséghez szekció */
.join-section {
    padding: 4rem 0;
    background: linear-gradient(135deg, var(--primary-color) 0%, var(--secondary-color) 100%);
    position: relative;
    overflow: hidden;
}

.join-section::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: url('data:image/svg+xml,<svg xmlns="https://www.w3.org/2000/svg" viewBox="0 0 100 100"><defs><pattern id="grain" width="100" height="100" patternUnits="userSpaceOnUse"><circle cx="25" cy="25" r="1" fill="rgba(255,255,255,0.1)"/><circle cx="75" cy="75" r="1" fill="rgba(255,255,255,0.1)"/><circle cx="50" cy="10" r="0.5" fill="rgba(255,255,255,0.05)"/><circle cx="10" cy="60" r="0.5" fill="rgba(255,255,255,0.05)"/><circle cx="90" cy="40" r="0.5" fill="rgba(255,255,255,0.05)"/></pattern></defs><rect width="100" height="100" fill="url(%23grain)"/></svg>');
    opacity: 0.3;
}

.join-container {
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 2rem;
    position: relative;
    z-index: 1;
}

.join-content {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 4rem;
    align-items: center;
}

.join-text h2 {
    font-size: 2.5rem;
    font-weight: 700;
    color: var(--white);
    margin-bottom: 1.5rem;
    line-height: 1.2;
}

.join-text p {
    font-size: 1.125rem;
    color: rgba(255, 255, 255, 0.9);
    line-height: 1.6;
    margin-bottom: 2rem;
}

.join-text .btn {
    background: var(--white);
    color: var(--primary-color);
    border: 2px solid var(--white);
}

.join-text .btn:hover {
    background: transparent;
    color: var(--white);
    border-color: var(--white);
}

.join-image {
    position: relative;
}

.join-image-img {
    width: 100%;
    height: 400px;
    object-fit: cover;
    border-radius: 16px;
    box-shadow: 0 20px 60px rgba(0, 0, 0, 0.3);
}

/* Régóta itt vállalkozók szekció */
.established-section {
    padding: 4rem 0;
    background: var(--light-background);
}

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

.established-title {
    font-size: 2.5rem;
    font-weight: 700;
    color: var(--text-primary);
    text-align: center;
    margin-bottom: 1rem;
    position: relative;
}

.established-title::after {
    content: '';
    position: absolute;
    bottom: -0.5rem;
    left: 50%;
    transform: translateX(-50%);
    width: 80px;
    height: 4px;
    background: linear-gradient(90deg, var(--primary-color), var(--secondary-color));
    border-radius: 2px;
}

.established-subtitle {
    font-size: 1.125rem;
    color: var(--text-secondary);
    text-align: center;
    margin-bottom: 3rem;
    max-width: 700px;
    margin-left: auto;
    margin-right: auto;
}

.established-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(350px, 1fr));
    gap: 2rem;
    margin-top: 3rem;
}

/* Established card stílusok a components.css-ben vannak definiálva */

/* Responsive design */
@media (max-width: 768px) {
    .stories-section,
    .insights-section,
    .join-section,
    .established-section {
        padding: 3rem 0;
    }
    
    .stories-container,
    .insights-container,
    .join-container,
    .established-container {
        padding: 0 1rem;
    }
    
    .stories-title,
    .insights-title,
    .established-title {
        font-size: 2rem;
    }
    
    .join-text h2 {
        font-size: 2rem;
    }
    
    .stories-grid,
    .insights-grid,
    .established-grid {
        grid-template-columns: 1fr;
        gap: 1.5rem;
    }
    
    .join-content {
        grid-template-columns: 1fr;
        gap: 2rem;
        text-align: center;
    }
    
    .join-image-img {
        height: 300px;
    }
    
    /* Kártya stílusok a components.css-ben vannak definiálva */
}

@media (max-width: 480px) {
    .stories-title,
    .insights-title,
    .established-title {
        font-size: 1.75rem;
    }
    
    .join-text h2 {
        font-size: 1.75rem;
    }
    
    .stories-subtitle,
    .established-subtitle {
        font-size: 1rem;
    }
    
    .join-text p {
        font-size: 1rem;
    }
    
    /* Kártya tartalom stílusok a components.css-ben vannak definiálva */
    
    .join-image-img {
        height: 250px;
    }
}

/* Dark mode támogatás */
[data-theme="dark"] .stories-section,
[data-theme="dark"] .established-section {
    background: var(--gray-100);
}

[data-theme="dark"] .insights-section {
    background: var(--gray-50);
}

/* Dark mode kártya stílusok a components.css-ben vannak definiálva */

/* Animációk a components.css-ben vannak definiálva */

/* ========================================
   VÁLLALKOZÁSOKRÓL SZÓLÓ HÍREK SZEKCIÓ
   ======================================== */

.news-section {
    padding: 80px 0;
    background: linear-gradient(135deg, var(--light-background) 0%, var(--card-background) 100%);
    position: relative;
    overflow: hidden;
    border: 2px solid var(--border-color);
    border-radius: 16px;
    margin: 2rem 0;
}

[data-theme="dark"] .news-section {
    background: linear-gradient(135deg, var(--background-color) 0%, var(--light-background) 100%);
    border-color: var(--border-color);
}

.news-section::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    height: 1px;
    background: linear-gradient(90deg, transparent, var(--primary-500), transparent);
}

.news-container {
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 20px;
    position: relative;
    z-index: 2;
}

.news-title {
    font-size: 2.5rem;
    font-weight: 700;
    color: var(--gray-900);
    text-align: center;
    margin-bottom: 16px;
    position: relative;
}

.news-title::after {
    content: '';
    position: absolute;
    bottom: -12px;
    left: 50%;
    transform: translateX(-50%);
    width: 60px;
    height: 4px;
    background: linear-gradient(90deg, var(--primary-500), var(--secondary-500));
    border-radius: 2px;
}

.news-subtitle {
    font-size: 1.125rem;
    color: var(--gray-600);
    text-align: center;
    margin-bottom: 60px;
    max-width: 600px;
    margin-left: auto;
    margin-right: auto;
    line-height: 1.6;
}

.news-placeholder {
    background: var(--card-background);
    border-radius: 16px;
    padding: 80px 40px;
    text-align: center;
    box-shadow: var(--shadow);
    border: 2px solid var(--border-color);
    position: relative;
    overflow: hidden;
    transition: all 0.3s ease;
}

.news-placeholder::before {
    content: '';
    position: absolute;
    top: -50%;
    left: -50%;
    width: 200%;
    height: 200%;
    background: linear-gradient(45deg, transparent, rgba(59, 130, 246, 0.05), transparent);
    transform: rotate(45deg);
    transition: all 0.6s ease;
    opacity: 0;
}

.news-placeholder:hover::before {
    opacity: 1;
    animation: shimmer 2s infinite;
}

.news-placeholder:hover {
    transform: translateY(-5px);
    box-shadow: 0 20px 40px rgba(0, 0, 0, 0.15);
    border-color: var(--primary-color);
    border-width: 3px;
}

.news-placeholder-content h3 {
    font-size: 1.5rem;
    font-weight: 600;
    color: var(--text-color);
    margin-bottom: 16px;
}

.news-placeholder-content p {
    font-size: 1rem;
    color: var(--light-text);
    margin-bottom: 32px;
    line-height: 1.6;
    max-width: 500px;
    margin-left: auto;
    margin-right: auto;
}

.news-placeholder-content .btn {
    display: inline-flex;
    align-items: center;
    gap: 0.5rem;
    background: linear-gradient(135deg, var(--primary-color), var(--primary-dark));
    color: white;
    padding: 0.75rem 1.5rem;
    border-radius: 50px;
    font-weight: 600;
    font-size: 0.875rem;
    text-decoration: none;
    transition: all 0.3s ease;
    animation: bounce 2s infinite;
    box-shadow: 0 4px 15px rgba(59, 130, 246, 0.3);
}

.news-placeholder-content .btn:hover {
    transform: translateY(-3px);
    box-shadow: 0 8px 25px rgba(59, 130, 246, 0.4);
    background: linear-gradient(135deg, var(--primary-dark), var(--primary-color));
    animation: none;
}

.news-placeholder-content .btn i {
    font-size: 1.125rem;
}

/* Responsive design */
@media (max-width: 768px) {
    .news-section {
        padding: 60px 0;
    }
    
    .news-title {
        font-size: 2rem;
    }
    
    .news-subtitle {
        font-size: 1rem;
        margin-bottom: 40px;
    }
    
    .news-placeholder {
        padding: 60px 20px;
    }
    
    .news-placeholder-content h3 {
        font-size: 1.25rem;
    }
    
    .news-placeholder-content p {
        font-size: 0.9rem;
    }
}

@media (max-width: 480px) {
    .news-section {
        padding: 40px 0;
    }
    
    .news-title {
        font-size: 1.75rem;
    }
    
    .news-placeholder {
        padding: 40px 16px;
    }
}

/* Dark theme support - már definiálva fent */

/* ===== TURIZMUS OLDAL STÍLUSOK ===== */

/* Kártyák szekció */
.cards-section {
    padding: 4rem 0;
    background-color: var(--background-color);
}

.cards-section:nth-child(even) {
    background-color: var(--light-background);
}

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

.section-title {
    font-size: 2.5rem;
    font-weight: 700;
    color: var(--text-color);
    margin-bottom: 1rem;
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 1rem;
}

.section-title i {
    color: var(--primary-color);
    font-size: 2.25rem;
}

.section-subtitle {
    font-size: 1.125rem;
    color: var(--light-text);
    max-width: 600px;
    margin: 0 auto;
    line-height: 1.6;
}

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

/* PROFI CAROUSEL STRUKTÚRA */
.cards-carousel {
    position: relative;
    width: 100%;
    max-width: 1400px;
    margin: 0 auto;
    padding: 0 1rem;
    display: flex;
    flex-direction: column;
    align-items: center;
}

.cards-carousel-nav-container {
    display: flex;
    align-items: center;
    gap: 1rem;
    width: 100%;
    margin-bottom: 2rem;
}

.cards-carousel-wrapper {
    position: relative;
    overflow: hidden;
    border-radius: 16px;
    flex: 1;
}

.cards-carousel-container {
    display: flex;
    transition: transform 0.4s cubic-bezier(0.25, 0.46, 0.45, 0.94);
    will-change: transform;
    gap: 0;
}

.cards-carousel-item {
    flex: 0 0 auto;
    width: 100%;
    max-width: 400px;
    min-width: 320px;
    padding: 0 1rem;
    box-sizing: border-box;
    display: flex;
    align-items: stretch;
}

.carousel-nav {
    background: var(--card-background);
    border: 2px solid var(--border-color);
    border-radius: 50%;
    width: 40px;
    height: 40px;
    display: flex;
    align-items: center;
    justify-content: center;
    cursor: pointer;
    transition: var(--transition);
    box-shadow: var(--shadow);
}

.carousel-nav:hover {
    background: var(--primary-color);
    color: white;
    transform: scale(1.1);
    box-shadow: 0 8px 25px rgba(0, 0, 0, 0.2);
}

.carousel-nav:active {
    transform: scale(0.95);
}

.carousel-nav.prev {
    margin-right: 0.5rem;
}

.carousel-nav.next {
    margin-left: 0.5rem;
}

.carousel-nav i {
    font-size: 1.25rem;
    transition: var(--transition);
}

.carousel-nav:hover i {
    transform: scale(1.1);
}

.carousel-nav.disabled {
    opacity: 0.3;
    cursor: not-allowed;
    pointer-events: none;
}

.carousel-nav.disabled:hover {
    background: var(--card-background);
    color: var(--text-color);
    transform: translateY(-50%);
}

/* Lapozó pontok és számláló */
.carousel-dots {
    display: flex;
    justify-content: center;
    align-items: center;
    gap: 0.75rem;
    margin-top: 2rem;
    padding: 0 2rem;
    width: 100%;
    order: 3;
}

.carousel-counter {
    text-align: center;
    margin-top: 1rem;
    font-size: 0.875rem;
    color: var(--light-text);
    font-weight: 500;
    width: 100%;
    order: 4;
}

.carousel-dot {
    width: 12px;
    height: 12px;
    border-radius: 50%;
    background: var(--border-color);
    cursor: pointer;
    transition: var(--transition);
    position: relative;
}

.carousel-dot:hover {
    background: var(--primary-color);
    transform: scale(1.2);
}

.carousel-dot.active {
    background: var(--primary-color);
    transform: scale(1.3);
}

.carousel-dot.active::after {
    content: '';
    position: absolute;
    top: -4px;
    left: -4px;
    right: -4px;
    bottom: -4px;
    border: 2px solid var(--primary-color);
    border-radius: 50%;
    opacity: 0.3;
}

/* Lapozó számláló */
.carousel-counter {
    text-align: center;
    margin-top: 1rem;
    font-size: 0.875rem;
    color: var(--light-text);
    font-weight: 500;
}

.carousel-counter .current {
    color: var(--primary-color);
    font-weight: 600;
}

.carousel-counter .total {
    color: var(--light-text);
}

/* Kártya stílusok */
.card {
    background-color: var(--card-background);
    border: 1px solid var(--border-color);
    border-radius: var(--border-radius);
    overflow: hidden;
    box-shadow: var(--shadow);
    transition: var(--transition);
    position: relative;
    display: flex;
    flex-direction: column;
    height: 100%;
}

.card:hover {
    transform: translateY(-8px);
    box-shadow: 0 20px 40px rgba(0, 0, 0, 0.15);
}

.card-image {
    position: relative;
    height: 200px;
    overflow: hidden;
}

.card-image img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    object-position: center;
    transition: var(--transition);
}

.card:hover .card-image img {
    transform: scale(1.05);
}

.card-overlay {
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: linear-gradient(135deg, rgba(0, 0, 0, 0.1), rgba(0, 0, 0, 0.3));
    opacity: 0;
    transition: var(--transition);
}

.card:hover .card-overlay {
    opacity: 1;
}

.card-rating {
    position: absolute;
    top: 1rem;
    right: 1rem;
    background: rgba(255, 255, 255, 0.9);
    padding: 0.5rem 0.75rem;
    border-radius: 20px;
    display: flex;
    align-items: center;
    gap: 0.25rem;
    font-weight: 600;
    color: var(--text-color);
    backdrop-filter: blur(10px);
}

.card-rating i {
    color: #fbbf24;
}

.card-content {
    padding: 1.5rem;
    display: flex;
    flex-direction: column;
    flex: 1;
}

.card-title {
    font-size: 1.25rem;
    font-weight: 600;
    color: var(--text-color);
    margin-bottom: 0.75rem;
    line-height: 1.3;
}

.card-description {
    font-size: 0.95rem;
    color: var(--light-text);
    line-height: 1.6;
    margin-bottom: 1rem;
    flex: 1;
}

.card-info {
    display: flex;
    flex-direction: column;
    gap: 0.5rem;
    margin-bottom: 1rem;
}

.card-info-item {
    display: flex;
    align-items: center;
    gap: 0.5rem;
    font-size: 0.875rem;
    color: var(--light-text);
}

.card-info-item i {
    color: var(--primary-color);
    width: 16px;
    text-align: center;
}

.card-tags {
    display: flex;
    flex-wrap: wrap;
    gap: 0.5rem;
}

.tag {
    background-color: var(--primary-color);
    color: white;
    padding: 0.25rem 0.75rem;
    border-radius: 15px;
    font-size: 0.75rem;
    font-weight: 500;
    text-transform: uppercase;
    letter-spacing: 0.5px;
}

/* Text section gombok */
.text-section-buttons {
    display: flex;
    gap: 1rem;
    margin-top: 1.5rem;
    flex-wrap: wrap;
}

.text-section-buttons .btn {
    flex: 1;
    min-width: 150px;
    text-align: center;
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 0.5rem;
}

/* Reszponzív design */
@media (max-width: 1400px) {
    .cards-carousel {
        padding: 0 4rem;
    }
    
    .cards-carousel-item {
        flex: 0 0 340px;
        min-width: 340px;
        display: flex;
        align-items: stretch;
    }
}

@media (max-width: 1200px) {
    .cards-carousel {
        padding: 0 0.5rem;
    }
    
    .cards-carousel-wrapper {
        margin: 0 1.5rem;
    }
    
    .cards-carousel-item {
        max-width: 380px;
        min-width: 300px;
    }
    
    .carousel-nav {
        width: 38px;
        height: 38px;
    }
}

@media (max-width: 1024px) {
    .cards-grid {
        grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
        gap: 1.5rem;
        padding: 0 1.5rem;
    }
    
    .cards-carousel {
        padding: 0 0.25rem;
    }
    
    .cards-carousel-wrapper {
        margin: 0 1rem;
    }
    
    .cards-carousel-item {
        max-width: 350px;
        min-width: 280px;
    }
    
    .carousel-nav {
        width: 36px;
        height: 36px;
    }
    
    .section-title {
        font-size: 2.25rem;
    }
    
    .section-title i {
        font-size: 2rem;
    }
}

@media (max-width: 768px) {
    .cards-section {
        padding: 3rem 0;
    }
    
    .section-header {
        margin-bottom: 2rem;
    }
    
    .section-title {
        font-size: 2rem;
        flex-direction: column;
        gap: 0.5rem;
    }
    
    .section-title i {
        font-size: 1.75rem;
    }
    
    .section-subtitle {
        font-size: 1rem;
    }
    
    .cards-grid {
        grid-template-columns: 1fr;
        gap: 1.5rem;
        padding: 0 1rem;
    }
    
    .cards-carousel {
        padding: 0;
    }
    
    .cards-carousel-wrapper {
        margin: 0 0.5rem;
    }
    
    .cards-carousel-item {
        max-width: 100%;
        min-width: 280px;
        padding: 0 0.5rem;
    }
    
    .carousel-nav {
        width: 34px;
        height: 34px;
    }
    
    .carousel-dots {
        gap: 0.5rem;
        margin-top: 1.5rem;
    }
    
    .carousel-dot {
        width: 10px;
        height: 10px;
    }
    
    .card-image {
        height: 180px;
    }
    
    .card-content {
        padding: 1.25rem;
    }
    
    .card-title {
        font-size: 1.125rem;
    }
    
    .card-description {
        font-size: 0.9rem;
    }
    
    .text-section-buttons {
        flex-direction: column;
        gap: 0.75rem;
    }
    
    .text-section-buttons .btn {
        width: 100%;
        min-width: auto;
    }
    
    .cards-section .card,
    .cards-carousel .card {
        min-height: 450px;
    }
}

@media (max-width: 480px) {
    .cards-section {
        padding: 2rem 0;
    }
    
    .section-title {
        font-size: 1.75rem;
    }
    
    .section-title i {
        font-size: 1.5rem;
    }
    
    .section-subtitle {
        font-size: 0.95rem;
    }
    
    .cards-grid {
        padding: 0 0.75rem;
    }
    
    .cards-carousel {
        padding: 0 1rem;
        overflow: hidden;
        position: relative;
    }
    
    .cards-carousel-container {
        touch-action: pan-y; /* Csak függőleges scroll engedélyezése */
        scroll-snap-type: x mandatory;
        scroll-behavior: smooth;
    }
    
    .cards-carousel-item {
        flex: 0 0 280px;
        min-width: 280px;
        max-width: 280px;
        width: 280px;
        display: flex;
        align-items: stretch;
        scroll-snap-align: start;
        scroll-snap-stop: always;
    }
    
    .carousel-nav {
        width: 32px;
        height: 32px;
        touch-action: manipulation; /* Gyorsabb touch válasz */
    }
    
    .carousel-nav i {
        font-size: 1.1rem;
    }
    
    .carousel-dots {
        gap: 0.5rem;
        margin-top: 1.5rem;
        touch-action: manipulation;
    }
    
    .carousel-dot {
        width: 10px;
        height: 10px;
        touch-action: manipulation;
    }
    
    .carousel-counter {
        font-size: 0.85rem;
        margin-top: 1rem;
    }
    
    .card-image {
        height: 160px;
    }
    
    .card-content {
        padding: 1rem;
    }
    
    .card-title {
        font-size: 1rem;
    }
    
    .card-description {
        font-size: 0.875rem;
    }
    
    .card-info-item {
        font-size: 0.8rem;
    }
    
    .tag {
        font-size: 0.7rem;
        padding: 0.2rem 0.6rem;
    }
    
    .cards-section .card,
    .cards-carousel .card {
        min-height: 400px;
    }
}

/* Extra kis képernyők (320px-360px) */
@media (max-width: 360px) {
    .cards-carousel {
        padding: 0 0.75rem;
    }
    
    .cards-carousel-item {
        flex: 0 0 260px;
        min-width: 260px;
        max-width: 260px;
        width: 260px;
    }
    
    .carousel-nav {
        width: 30px;
        height: 30px;
    }
    
    .carousel-nav i {
        font-size: 1rem;
    }
    
    .carousel-dots {
        gap: 0.375rem;
        margin-top: 1rem;
    }
    
    .carousel-dot {
        width: 8px;
        height: 8px;
    }
    
    .carousel-counter {
        font-size: 0.8rem;
        margin-top: 0.75rem;
    }
    
    .cards-section .card,
    .cards-carousel .card {
        min-height: 380px;
    }
}

/* Dark mode stílusok */
[data-theme="dark"] .cards-section {
    background-color: var(--background-color);
}

[data-theme="dark"] .cards-section:nth-child(even) {
    background-color: var(--light-background);
}

[data-theme="dark"] .card {
    background-color: var(--card-background);
    border-color: var(--border-color);
}

[data-theme="dark"] .card-title {
    color: var(--text-color);
}

[data-theme="dark"] .card-description {
    color: var(--light-text);
}

[data-theme="dark"] .card-info-item {
    color: var(--light-text);
}

[data-theme="dark"] .card-rating {
    background: rgba(255, 255, 255, 0.1);
    color: var(--text-color);
    backdrop-filter: blur(10px);
}

[data-theme="dark"] .card-overlay {
    background: linear-gradient(135deg, rgba(0, 0, 0, 0.2), rgba(0, 0, 0, 0.5));
}

/* Dark mode lapozó stílusok */
[data-theme="dark"] .carousel-nav {
    background: var(--card-background);
    border-color: var(--border-color);
    color: var(--text-color);
}

[data-theme="dark"] .carousel-nav:hover {
    background: var(--primary-color);
    color: white;
}

[data-theme="dark"] .carousel-dot {
    background: var(--border-color);
}

[data-theme="dark"] .carousel-dot:hover {
    background: var(--primary-color);
}

[data-theme="dark"] .carousel-dot.active {
    background: var(--primary-color);
}

[data-theme="dark"] .carousel-dot.active::after {
    border-color: var(--primary-color);
}

[data-theme="dark"] .carousel-counter {
    color: var(--light-text);
}

[data-theme="dark"] .carousel-counter .current {
    color: var(--primary-color);
}

[data-theme="dark"] .carousel-counter .total {
    color: var(--light-text);
}

/* Azonos magasságú kártyák biztosítása */
.cards-section .card,
.cards-carousel .card {
    min-height: 500px;
}

/* ÁLLÁSHIRDETÉSEK KÁRTYÁK */
.jobs-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(400px, 1fr));
    gap: 2rem;
    max-width: 1400px;
    margin: 0 auto;
    padding: 0 2rem;
}

.job-card {
    background-color: var(--card-background);
    border: 1px solid var(--border-color);
    border-radius: var(--border-radius);
    overflow: hidden;
    transition: all 0.3s ease;
    box-shadow: 0 2px 8px rgba(0, 0, 0, 0.1);
}

.job-card:hover {
    transform: translateY(-4px);
    box-shadow: 0 8px 25px rgba(0, 0, 0, 0.15);
}

.job-card-header {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 1rem 1.5rem;
    background-color: var(--primary-color);
    color: white;
}

.job-card-company {
    display: flex;
    align-items: center;
    gap: 0.5rem;
    font-weight: 600;
}

.job-type-badge {
    padding: 0.25rem 0.75rem;
    border-radius: 20px;
    font-size: 0.875rem;
    font-weight: 500;
    background-color: rgba(255, 255, 255, 0.2);
    color: white;
}

.job-type-badge.full-time {
    background-color: #10b981;
}

.job-type-badge.part-time {
    background-color: #f59e0b;
}

.job-type-badge.internship {
    background-color: #8b5cf6;
}

.job-type-badge.government {
    background-color: #ef4444;
}

.job-card-content {
    padding: 1.5rem;
}

.job-card-title {
    font-size: 1.25rem;
    font-weight: 600;
    color: var(--text-color);
    margin-bottom: 0.75rem;
}

.job-card-description {
    color: var(--text-secondary);
    line-height: 1.6;
    margin-bottom: 1rem;
}

.job-card-details {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(200px, 1fr));
    gap: 0.75rem;
    margin-bottom: 1.5rem;
}

.job-detail-item {
    display: flex;
    align-items: center;
    gap: 0.5rem;
    color: var(--text-secondary);
    font-size: 0.875rem;
}

.job-detail-item i {
    color: var(--primary-color);
}

.job-card-requirements,
.job-card-benefits {
    margin-bottom: 1rem;
}

.job-card-requirements h4,
.job-card-benefits h4 {
    font-size: 1rem;
    font-weight: 600;
    color: var(--text-color);
    margin-bottom: 0.5rem;
}

.job-card-requirements ul,
.job-card-benefits ul {
    list-style: none;
    padding: 0;
    margin: 0;
}

.job-card-requirements li,
.job-card-benefits li {
    padding: 0.25rem 0;
    color: var(--text-secondary);
    font-size: 0.875rem;
    position: relative;
    padding-left: 1rem;
}

.job-card-requirements li::before,
.job-card-benefits li::before {
    content: "•";
    color: var(--primary-color);
    position: absolute;
    left: 0;
}

.job-card-tags {
    display: flex;
    flex-wrap: wrap;
    gap: 0.5rem;
    margin-bottom: 1.5rem;
}

.job-tag {
    padding: 0.25rem 0.75rem;
    background-color: var(--primary-color-light);
    color: var(--primary-color);
    border-radius: 20px;
    font-size: 0.75rem;
    font-weight: 500;
}

.job-card-footer {
    border-top: 1px solid var(--border-color);
    padding-top: 1rem;
    display: flex;
    justify-content: space-between;
    align-items: center;
    flex-wrap: wrap;
    gap: 1rem;
}

.job-card-dates {
    display: flex;
    flex-direction: column;
    gap: 0.25rem;
}

.job-posted,
.job-deadline {
    font-size: 0.875rem;
    color: var(--text-secondary);
}

.job-card-actions {
    display: flex;
    gap: 0.75rem;
}

/* INGATLANHIRDETÉSEK KÁRTYÁK */
.properties-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(400px, 1fr));
    gap: 2rem;
    max-width: 1400px;
    margin: 0 auto;
    padding: 0 2rem;
}

.property-card {
    background-color: var(--card-background);
    border: 1px solid var(--border-color);
    border-radius: var(--border-radius);
    overflow: hidden;
    transition: all 0.3s ease;
    box-shadow: 0 2px 8px rgba(0, 0, 0, 0.1);
}

.property-card:hover {
    transform: translateY(-4px);
    box-shadow: 0 8px 25px rgba(0, 0, 0, 0.15);
}

.property-card-image {
    position: relative;
    height: 200px;
    background: linear-gradient(135deg, var(--primary-color-light), var(--primary-color));
    display: flex;
    align-items: center;
    justify-content: center;
    color: white;
}

.property-image-placeholder {
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 0.5rem;
    font-size: 1.5rem;
}

.property-image-placeholder span {
    font-size: 1rem;
    font-weight: 600;
}

.property-card-badges {
    position: absolute;
    top: 1rem;
    right: 1rem;
    display: flex;
    flex-direction: column;
    gap: 0.5rem;
}

.property-type-badge,
.property-operation-badge {
    padding: 0.25rem 0.75rem;
    border-radius: 20px;
    font-size: 0.875rem;
    font-weight: 500;
    background-color: rgba(255, 255, 255, 0.9);
    color: var(--text-color);
}

.property-type-badge.house {
    background-color: #3b82f6;
    color: white;
}

.property-type-badge.apartment {
    background-color: #10b981;
    color: white;
}

.property-type-badge.land {
    background-color: #f59e0b;
    color: white;
}

.property-type-badge.office {
    background-color: #8b5cf6;
    color: white;
}

.property-type-badge.commercial {
    background-color: #ef4444;
    color: white;
}

.property-type-badge.garage {
    background-color: #6b7280;
    color: white;
}

.property-operation-badge.sale {
    background-color: #10b981;
    color: white;
}

.property-operation-badge.rent {
    background-color: #3b82f6;
    color: white;
}

.property-card-content {
    padding: 1.5rem;
}

.property-card-title {
    font-size: 1.25rem;
    font-weight: 600;
    color: var(--text-color);
    margin-bottom: 0.75rem;
}

.property-card-description {
    color: var(--text-secondary);
    line-height: 1.6;
    margin-bottom: 1rem;
}

.property-card-price {
    margin-bottom: 1.5rem;
}

.property-price {
    font-size: 1.5rem;
    font-weight: 700;
    color: var(--primary-color);
}

.property-card-details {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(150px, 1fr));
    gap: 0.75rem;
    margin-bottom: 1.5rem;
}

.property-detail-item {
    display: flex;
    align-items: center;
    gap: 0.5rem;
    color: var(--text-secondary);
    font-size: 0.875rem;
}

.property-detail-item i {
    color: var(--primary-color);
}

.property-card-features {
    margin-bottom: 1rem;
}

.property-card-features h4 {
    font-size: 1rem;
    font-weight: 600;
    color: var(--text-color);
    margin-bottom: 0.5rem;
}

.property-features-list {
    display: flex;
    flex-wrap: wrap;
    gap: 0.5rem;
}

.property-feature {
    padding: 0.25rem 0.75rem;
    background-color: var(--primary-color-light);
    color: var(--primary-color);
    border-radius: 20px;
    font-size: 0.75rem;
    font-weight: 500;
}

.property-card-utilities {
    margin-bottom: 1rem;
}

.property-card-utilities h4 {
    font-size: 1rem;
    font-weight: 600;
    color: var(--text-color);
    margin-bottom: 0.5rem;
}

.property-utilities {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(150px, 1fr));
    gap: 0.5rem;
}

.utility-item {
    display: flex;
    align-items: center;
    gap: 0.5rem;
    color: var(--text-secondary);
    font-size: 0.875rem;
}

.utility-item i {
    color: var(--primary-color);
}

.property-card-tags {
    display: flex;
    flex-wrap: wrap;
    gap: 0.5rem;
    margin-bottom: 1.5rem;
}

.property-tag {
    padding: 0.25rem 0.75rem;
    background-color: var(--primary-color-light);
    color: var(--primary-color);
    border-radius: 20px;
    font-size: 0.75rem;
    font-weight: 500;
}

.property-card-footer {
    border-top: 1px solid var(--border-color);
    padding-top: 1rem;
    display: flex;
    justify-content: space-between;
    align-items: center;
    flex-wrap: wrap;
    gap: 1rem;
}

.property-card-dates {
    display: flex;
    flex-direction: column;
    gap: 0.25rem;
}

.property-posted {
    font-size: 0.875rem;
    color: var(--text-secondary);
}

.property-card-actions {
    display: flex;
    gap: 0.75rem;
    flex-wrap: wrap;
}

/* ===== MODERN KERESŐ KÁRTYA DESIGN ===== */

/* Kereső kártya - Modern Glassmorphism Design */
.search-card {
    background: linear-gradient(135deg, 
        rgba(255, 255, 255, 0.95) 0%, 
        rgba(248, 250, 252, 0.9) 100%);
    backdrop-filter: blur(25px);
    border: 1px solid rgba(255, 255, 255, 0.3);
    border-radius: 20px;
    padding: 1.25rem;
    box-shadow: 
        0 25px 80px rgba(0, 0, 0, 0.08),
        0 10px 30px rgba(0, 0, 0, 0.04),
        0 0 0 1px rgba(255, 255, 255, 0.2),
        inset 0 1px 0 rgba(255, 255, 255, 0.4);
    position: relative;
    overflow: hidden;
    transition: all 0.4s cubic-bezier(0.4, 0, 0.2, 1);
    max-width: 1200px;
    margin: 0 auto;
    transform: translateY(0);
}

.search-card::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    height: 3px;
    background: linear-gradient(90deg, var(--primary-color), var(--secondary-color));
    background-size: 200% 200%;
    animation: gradientShift 4s ease infinite;
}

/* Search card hover animáció eltávolítva */

@keyframes gradientShift {
    0% { background-position: 0% 50%; }
    50% { background-position: 100% 50%; }
    100% { background-position: 0% 50%; }
}

/* Kereső tabok - Modern Design */
.search-tabs {
    display: flex;
    gap: 0.25rem;
    margin-bottom: 1rem;
    background: linear-gradient(135deg, 
        rgba(255, 255, 255, 0.6) 0%, 
        rgba(248, 250, 252, 0.4) 100%);
    padding: 0.375rem;
    border-radius: 12px;
    backdrop-filter: blur(15px);
    border: 1px solid rgba(255, 255, 255, 0.2);
    box-shadow: 
        0 8px 25px rgba(0, 0, 0, 0.05),
        inset 0 1px 0 rgba(255, 255, 255, 0.3);
}

.search-tab {
    flex: 1;
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 0.375rem;
    padding: 0.625rem 0.875rem;
    border: none;
    border-radius: 8px;
    background: transparent;
    color: var(--light-text);
    font-size: 0.8125rem;
    font-weight: 600;
    cursor: pointer;
    transition: all 0.3s cubic-bezier(0.4, 0, 0.2, 1);
    position: relative;
    overflow: hidden;
    text-transform: uppercase;
    letter-spacing: 0.5px;
}

.search-tab::before {
    content: '';
    position: absolute;
    top: 0;
    left: -100%;
    width: 100%;
    height: 100%;
    background: linear-gradient(90deg, transparent, rgba(255, 255, 255, 0.2), transparent);
    transition: left 0.5s;
}

.search-tab:hover::before {
    left: 100%;
}

.search-tab:hover {
    background: rgba(255, 255, 255, 0.4);
    color: var(--text-color);
    /* Animáció eltávolítva */
}

.search-tab.active {
    background: linear-gradient(135deg, 
        var(--primary-color) 0%, 
        var(--primary-dark) 100%);
    color: white;
    box-shadow: 
        0 12px 30px rgba(244, 208, 63, 0.3),
        0 4px 15px rgba(244, 208, 63, 0.2);
    /* Animáció eltávolítva */
    border: 1px solid rgba(244, 208, 63, 0.3);
}

.search-tab i {
    font-size: 1rem;
}

/* Kereső form - Modern Design */
.search-form {
    display: flex;
    flex-direction: column;
    gap: 0.25rem; /* kisebb hézag a sorok és a gomb között */
}

.search-form-row {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
    gap: 0.75rem;
    margin-bottom: 0.5rem; /* megőrizzük a nagyobb hézagot a mezők között */
}

.search-form-group {
    display: flex;
    flex-direction: column;
    gap: 0.5rem;
    position: relative;
}

.search-form-group label {
    font-weight: 700;
    color: var(--text-color);
    font-size: 0.75rem;
    text-transform: uppercase;
    letter-spacing: 0.8px;
    margin-bottom: 0.25rem;
}

.search-form-group input,
.search-form-group select {
    padding: 0.75rem 1rem;
    border: 1px solid var(--border-color);
    border-radius: var(--border-radius);
    background-color: var(--card-background);
    color: var(--text-color);
    font-size: 0.875rem;
    font-weight: 500;
    transition: var(--transition);
    position: relative;
    box-shadow: var(--shadow);
    font-family: 'Nunito', sans-serif;
    cursor: pointer;
}

.search-form-group input:focus,
.search-form-group select:focus {
    outline: none;
    border-color: var(--primary-color);
    box-shadow: 
        0 0 0 4px rgba(244, 208, 63, 0.15),
        var(--shadow);
}

.search-form-group input::placeholder {
    color: var(--light-text);
    font-weight: 400;
}

.search-form-group input:hover,
.search-form-group select:hover {
    border-color: var(--primary-light);
    background-color: var(--hover-background);
}

/* Modern Checkbox Design */
.checkbox-group {
    display: grid;
    grid-template-rows: repeat(5, auto);
    gap: 0.5rem;
    margin-top: 0.25rem;
    margin-bottom: 0rem;
    justify-content: center;
    align-items: center;
    max-width: 600px;
    margin-left: auto;
    margin-right: auto;
}

.checkbox-item {
    display: flex;
    align-items: center;
    gap: 0.5rem;
    padding: 0.5rem 0.75rem;
    border: none;
    border-radius: 8px;
    cursor: pointer;
    transition: all 0.3s cubic-bezier(0.4, 0, 0.2, 1);
}

/* Checkbox hover effektus eltávolítva */

.checkbox-item input[type="checkbox"] {
    width: 20px;
    height: 20px;
    border: 2px solid var(--primary-color);
    border-radius: 6px;
    background: rgba(255, 255, 255, 0.9);
    cursor: pointer;
    transition: all 0.3s ease;
    position: relative;
}

.checkbox-item input[type="checkbox"]:checked {
    background: var(--primary-color);
    border-color: var(--primary-dark);
}

.checkbox-item input[type="checkbox"]:checked::after {
    content: '✓';
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    color: white;
    font-weight: bold;
    font-size: 14px;
}

.checkbox-item span {
    font-weight: 500;
    color: var(--text-color);
    font-size: 0.875rem;
}

/* Kereső gombok */
.search-form-actions {
    display: flex;
    gap: 0.5rem;
    justify-content: center;
    align-items: center;
    margin-top: 0rem;
    padding-top: 0rem;
    border-top: 1px solid rgba(255, 255, 255, 0.3);
}

.search-btn-primary {
    background: linear-gradient(135deg, 
        #F4D03F 0%, 
        #DAA520 100%);
    color: #1f2937;
    padding: 0.75rem 1.5rem;
    border: none;
    border-radius: 12px;
    font-size: 0.875rem;
    font-weight: 700;
    cursor: pointer;
    transition: all 0.3s cubic-bezier(0.4, 0, 0.2, 1);
    font-family: 'Nunito', sans-serif;
    display: flex;
    align-items: center;
    gap: 0.5rem;
    box-shadow: 
        0 8px 25px rgba(244, 208, 63, 0.25),
        0 4px 15px rgba(244, 208, 63, 0.15);
    text-transform: uppercase;
    letter-spacing: 0.5px;
}

.search-btn-primary:hover {
    background: linear-gradient(135deg, 
        #F4D03F 0%, 
        #DAA520 100%);
    transform: translateY(-2px);
    box-shadow: 
        0 12px 35px rgba(244, 208, 63, 0.4),
        0 6px 20px rgba(244, 208, 63, 0.25);
}

.search-btn-secondary {
    background: linear-gradient(135deg, 
        #F4D03F 0%, 
        #DAA520 100%);
    color: #1f2937;
    border: 2px solid #F4D03F;
    padding: 0.75rem 1.5rem;
    border-radius: 12px;
    font-size: 0.875rem;
    font-weight: 700;
    cursor: pointer;
    transition: all 0.3s cubic-bezier(0.4, 0, 0.2, 1);
    font-family: 'Nunito', sans-serif;
    display: flex;
    align-items: center;
    gap: 0.5rem;
    box-shadow: 
        0 8px 25px rgba(244, 208, 63, 0.25),
        0 4px 15px rgba(244, 208, 63, 0.15);
    text-transform: uppercase;
    letter-spacing: 0.5px;
    backdrop-filter: blur(15px);
}

.search-btn-secondary:hover {
    background: linear-gradient(135deg, 
        #F4D03F 0%, 
        #DAA520 100%);
    transform: translateY(-2px);
    box-shadow: 
        0 12px 35px rgba(244, 208, 63, 0.4),
        0 6px 20px rgba(244, 208, 63, 0.25);
    border-color: #F4D03F;
}

/* Részletes keresés */
.search-advanced {
    padding-top: 0.25rem;
    margin-top: 0.25rem;
    position: relative;
}

/* Rendezési lehetőségek és találatok száma */
.sorting-options {
    display: flex;
    justify-content: space-between;
    align-items: center;
    margin-bottom: 1.5rem;
    gap: 1rem;
}

.sorting-controls {
    display: flex;
    align-items: center;
    gap: 0.75rem;
}

.sorting-controls label {
    font-weight: 700;
    color: var(--text-color);
    font-size: 0.875rem;
    font-family: 'Nunito', sans-serif;
}

.sorting-controls select {
    padding: 0.75rem 1rem;
    border: 1px solid var(--border-color);
    border-radius: var(--border-radius);
    background-color: var(--card-background);
    color: var(--text-color);
    font-size: 0.875rem;
    font-weight: 500;
    font-family: 'Nunito', sans-serif;
    cursor: pointer;
    transition: var(--transition);
    box-shadow: var(--shadow);
}

.sorting-controls select:focus {
    outline: none;
    border-color: var(--primary-color);
    box-shadow: 
        0 0 0 4px rgba(244, 208, 63, 0.15),
        var(--shadow);
}

/* Modern keresési eredmények számláló */
.search-results-count {
    background: linear-gradient(135deg, 
        var(--primary-color) 0%, 
        var(--primary-dark) 100%);
    color: white;
    padding: 0.75rem 1.25rem;
    border-radius: 12px;
    font-size: 0.875rem;
    font-weight: 700;
    display: flex;
    align-items: center;
    gap: 0.5rem;
    box-shadow: 
        0 8px 25px rgba(244, 208, 63, 0.25),
        0 4px 15px rgba(244, 208, 63, 0.15);
    text-transform: uppercase;
    letter-spacing: 0.5px;
    font-family: 'Nunito', sans-serif;
    /* Animáció eltávolítva */
}

.search-results-count i {
    font-size: 1.25rem;
    opacity: 0.9;
}

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

/* Modern nincs találat üzenet */
.no-results {
    text-align: center;
    padding: 3rem 2rem;
    background: linear-gradient(135deg, 
        rgba(255, 255, 255, 0.95) 0%, 
        rgba(248, 250, 252, 0.9) 100%);
    backdrop-filter: blur(25px);
    border-radius: 20px;
    border: 1px solid rgba(255, 255, 255, 0.3);
    box-shadow: 
        0 25px 80px rgba(0, 0, 0, 0.08),
        0 10px 30px rgba(0, 0, 0, 0.04),
        0 0 0 1px rgba(255, 255, 255, 0.2),
        inset 0 1px 0 rgba(255, 255, 255, 0.4);
    margin: 2rem 0;
}

.no-results i {
    font-size: 3.5rem;
    color: var(--primary-color);
    margin-bottom: 1.5rem;
    opacity: 0.8;
    /* Animáció eltávolítva */
}

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

.no-results h3 {
    font-size: 1.5rem;
    margin-bottom: 1rem;
    color: var(--text-color);
    font-weight: 700;
    font-family: 'Nunito', sans-serif;
}

.no-results p {
    font-size: 1rem;
    line-height: 1.6;
    color: var(--light-text);
    font-weight: 500;
    font-family: 'Nunito', sans-serif;
}

.no-results-suggestions {
    text-align: left;
    max-width: 400px;
    margin: 2rem auto 0;
    padding: 1.5rem;
    background: linear-gradient(135deg, 
        rgba(255, 255, 255, 0.6) 0%, 
        rgba(248, 250, 252, 0.4) 100%);
    border-radius: 12px;
    border: 1px solid rgba(255, 255, 255, 0.2);
    backdrop-filter: blur(10px);
}

.no-results-suggestions h4 {
    font-size: 1.1rem;
    font-weight: 700;
    margin-bottom: 1rem;
    color: var(--text-color);
    font-family: 'Nunito', sans-serif;
}

.no-results-suggestions ul {
    list-style: none;
    padding: 0;
    margin: 0;
}

.no-results-suggestions li {
    padding: 0.5rem 0;
    border-bottom: 1px solid rgba(255, 255, 255, 0.2);
    color: var(--light-text);
    font-family: 'Nunito', sans-serif;
    font-weight: 500;
}

.no-results-suggestions li:before {
    content: '•';
    color: var(--primary-color);
    font-weight: bold;
    margin-right: 0.5rem;
}

.no-results-suggestions li:last-child {
    border-bottom: none;
}

/* RESPONSIVE STÍLUSOK */

/* Tablet nézet */
@media (max-width: 1024px) {
    .sorting-options {
        flex-direction: column;
        align-items: stretch;
        gap: 1rem;
    }
    
    .sorting-controls {
        justify-content: center;
    }
    
    .search-results-count {
        align-self: center;
    }
}

/* Mobil nézet */
@media (max-width: 768px) {
    .sorting-options {
        margin-bottom: 1rem;
    }
    
    .sorting-controls {
        flex-direction: column;
        gap: 0.5rem;
        align-items: stretch;
    }
    
    .sorting-controls label {
        text-align: center;
    }
    
    .sorting-controls select {
        padding: 0.625rem 0.875rem;
        font-size: 0.8125rem;
    }
    
    .search-results-count {
        padding: 0.625rem 1rem;
        font-size: 0.8125rem;
    }
    
    .search-card {
        padding: 0.625rem;
        max-width: 900px;
    }
    
    .search-form-row {
        grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
        gap: 0.375rem;
    }
    
    .search-tabs {
        flex-direction: column;
        gap: 0.25rem;
    }
    
    .search-tab {
        padding: 0.5rem 0.75rem;
        font-size: 0.625rem;
    }
    
    .checkbox-group {
        grid-template-columns: 1fr;
        grid-template-rows: repeat(10, auto);
        gap: 0.25rem;
        max-width: 600px;
        margin-left: auto;
        margin-right: auto;
    }
    
    .jobs-grid,
    .properties-grid {
        grid-template-columns: repeat(auto-fit, minmax(350px, 1fr));
        gap: 1.5rem;
        padding: 0 1.5rem;
    }
    
    .job-card-details,
    .property-card-details {
        grid-template-columns: repeat(auto-fit, minmax(150px, 1fr));
    }
    
    .job-card-footer,
    .property-card-footer {
        flex-direction: column;
        align-items: flex-start;
        gap: 1rem;
    }
    
    .job-card-actions,
    .property-card-actions {
        width: 100%;
        justify-content: flex-start;
    }
}

/* Kis mobil nézet */
@media (max-width: 480px) {
    .jobs-grid,
    .properties-grid {
        padding: 0 0.75rem;
    }
    
    .job-card-header,
    .property-card-image {
        padding: 0.75rem;
    }
    
    .job-card-content,
    .property-card-content {
        padding: 0.75rem;
    }
    
    .job-card-actions,
    .property-card-actions {
        flex-direction: column;
        width: 100%;
    }
    
    .job-card-actions .btn,
    .property-card-actions .btn {
        width: 100%;
        justify-content: center;
    }
}

/* Kártya akciók */
.card-actions {
    display: flex;
    gap: 0.75rem;
    margin-top: auto;
    padding-top: 1rem;
    flex-wrap: wrap;
}

.card-actions .btn {
    flex: 1;
    min-width: 120px;
    padding: 0.5rem 1rem;
    font-size: 0.875rem;
    border-radius: 25px;
    text-align: center;
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 0.375rem;
    transition: var(--transition);
}

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

.card-actions .btn-sm {
    padding: 0.375rem 0.75rem;
    font-size: 0.8rem;
    min-width: 100px;
}

/* Csillagok megjelenítése */
.card-stars {
    position: absolute;
    top: 1rem;
    left: 1rem;
    background: rgba(255, 255, 255, 0.9);
    padding: 0.25rem 0.5rem;
    border-radius: 15px;
    font-size: 0.875rem;
    color: #fbbf24;
    backdrop-filter: blur(10px);
}

/* Hiba üzenet */
.error-message {
    position: fixed;
    top: 2rem;
    right: 2rem;
    background: var(--error-color, #ef4444);
    color: white;
    padding: 1rem 1.5rem;
    border-radius: var(--border-radius);
    box-shadow: var(--shadow);
    z-index: 1000;
    animation: slideInRight 0.3s ease-out;
}

.error-content {
    display: flex;
    align-items: center;
    gap: 0.75rem;
}

.error-content i {
    font-size: 1.25rem;
}

@keyframes slideInRight {
    from {
        transform: translateX(100%);
        opacity: 0;
    }
    to {
        transform: translateX(0);
        opacity: 1;
    }
}

/* Reszponzív kártya akciók */
@media (max-width: 768px) {
    .card-actions {
        flex-direction: column;
        gap: 0.5rem;
    }
    
    .card-actions .btn {
        width: 100%;
        min-width: auto;
    }
}

@media (max-width: 480px) {
    .error-message {
        top: 1rem;
        right: 1rem;
        left: 1rem;
        padding: 0.75rem 1rem;
    }
    
    .card-actions .btn-sm {
        padding: 0.3rem 0.6rem;
        font-size: 0.75rem;
    }
}

/* ===== INGATLAN KÁRTYÁK ÚJ FUNKCIONALITÁS ===== */

/* Kontakt gombok */
.btn-contact {
    background: linear-gradient(135deg, var(--primary-color) 0%, var(--primary-dark) 100%);
    color: white;
    border: none;
    padding: 0.75rem 1.25rem;
    border-radius: 12px;
    font-size: 0.875rem;
    font-weight: 600;
    cursor: pointer;
    transition: all 0.3s ease;
    display: flex;
    align-items: center;
    gap: 0.5rem;
    font-family: 'Nunito', sans-serif;
}

.btn-contact:hover {
    transform: translateY(-2px);
    box-shadow: 0 8px 25px rgba(244, 208, 63, 0.3);
}

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

/* Property image overlay */
.property-image-overlay {
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: rgba(0, 0, 0, 0.7);
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    opacity: 0;
    transition: all 0.3s ease;
    cursor: pointer;
    color: white;
    font-weight: 600;
    font-size: 1rem;
}

.property-card-image:hover .property-image-overlay {
    opacity: 1;
}

.property-image-overlay i {
    font-size: 2rem;
    margin-bottom: 0.5rem;
}

/* Image Slider Modal */
.image-slider-overlay {
    position: fixed;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: rgba(0, 0, 0, 0.9);
    z-index: 10000;
    display: flex;
    align-items: center;
    justify-content: center;
    opacity: 0;
    visibility: hidden;
    transition: all 0.3s ease;
}

.image-slider-overlay.active {
    opacity: 1;
    visibility: visible;
}

.image-slider-modal {
    background: white;
    border-radius: 16px;
    max-width: 90vw;
    max-height: 90vh;
    width: 1000px;
    overflow: hidden;
    box-shadow: 0 20px 60px rgba(0, 0, 0, 0.3);
    transform: scale(0.8);
    transition: transform 0.3s ease;
}

.image-slider-overlay.active .image-slider-modal {
    transform: scale(1);
}

.image-slider-header {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 1.5rem 2rem;
    border-bottom: 1px solid var(--border-color);
    background: var(--light-background);
}

.image-slider-header h3 {
    margin: 0;
    font-size: 1.5rem;
    font-weight: 700;
    color: var(--text-color);
}

.image-slider-close {
    background: none;
    border: none;
    font-size: 1.5rem;
    cursor: pointer;
    color: var(--text-color);
    padding: 0.5rem;
    border-radius: 8px;
    transition: all 0.3s ease;
}

.image-slider-close:hover {
    background: var(--hover-background);
    color: var(--primary-color);
}

.image-slider-container {
    position: relative;
    display: flex;
    align-items: center;
    padding: 2rem;
    background: var(--background-color);
}

.image-slider-nav {
    background: rgba(255, 255, 255, 0.9);
    border: none;
    width: 50px;
    height: 50px;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    cursor: pointer;
    font-size: 1.25rem;
    color: var(--text-color);
    transition: all 0.3s ease;
    box-shadow: 0 4px 15px rgba(0, 0, 0, 0.1);
}

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

.image-slider-main {
    flex: 1;
    margin: 0 1rem;
    position: relative;
    text-align: center;
}

.image-slider-main img {
    max-width: 100%;
    max-height: 500px;
    border-radius: 12px;
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.2);
}

.image-slider-counter {
    position: absolute;
    bottom: 1rem;
    right: 1rem;
    background: rgba(0, 0, 0, 0.7);
    color: white;
    padding: 0.5rem 1rem;
    border-radius: 20px;
    font-size: 0.875rem;
    font-weight: 600;
}

.image-slider-thumbnails {
    display: flex;
    gap: 0.75rem;
    padding: 1.5rem 2rem;
    background: var(--light-background);
    border-top: 1px solid var(--border-color);
    overflow-x: auto;
}

.image-thumbnail {
    width: 80px;
    height: 80px;
    border-radius: 8px;
    cursor: pointer;
    object-fit: cover;
    border: 3px solid transparent;
    transition: all 0.3s ease;
    flex-shrink: 0;
}

.image-thumbnail:hover {
    border-color: var(--primary-color);
    transform: scale(1.05);
}

.image-thumbnail.active {
    border-color: var(--primary-color);
    box-shadow: 0 0 0 2px rgba(244, 208, 63, 0.3);
}

/* Dark mode támogatás */
[data-theme="dark"] .search-card {
    background: linear-gradient(135deg, 
        rgba(31, 41, 55, 0.95) 0%, 
        rgba(17, 24, 39, 0.9) 100%);
    border: 1px solid rgba(255, 255, 255, 0.1);
    box-shadow: 
        0 25px 80px rgba(0, 0, 0, 0.3),
        0 10px 30px rgba(0, 0, 0, 0.2),
        0 0 0 1px rgba(255, 255, 255, 0.05),
        inset 0 1px 0 rgba(255, 255, 255, 0.1);
}

[data-theme="dark"] .search-form-group input,
[data-theme="dark"] .search-form-group select {
    background-color: var(--card-background);
    border-color: var(--border-color);
    color: var(--text-color);
}

[data-theme="dark"] .search-form-group input:focus,
[data-theme="dark"] .search-form-group select:focus {
    border-color: var(--primary-color);
}

[data-theme="dark"] .search-form-group input:hover,
[data-theme="dark"] .search-form-group select:hover {
    background-color: var(--hover-background);
    border-color: var(--primary-light);
}

[data-theme="dark"] .search-form-group input::placeholder {
    color: var(--light-text);
}

[data-theme="dark"] .sorting-controls select {
    background-color: var(--card-background);
    border-color: var(--border-color);
    color: var(--text-color);
}

[data-theme="dark"] .sorting-controls select:focus {
    border-color: var(--primary-color);
}

[data-theme="dark"] .btn-contact {
    background: linear-gradient(135deg, var(--primary-color) 0%, var(--primary-dark) 100%);
    color: white;
}

[data-theme="dark"] .btn-contact:hover {
    transform: translateY(-2px);
    box-shadow: 0 8px 25px rgba(244, 208, 63, 0.4);
}

[data-theme="dark"] .search-tabs {
    background: linear-gradient(135deg, 
        rgba(31, 41, 55, 0.6) 0%, 
        rgba(17, 24, 39, 0.4) 100%);
    border: 1px solid rgba(255, 255, 255, 0.1);
}

[data-theme="dark"] .search-tab {
    color: var(--light-text);
}

[data-theme="dark"] .search-tab:hover {
    background: rgba(255, 255, 255, 0.1);
    color: var(--text-color);
}

[data-theme="dark"] .search-tab.active {
    background: linear-gradient(135deg, 
        var(--primary-color) 0%, 
        var(--primary-dark) 100%);
    color: white;
    box-shadow: 
        0 12px 30px rgba(244, 208, 63, 0.3),
        0 4px 15px rgba(244, 208, 63, 0.2);
    border: 1px solid rgba(244, 208, 63, 0.3);
}

/* Dark mode search advanced border eltávolítva */

[data-theme="dark"] .checkbox-item {
    color: var(--text-color);
}

[data-theme="dark"] .checkbox-item input[type="checkbox"] {
    accent-color: var(--primary-color);
}

[data-theme="dark"] .checkbox-item label {
    color: var(--text-color);
}

[data-theme="dark"] .no-results {
    background: linear-gradient(135deg, 
        rgba(31, 41, 55, 0.95) 0%, 
        rgba(17, 24, 39, 0.9) 100%);
    border: 1px solid rgba(255, 255, 255, 0.1);
    box-shadow: 
        0 25px 80px rgba(0, 0, 0, 0.3),
        0 10px 30px rgba(0, 0, 0, 0.2),
        0 0 0 1px rgba(255, 255, 255, 0.05),
        inset 0 1px 0 rgba(255, 255, 255, 0.1);
}

[data-theme="dark"] .no-results h3 {
    color: var(--text-color);
}

[data-theme="dark"] .no-results p {
    color: var(--light-text);
}

[data-theme="dark"] .no-results-suggestions {
    background: linear-gradient(135deg, 
        rgba(31, 41, 55, 0.6) 0%, 
        rgba(17, 24, 39, 0.4) 100%);
    border: 1px solid rgba(255, 255, 255, 0.1);
}

[data-theme="dark"] .no-results-suggestions h4 {
    color: var(--text-color);
}

[data-theme="dark"] .no-results-suggestions li {
    color: var(--light-text);
    border-bottom-color: rgba(255, 255, 255, 0.1);
}

[data-theme="dark"] .property-image-overlay {
    background: rgba(0, 0, 0, 0.8);
    color: white;
}

[data-theme="dark"] .image-slider-modal {
    background: var(--background-color);
}

[data-theme="dark"] .image-slider-header {
    background: var(--light-background);
    border-bottom-color: var(--border-color);
}

[data-theme="dark"] .image-slider-header h3 {
    color: var(--text-color);
}

[data-theme="dark"] .image-slider-close {
    color: var(--text-color);
}

[data-theme="dark"] .image-slider-close:hover {
    background: var(--hover-background);
    color: var(--primary-color);
}

[data-theme="dark"] .image-slider-container {
    background: var(--background-color);
}

[data-theme="dark"] .image-slider-nav {
    background: rgba(255, 255, 255, 0.1);
    color: var(--text-color);
}

[data-theme="dark"] .image-slider-nav:hover {
    background: var(--primary-color);
    color: white;
}

[data-theme="dark"] .image-slider-thumbnails {
    background: var(--light-background);
    border-top-color: var(--border-color);
}

/* Reszponzív design */
@media (max-width: 768px) {
    .image-slider-modal {
        max-width: 95vw;
        max-height: 95vh;
    }
    
    .image-slider-header {
        padding: 1rem 1.5rem;
    }
    
    .image-slider-header h3 {
        font-size: 1.25rem;
    }
    
    .image-slider-container {
        padding: 1rem;
    }
    
    .image-slider-nav {
        width: 40px;
        height: 40px;
        font-size: 1rem;
    }
    
    .image-slider-main img {
        max-height: 300px;
    }
    
    .image-slider-thumbnails {
        padding: 1rem 1.5rem;
        gap: 0.5rem;
    }
    
    .image-thumbnail {
        width: 60px;
        height: 60px;
    }
    
    .btn-contact {
        padding: 0.625rem 1rem;
        font-size: 0.8125rem;
    }
}

@media (max-width: 480px) {
    .image-slider-header {
        padding: 0.75rem 1rem;
    }
    
    .image-slider-header h3 {
        font-size: 1.125rem;
    }
    
    .image-slider-container {
        padding: 0.75rem;
    }
    
    .image-slider-nav {
        width: 35px;
        height: 35px;
        font-size: 0.875rem;
    }
    
    .image-slider-main img {
        max-height: 250px;
    }
    
    .image-slider-thumbnails {
        padding: 0.75rem 1rem;
    }
    
    .image-thumbnail {
        width: 50px;
        height: 50px;
    }
    
    .btn-contact {
        padding: 0.5rem 0.75rem;
        font-size: 0.75rem;
    }
}


