/* MODERNIZÁCIA CSS */
:root {
    --primary: #2f4f4f; /* DarkSlateGray */
    --accent: #d2b48c;   /* Tan / Wheat */
    --light-bg: #f8fbff;
    --text-dark: #333;
    --shadow: 0 4px 15px rgba(0,0,0,0.1);
}

* { box-sizing: border-box; }

body {
    font-family: 'Segoe UI', Roboto, sans-serif;
    margin: 0;
    line-height: 1.6;
    color: var(--text-dark);
    background-color: #fff;
    animation: fadeIn 0.8s ease-out;
}

/* HLAVIČKA */
#main-header {
    background: white;
    padding: 20px 0;
    box-shadow: var(--shadow);
}

.header-content {
    display: flex;
    align-items: center;
    justify-content: space-between; /* Zmenené z space-around pre lepšie zarovnanie */
    max-width: 1200px;
    margin: auto;
    padding: 0 20px;
}

#main-header h1 {
    font-family: Georgia, serif;
    font-size: clamp(1.5rem, 4vw, 3rem); /* Zmenšená minimálna veľkosť písma */
    color: var(--primary);
    margin: 0;
    text-align: center;
    flex: 1; /* Názov zaberie zvyšné miesto */
}

.logo-link img {
    height: 80px; /* Zmenšená základná výška pre lepšiu stabilitu */
    width: auto;
    transition: transform 0.3s;
}

.logo-link img:hover { transform: scale(1.05); }

/* NAVIGÁCIA */
#navigation {
    background: white;
    position: sticky;
    top: 0;
    z-index: 1000;
    border-bottom: 1px solid #eee;
}

#navigation ul {
    display: flex;
    justify-content: center;
    list-style: none;
    padding: 15px 0;
    margin: 0;
}

#navigation li { margin: 0 20px; }

#navigation a {
    text-decoration: none;
    color: var(--primary);
    font-weight: bold;
    font-size: 1.1rem;
    transition: color 0.3s;
}

#navigation a:hover, #navigation a.active {
    color: var(--accent);
    border-bottom: 2px solid var(--accent);
}

/* HERO SEKCOA */
#hero-section {
    height: 70vh;
    background: url("20250915_112033.jpg") center/cover no-repeat fixed;
    display: flex;
    align-items: flex-end;
}

.hero-overlay {
    background: rgba(0,0,0,0.4);
    width: 100%;
    padding: 40px;
    text-align: center;
}

.hero-title {
    color: white;
    font-size: 3rem;
    text-decoration: none;
    font-family: Georgia, serif;
}

/* HLAVNÝ OBSAH */
#main-content {
    max-width: 1200px;
    margin: 40px auto;
    padding: 0 20px;
}

.section-title {
    text-align: center;
    font-size: 2.2rem;
    margin-bottom: 30px;
    position: relative;
}

.section-title::after {
    content: '';
    display: block;
    width: 60px;
    height: 3px;
    background: var(--accent);
    margin: 10px auto;
}

/* INFO GRID */
.info-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: 30px;
    margin-bottom: 50px;
}

.info-card {
    background: var(--light-bg);
    padding: 30px;
    border-radius: 15px;
    box-shadow: var(--shadow);
}

.info-item {
    padding: 10px 0;
    border-bottom: 1px solid #dce8f0;
}

.info-item span { font-weight: bold; color: var(--primary); }

/* AKTUALITY GRID */
.news-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(400px, 1fr));
    gap: 30px;
}

.news-card {
    background: white;
    border-radius: 15px;
    overflow: hidden;
    box-shadow: var(--shadow);
    transition: transform 0.3s;
}

.news-card:hover { transform: translateY(-5px); }

.news-image {
    height: 250px;
    background-size: cover;
    background-position: center;
}

.news-1 { background-image: url("605292766_1437154781261534_4647194255951587916_n.jpg"); }
.news-2 { background-image: url("600197634_1433726644937681_8511487712343369533_n.jpg"); }

.news-body { padding: 20px; }

