/* ÚPLNÝ CSS KÓD S KRUHOVÝM OBRÁZKOM A SILNEJŠÍM ZOOMOM */

/* PROGRESÍVNY DIZAJN: FUSION (SRDCE A MOZOG) */
:root {
    --bg-color: #1a1a2e; /* Tmavo-fialová */
    --card-bg: #2a2a4a; 
    --text-color: #e0e0e0;
    --it-accent-color: #00BFFF; /* Bledomodrá pre IT */
    --health-accent-color: #00e676; /* Zelená pre Zdravie */
    --accent-glow-it: rgba(0, 191, 255, 0.6); 
    --accent-glow-health: rgba(0, 230, 118, 0.6); 
    --border-radius: 12px;
}

body {
    margin: 0;
    font-family: 'Roboto', sans-serif;
    background-color: var(--bg-color);
    color: var(--text-color);
    display: flex;
    flex-direction: column;
    min-height: 100vh;
    justify-content: center; 
    align-items: center;
    overflow-x: hidden;
    text-align: center;
}

/* NOVÁ CENTRÁLNA HERO SEKCIA */
.hero-section {
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    padding: 60px 20px;
    max-width: 900px;
    margin: auto; 
    text-align: center; 
    flex-grow: 1; 
}

.landing-header {
    background-color: transparent;
    padding: 0;
    width: 100%;
    text-align: center; 
    box-sizing: border-box;
}
.landing-header .container-header {
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 30px;
}
.landing-header h1 {
    font-size: 3.5rem; 
    font-weight: 700;
    margin: 0;
    color: var(--text-color);
    text-shadow: 0 0 15px rgba(255,255,255,0.3);
}

/* ŠTÝL PRE OSOBNÝ ÚVODNÝ TEXT */
.intro-text {
    font-family: 'Open Sans', sans-serif;
    font-size: 1.5rem; 
    font-weight: 300;
    margin: 15px auto 40px auto;
    color: var(--text-color);
    line-height: 1.6;
    max-width: 700px;
    opacity: 0.95;
}

/* ŠTÝLY PRE KRUHOVÝ OBRÁZOK/LOGO */
.image-container {
    margin: 40px 0;
    display: inline-block; 
}

.profile-image {
    width: 220px; 
    height: 220px; 
    object-fit: cover; /* Oreže obdĺžnikový obrázok, aby sa zmestil do kruhu */
    border-radius: 50%; /* Vytvorí kruh */
    border: 5px solid var(--it-accent-color); 
    
    transition: transform 0.5s ease, border-color 0.5s ease;
    
    /* Duálne žiarenie */
    box-shadow: 
        0 0 20px var(--accent-glow-it), 
        0 0 40px var(--accent-glow-health),
        0 0 80px rgba(0, 0, 0, 0.8) inset;
}

.profile-image:hover {
    transform: scale(1.1); /* SILNEJŠÍ ZOOM */
    border-color: var(--health-accent-color);
}

/* CENTRÁLNE TLAČIDLÁ */
.intro-buttons {
    display: flex;
    gap: 25px;
    margin-top: 40px;
    flex-wrap: wrap; 
    justify-content: center;
}

.btn-panel {
    display: inline-block;
    padding: 18px 50px; 
    border-radius: 50px;
    text-decoration: none;
    font-weight: 700;
    font-size: 1.2rem;
    box-shadow: 0 5px 20px rgba(0,0,0,0.5);
    transition: background-color 0.3s ease, transform 0.2s ease, box-shadow 0.3s ease;
    color: var(--bg-color);
    min-width: 150px; 
}

/* ŠTÝL PRE IKONY V TLAČIDLÁCH */
.btn-panel .fas {
    margin: 0 5px; /* Priestor okolo ikony šípky */
}

/* FARBY A HOVER TLAČIDIEL */
.btn-it { background-color: var(--it-accent-color); }
.btn-health { background-color: var(--health-accent-color); }
.btn-it:hover { background-color: #008DCC; transform: translateY(-5px); } 
.btn-health:hover { background-color: #00b359; transform: translateY(-5px); } 

.landing-footer {
    background-color: transparent;
    color: var(--text-color);
    padding: 1.5rem 20px;
    width: 100%;
    text-align: center;
    opacity: 0.8;
    margin-top: 60px;
}

@media (max-width: 768px) {
    .landing-header h1 { font-size: 2.8rem; }
    .intro-text { font-size: 1.2rem; margin-top: 10px; margin-bottom: 30px; }
    
    .profile-image { 
        width: 180px; 
        height: 180px;
    }
    
    .intro-buttons { flex-direction: column; gap: 15px; margin-top: 30px; width: 80%; }
    .btn-panel { width: 100%; padding: 15px 30px; }
    .landing-footer { margin-top: 40px; }
}