h1.site-title {
    text-align: center;         
    font-size: 2.8rem;         
    font-weight: 700;           
    margin: 20px 0 15px 0;     
    color: #ffffff; 
    font-family: 'Segoe UI', Tahoma, Geneva, Verdana, sans-serif;
    text-shadow: 1px 1px 3px rgba(0,0,0,0.1);
}

h2.newest {
    text-align: center;
    margin: 30px 0 15px 0;     
    color: #ffffff;
    font-family: 'Segoe UI', Tahoma, Geneva, Verdana, sans-serif; 
    text-shadow: 1px 1px 3px rgba(0,0,0,0.1);
}



.slider-wrapper {
    position: relative;
    max-width: 100%;
    margin: 0 auto 40px;
    overflow: hidden;
    border-radius: 10px;
}

.slider {
    position: relative;
    width: 100%;
    height: 300px;
}

.slide {
    display: none;
    width: 100%;
    height: 100%;
    position: absolute;
    top: 0;
    left: 0;
}

.slide.active {
    display: block;
}

.slide img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    border-radius: 10px;
}



.slider-nav {
    text-align: center;
    margin-top: 10px;
}

.slider-nav .dot {
    display: inline-block;
    width: 12px;
    height: 12px;
    margin: 0 6px;
    background-color: #ccc;
    border-radius: 50%;
    cursor: pointer;
    transition: background-color 0.3s;
}

.slider-nav .dot.active {
    background-color: #007BFF;
}



.cikkek-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 20px;
    justify-items: center;
    max-width: 1000px;
    margin: 0 auto;
}

.cikk {
    width: 320px;
    height: 250px;
    position: relative;
    overflow: hidden;
    border-radius: 8px;
    box-shadow: 0 2px 8px rgba(49, 48, 48, 0.1);
    background: #fff;
}

.cikk-link {
    display: block;
    width: 100%;
    height: 100%;
    position: relative;
    color: white;
    text-decoration: none;
}

.cikk-kep {
    width: 100%;
    height: 100%;
    object-fit: cover;
    border-radius: 8px;
    transition: transform 0.3s ease;
    display: block;
}

.cikk-link:hover .cikk-kep {
    transform: scale(1.05);
}

.cikk-cim-overlay {
    position: absolute;
    bottom: 0;
    left: 0;
    right: 0;
    padding: 12px;
    background: rgba(0, 0, 0, 0.6);
    font-size: 1.2rem;
    font-weight: bold;
    text-align: center;
    border-radius: 0 0 8px 8px;
}


.no-image {
    width: 320px;
    height: 250px;
    background: #ccc;
    color: #333;
    font-size: 1.1rem;
    font-weight: bold;
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: center;
    border-radius: 8px;
    text-align: center;
}

.no-image .cikk-cim-link {
    margin-top: 10px;
    color: #007BFF;
    text-decoration: underline;
    font-weight: normal;
}



.oldalcim {
    text-align: center;
}



.calendar-wrapper {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 20px;
    max-width: 760px;    
    margin: 2rem auto 3rem auto;
    flex-wrap: wrap;     
}



#calendar {
    flex: 1 1 600px;      
    max-width: 700px;
    background: #fff;
    border-radius: 10px; 
    box-shadow: 0 4px 12px rgba(0,0,0,0.1);
    padding: 15px;
    font-family: 'Segoe UI', Tahoma, Geneva, Verdana, sans-serif;
    font-size: 0.9rem;
    color: #333;
}


.download-btn {
    flex: 0 0 auto;
    padding: 12px 24px;
    background-color: #0674ea;
    color: white;
    font-weight: 600;
    font-size: 1rem;
    border: none;
    border-radius: 8px;
    cursor: pointer;
    text-decoration: none; 
    box-shadow: none;     
    transition: background-color 0.3s ease;
    white-space: nowrap;
    font-family: 'Segoe UI', Tahoma, Geneva, Verdana, sans-serif;
}

.download-btn:hover {
    background-color: #0056b3;
}


.download-btn svg {
    vertical-align: middle;
    margin-left: 8px;
    fill: white;
}



.fc-toolbar-title {
    font-weight: 700;
    font-size: 1.3rem;
    color: #007BFF;
}


.fc-col-header-cell-cushion {
    font-weight: 600;
    color: #555;
}


.fc-daygrid-day.fc-day-today {
    background: #e9f2ff;
    border-radius: 6px;
}


.fc-event {
    background-color: #007BFF !important;
    border: none !important;
    border-radius: 6px !important;
    font-size: 0.85rem !important;
    padding: 3px 6px !important;
    cursor: pointer;
    box-shadow: 0 1px 4px rgba(0,0,0,0.15);
    color: #fff !important;
    text-overflow: ellipsis;
    white-space: nowrap;
    overflow: hidden;
}


.fc-event:hover {
    background-color: #0056b3 !important;
    box-shadow: 0 2px 8px rgba(0,0,0,0.3);
}


.fc .fc-daygrid-day-frame {
    border: 1px solid #f0f0f0;
    border-radius: 6px;
    padding: 5px;
}


@media (max-width: 992px) {
    .cikkek-grid {
        grid-template-columns: repeat(2, 1fr);
    }
}

@media (max-width: 600px) {
    .cikkek-grid {
        grid-template-columns: 1fr;
    }

    .cikk {
        width: 100%;      
        height: auto;
        aspect-ratio: 4 / 3;
    }

    .no-image {
        width: 100%;
        height: auto;
        aspect-ratio: 4 / 3;
    }

    .calendar-wrapper {
        flex-direction: column;
        max-width: 100%;
        gap: 15px;
    }

    #calendar {
        max-width: 100%;
        padding: 10px;
        font-size: 0.8rem;
        flex: none;
    }

    .download-btn {
        width: 100%;
        text-align: center;
    }
}