/* TLAČIDLO */
.btn-primary {
    display: inline-block;
    background: var(--primary);
    color: white !important;
    padding: 12px 25px;
    border-radius: 25px;
    margin-top: 15px;
    transition: all 0.3s;
}

.btn-primary:hover {
    background: #1a2b2b;
    transform: scale(1.05);
}

/* FOOTER */
/* ... (predchádzajúca časť kódu zostáva rovnaká) ... --> */

/* FOOTER - PÔVODNÉ ŠTÝLY */
#main-footer {
    background: var(--primary); /* Tmavozelené pozadie z premennej */
    color: white;
    margin-top: 60px;
}

.footer-top {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
    gap: 40px;
    padding: 60px 20px;
    max-width: 1200px;
    margin: auto;
}

.f-brand { font-size: 1.4rem; font-weight: bold; }

/* ODSTRÁNENÝ STARÝ ŠTÝL: .f-logo { height: 100px; filter: brightness(0) invert(1); } */

/* NOVÝ ŠTÝL PRE FAREBNÉ LOGO */
.f-logo-colored {
    height: 180px; /* Zväčšená výška pre lepšiu viditeľnosť */
    width: auto;   /* Zachovanie pomeru strán */
    display: block;
    margin-top: 15px;
    filter: none;  /* Zabezpečí, že filter nezmení farby loga */
}

/* ... (zvyšok kódu zostáva rovnaký) ... --> */

.footer-top {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
    gap: 40px;
    padding: 60px 20px;
    max-width: 1200px;
    margin: auto;
}

.f-brand { font-size: 1.4rem; font-weight: bold; }
.f-logo { height: 100px; filter: brightness(0) invert(1); }

.footer-bottom {
    background: rgba(0,0,0,0.2);
    padding: 20px;
    text-align: center;
    font-size: 0.9rem;
}

.footer-bottom a { color: var(--accent); margin-left: 15px; }

/* ANIMÁCIA */
@keyframes fadeIn {
    from { opacity: 0; transform: translateY(10px); }
    to { opacity: 1; transform: translateY(0); }
}


/* MOBILNÁ HLAVIČKA A AKTUALITY */
@media (max-width: 600px) {
    /* Zmenšenie hlavičky */
    #main-header {
        padding: 10px 0;
    }

    .header-content {
        display: flex;
        align-items: center;
        justify-content: space-between; /* Rozmiestni logá na kraje a text do stredu */
        padding: 0 10px;
    }

    /* Zabezpečíme, aby obe logá boli viditeľné a malé */
    .logo-link {
        display: block !important; 
    }

    .logo-link img {
        height: 40px; /* Menšie logá, aby sa zmestili vedľa textu */
        width: auto;
    }

    #main-header h1 {
        font-size: 1.6rem; /* Zmenšený text, aby sa nezalamoval */
        margin: 0 5px;
        flex: 1;
        text-align: center;
    }

    /* OPRAVA NAVIGÁCIE (aby slová neboli zlepené) */
    #navigation ul {
        display: flex;
        flex-direction: row; /* Menu zostane v riadku */
        flex-wrap: wrap;    /* Ale ak je dlhé, skočí do nového riadku */
        justify-content: center;
        padding: 10px 5px;
        gap: 15px;          /* TOTO PRIDÁ MEDZERY MEDZI POLOŽKAMI */
    }

    #navigation li {
        margin: 0;         /* Resetujeme staré marginy */
    }

    #navigation a {
        font-size: 0.85rem;
        letter-spacing: 0.5px;
        white-space: nowrap; /* Zabráni rozdeleniu jedného slova */
    }

    /* Aktuality pod sebou */
    .news-grid {
        grid-template-columns: 1fr;
        gap: 20px;
        margin-top: 20px;
    }

    .news-image {
        height: 180px; /* Menšia výška obrázkov pre úsporu miesta */
    }

    .news-body {
        padding: 15px;
    }

    .news-body h3 {
        font-size: 1.2rem;
        margin-bottom: 8px;
    }
}