/* --- ZÁKLAD WEBU --- */
body {
    background-image: url(img/pozadicko.jpg);
    background-position: center center;
    background-size: cover;
    background-attachment: fixed;
    color: aquamarine;
    font-family: "Pirata One", cursive;
    margin: 0;
    padding: 0;
}

/* Hlavní kontejner webu */
div.celyweb {
    max-width: 1200px;
    margin: 30px auto;
    background: rgba(0,0,0,0.7); /* Trochu tmavší pro lepší čitelnost */
    border: 5px solid white;
    border-radius: 20px;
    padding-bottom: 20px;
    font-family: "Lora", serif;
    overflow: hidden; /* Ořízne rohy fotky */
}

/* Oprava pro fotku v hlavičce (aby neměla mezery) */
div.celyweb > img:first-of-type {
    display: block;
    width: 100%;
    margin: 0;
    padding: 0;
    border: none;
    /* Zakulatíme horní rohy fotky, aby lícovaly s rámečkem */
    border-radius: 12px 12px 0 0; 
}

/* --- NADPISY --- */
h1, h2 {
    font-size: 2.8rem;
    text-align: center;
    text-shadow: 2px 2px 4px rgba(0,0,0,0.8);
    margin-top: 30px;
}

h2 {
    font-size: 1.8rem;
    margin-top: 10px;
    color: white;
}

/* --- MENU --- */
div.menu {
    display: flex;
    flex-wrap: wrap;
    justify-content: center;
    align-items: center;
    background: rgba(255,255,255,0.1); /* Jemný podklad pod menu */
    padding: 10px 0;
    border-top: 1px solid rgba(255,255,255,0.2);
    border-bottom: 1px solid rgba(255,255,255,0.2);
}

div.menu a {
    width: 250px;
    height: 45px;
    background: white;
    color: darkgreen;
    font-size: 1.4rem;
    display: block;
    text-decoration: none;
    line-height: 45px;
    text-align: center;
    margin: 5px;
    border-radius: 999px;
    transition: 0.3s;
    border: 3px solid lime; 
    font-weight: bold;
}

div.menu a:hover {
    letter-spacing: 1px;
    background: darkgreen;
    color: white;
    transform: scale(1.05); /* Jemné zvětšení při najetí */
}

/* --- TEXTY A ODSTAVCE --- */
p {
    margin: 15px 25px;
    font-size: 1.2rem;
    color: white;
    line-height: 1.6;
}

/* Fotky v textu */
p img {
    border: 5px solid white;
    float: left;
    margin: 10px 20px 10px 0;
    rotate: 5deg;
    max-width: 100%;
    height: auto;
    transition: 0.3s;
}

p img:hover {
    border-color: aquamarine;
    transform: rotate(0deg) scale(1.1); /* Narovná se a zvětší */
}

p a {
    color: aquamarine;
    text-decoration: underline;
}

p a:hover {
    color: white;
    text-decoration: none;
}

/* --- GALERIE (MINIATURY) --- */
img.mini {
    height: 180px;
    width: auto;
    border: 5px solid white;
    margin: 15px;
    transition: 0.3s;
}

img.mini:hover {
    border-color: orange;
    transform: scale(1.1);
}

/* --- ODRÁŽKY (STRÁNKA ODKAZY) --- */
ul {
    list-style-type: square; 
    color: white; 
    font-size: 1.3rem; 
    line-height: 1.8; 
    padding-left: 50px;
    margin: 20px 0;
}

ul ul {
    list-style-type: none;
    padding-left: 30px;
}

ul ul li::before {
    content: "👉 ";
    margin-right: 10px;
}

ul a {
    color: #4db8ff; 
    text-decoration: none;
    font-weight: bold;
}

ul a:hover {
    color: #ffcc00; 
    text-decoration: underline;
}

/* --- UŽITEČNOSTI (FIELDSET/LEGEND) --- */
fieldset {
    border: 2px dotted white;
    border-radius: 20px;
    margin: 20px;
    padding: 20px;
    background: rgba(255,255,255,0.05);
}

legend {
    font-size: 1.6rem;
    color: red;
    background: white;
    padding: 5px 15px;
    border-radius: 10px;
    font-weight: bold;
}