/* === css/style.css === */
/* Egyedi stílusok a Jobbágyi Kortárs Művészeti Fesztivál oldalához */

/* --- Alapértelmezett világos téma és tipográfia --- */
body {
    font-family: 'Inter', -apple-system, BlinkMacSystemFont, 'Segoe UI', Roboto, sans-serif;
    color: #2d2d2d;
    background-color: #faf9f7;
    /* Törtfehér háttér, ami művészibb, mint a tiszta fehér */
    line-height: 1.7;
}

h1,
h2,
h3,
h4 {
    font-weight: 400;
    /* Vékonyabb betűk a letisztult designhoz */
    letter-spacing: 0.03em;
}

h2 {
    font-size: 2.5rem;
    margin-bottom: 2rem;
    position: relative;
    display: inline-block;
}

/* Vékony vonal a címek alatt (artisztikus részlet) */
h2:after {
    content: '';
    display: block;
    width: 60px;
    height: 1px;
    background-color: #a68b7c;
    /* Meleg, földszínű akcentus */
    margin-top: 0.5rem;
}

/* --- Navigációs sáv (navbar) finomítása --- */
.navbar {
    background-color: rgba(255, 255, 255, 0.85) !important;
    backdrop-filter: blur(10px);
    /* Üveghatás */
    border-bottom: 1px solid rgba(0, 0, 0, 0.05);
}

.navbar-brand {
    font-weight: 300;
    font-size: 1.5rem;
    letter-spacing: 0.2rem;
    text-transform: uppercase;
    color: #3a3a3a !important;
}

.nav-link {
    font-weight: 300;
    color: #4a4a4a !important;
    margin: 0 0.5rem;
    transition: color 0.2s ease;
}

.nav-link:hover {
    color: #a68b7c !important;
    /* Akcentus szín hoverre */
}

/* --- Hero szekció (főoldal teteje) --- */
.hero-section {
    margin-top: 50px;
    padding: 8rem 0 5rem 0;
    background: linear-gradient(135deg, #ece8e3 0%, #f5f2ee 100%);
    margin-bottom: 3rem;
}

.hero-title {
    font-family: 'IBM Plex Sans Condensed', sans-serif;
    font-weight: 500;
    font-size: 3.5rem;
    line-height: 1.2;
    margin-bottom: 1.5rem;
    /* a többi meglévő tulajdonság maradhat */
}

.hero-subtitle {
    font-size: 1.2rem;
    font-weight: 300;
    color: #6b6b6b;
}

/* --- Kártyák a programhoz és galériához --- */
.card {
    border: none;
    background-color: transparent;
    transition: transform 0.3s ease;
}

.card:hover {
    transform: translateY(-5px);
    /* Enyhe lebegés hoverre */
}

.card-img-top {
    border-radius: 0;
    /* Nincs lekerekítés, letisztultabb */
    filter: grayscale(30%);
    /* Finom vintage hatás */
    transition: filter 0.4s ease;
}

.card:hover .card-img-top {
    filter: grayscale(0%);
    /* Színesebb lesz hoverre */
}

.card-body {
    padding-left: 0;
    padding-right: 0;
}

.card-title {
    font-size: 1.3rem;
    font-weight: 300;
    margin-bottom: 0.25rem;
}

.card-text {
    font-size: 0.95rem;
    color: #6f6f6f;
}

/* --- Program táblázat stílus --- */
.program-item {
    padding: 1.5rem 0;
    border-bottom: 1px dashed #d0c9c2;
}

.program-time {
    font-weight: 300;
    color: #a68b7c;
    font-size: 1.1rem;
}

.program-title {
    font-size: 1.4rem;
    font-weight: 300;
    margin-bottom: 0.3rem;
}

.program-location {
    font-size: 0.9rem;
    color: #888;
}

/* --- Lábléc --- */
footer {
    background-color: #2d2d2d;
    color: #f0f0f0;
    font-weight: 300;
    padding: 3rem 0 2rem 0;
    margin-top: 5rem;
}

footer a {
    color: #c0b0a6;
    text-decoration: none;
}

footer a:hover {
    color: #fff;
    text-decoration: underline;
}

/* --- Reszponzív finomítások --- */
@media (max-width: 768px) {
    h2 {
        font-size: 2rem;
    }

    .hero-title {
        font-size: 2.5rem;
    }

    .hero-section {
        padding: 6rem 0 3rem 0;
    }
}

/* Asztali nézet (992px-től felfelé) */
/* === Hero szekció asztali nézet finomhangolása === */
@media (min-width: 992px) {

    /* Hero szekció feljebb hozása */
    .hero-section {
        padding-top: 4rem;
        /* Állítsa be tetszőlegesen, pl. 4rem, 5rem */
    }

    /* Cím és tartalom középre igazítása */
    .hero-title {
        text-align: center;
    }

    /* Ha a felirat egy Bootstrap oszlopban van, az oszlopot is középre igazítjuk */
    .hero-section .row {
        justify-content: center;
    }

    /* Ha a szöveg nem középre igazított oszlopban van, akkor az oszlopon belül is középre tesszük */
    .hero-section .col-lg-8,
    .hero-section .col-lg-6 {
        text-align: center;
    }
}