/* Základné nastavenia pre telo stránky */
/* Sekcia 1 - Štýl textu */
.text-gold {
    color: #92e961 !important; /* Zlatá farba */
}

#home h1 {
    font-size: 4rem; /* Väčší a výraznejší hlavný nadpis */
    font-weight: 800;
    text-transform: uppercase;
    letter-spacing: 2px;
    color: #92e961; /*#72b742, #a5dd86 zelena */

 /* #FFD700  žltá ako v ostatných sekciách */
}

#home h2 {
    font-size: 2.5rem;
    font-weight: 600;
    color: white; /* Biely text pre lepšiu čitateľnosť */
}

#home p {
    font-size: 1.5rem;
    font-weight: 400;
    color: white; /* Zachovanie čitateľnosti */
}


body, html {
    margin: 0;
    padding: 0;
    height: 100%;
    scroll-behavior: smooth;
}

/* Každá sekcia má výšku 100% obrazovky */
.section {
    height: 100vh;
    background-size: cover;
    background-position: center;
    display: flex;
    align-items: center;
    justify-content: center;
    color: white;
    text-align: center;
    padding: 40px;
    position: relative;
}

/* Overlay prekrytie, ktoré rovnomerne pokryje celý obrázok */
.overlay {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: rgba(0, 0, 0, 0.5); /* Jemné prekrytie */
    display: flex;
    align-items: center;
    justify-content: center;
    flex-direction: column;
}

/* Vylepšené nadpisy */
h1 {
    font-size: 4rem;  /* Väčšie H1 */
    font-weight: 800;  /* Extra bold */
    text-transform: uppercase; /* Veľké písmená pre silný vizuálny dojem */
    letter-spacing: 2px;  /* Rozšírenie písmen pre lepšiu čitateľnosť */
}

h2 {
    font-size: 2.5rem;  /* Menšie ako H1, ale stále viditeľné */
    font-weight: 600;  /* Stredne tučné */
}

/* Primárne tlačidlá */
.btn-primary {
    background-color: #FFD700;
    border-color: #FFD700;
    color: black;
    padding: 12px 24px;
    font-size: 1.2rem;
    font-weight: bold;
}

/* Štýl loga v sekcii 1 */
.logo-home {
    max-width: 250px;  /* Obmedzenie veľkosti loga */
    height: auto;  /* Zachovanie pomeru strán */
}

/* Responzivita pre mobilné zariadenia */
@media (max-width: 768px) {
    .logo-home {
        max-width: 180px;  /* Menšie logo na mobiloch */
    }
}


/* Responsivita pre mobilné zariadenia */
/* Responsivita pre mobilné zariadenia */
@media (max-width: 768px) {
    #home h1 {
        font-size: 3rem;  /* Menší, ale stále výrazný nadpis */
        letter-spacing: 1px;  /* Mierne zmenšený rozostup */
    }

    #home h2 {
        font-size: 2rem;  /* Menší podnadpis */
    }

    #home p {
        font-size: 1.2rem;  /* Zmenšený text pre lepšiu čitateľnosť */
    }
}


