/* Nastavení základního vzhledu stránky */
body {
    font-family: 'Roboto', sans-serif;
    background: linear-gradient(to bottom right, #e6f0ff, #f2f4f8); /* světle modrý přechod */
    margin: 0;
    padding: 0;
    text-align: center;
    color: #333;
}

/* Navigace */
nav {
    background-color: #0077cc;
    padding: 15px;
    display: flex;
    justify-content: center;
    flex-wrap: wrap;
}

nav a {
    background-color: white;
    color: #0077cc;
    text-decoration: none;
    margin: 8px;
    padding: 10px 20px;
    border-radius: 25px;
    font-weight: bold;
    transition: all 0.3s ease;
    box-shadow: 0 2px 5px rgba(0, 0, 0, 0.1);
}

nav a:hover {
    background-color: #005fa3;
    color: white;
    transform: scale(1.05);
}

/* Oddělovací čára přes celou stránku */
.full-line {
    border: none;
    height: 4px;
    background-color: #005fa3; /* tmavší modrá */
    width: 100vw;
    margin: 0;
}

/* Hlavní obsah */
main {
    padding: 30px;
}

/* Nadpisy */
h1, h2, h3 {
    color: #005fa3;
}

/* Galerie obrázků */
.gallery {
    display: flex;
    flex-wrap: wrap;
    justify-content: center;
    gap: 40px;
    margin-top: 50px;
}

.gallery img {
    width: 400px;
    height: auto;
    border-radius: 10px;
    box-shadow: 0 4px 8px rgba(0,0,0,0.1);
    transition: transform 0.2s, box-shadow 0.2s;
}

.gallery img:hover {
    transform: scale(1.05);
    box-shadow: 0 0 10px rgba(0,0,0,0.2);
}

/* Box pro hlavní fotku na úvodní stránce */
main {
    padding: 80px 30px 30px 30px; /* 80px nahoře */
}

/* Styl pro hlavní fotku */
.main-photo-box {
    width: 300px;
    height: 500px;
    margin: 30px auto;
    background-color: white;
    display: flex;
    align-items: center;
    justify-content: center;
    border-radius: 10px;
    box-shadow: 0 4px 10px rgba(0, 0, 0, 0.1);
}

.main-photo-box img {
    max-width: 100%;
    max-height: 100%;
    object-fit: contain;
    border-radius: 10px;
}


/* Patička s odkazem na Instagram */
footer {
    margin-top: 50px;
    padding: 20px;
    background-color: #0077cc;
    color: white;
}

footer a {
    color: white;
    font-weight: bold;
    text-decoration: none;
}

footer a:hover {
    text-decoration: underline;
}
