/* assets/css/style.css */
body {
    min-height: 100vh;
    display: flex;
    flex-direction: column;
}

.container {
    flex: 1;
}

.navbar-brand {
    font-weight: bold;
}

.card {
    border-radius: 10px;
    overflow: hidden;
}

.card-header {
    font-weight: bold;
}

footer {
    margin-top: auto;
}

/* Cookie figyelmeztetés stílusa */
.cookie-notice {
    position: fixed;
    bottom: 0;
    left: 0;
    right: 0;
    background-color: rgba(0, 0, 0, 0.85);
    color: #fff;
    padding: 15px;
    text-align: center;
    z-index: 9999;
    display: none; /* Alapértelmezetten rejtett */
}

.cookie-notice p {
    margin-bottom: 10px;
}

.cookie-notice a {
    color: #ffc107;
    text-decoration: underline;
}

/* Footer stílus */
footer {
    position: relative;
    padding: 15px 0;
}

footer a {
    color: #fff;
    text-decoration: none;
}

footer a:hover {
    text-decoration: underline;
}

/* Program kártyák stílusai */
.card {
    height: 100%;
    display: flex;
    flex-direction: column;
}

.card-body {
    flex: 1 0 auto;
}

.card-img-top {
    width: 100%;
    height: auto;
    object-fit: cover;
}

/* Életrajz szekció stílusa */
.biography-section {
    border-top: 1px solid #eee;
    padding-top: 15px;
    margin-top: 15px;
}

.biography-section h6 {
    font-weight: bold;
    margin-bottom: 10px;
}

/* Kártyák egyforma magassága soronként és két oszlopos elrendezés */
@media (min-width: 768px) {
    .row {
        display: flex;
        flex-wrap: wrap;
    }
    
    .col-md-6 {
        display: flex;
    }
    
    .card {
        width: 100%;
    }
}

/* Mobilon egymás alatt jelennek meg a kártyák */
@media (max-width: 767px) {
    .col-md-6 {
        width: 100%;
    }
}