body{
background-image: url(img/darkmoon.jpg);
background-position: center center;
background-size: cover;
background-attachment: fixed;

color: #FCFF40;
font-family: "Archivo Narrow", sans-serif;
margin: 0;
}

/* NADPISY */
h1, h2{
    text-align: center;
    font-family: "Abril Fatface", cursive;
}

h1{
    font-size: 2.2rem;
}

h2{
    font-size: 1.5rem;
}

/* HLAVNÍ OBAL */
div.celyweb{
    max-width: 1200px;
    margin: 20px auto;
    background: rgba(0,0,0,0.5);
    border: 3px solid #5C5445;
    border-radius: 20px;
    padding-bottom: 15px;
}

/* MENU */
div.menu{
    display: flex;
    justify-content: center;
    flex-wrap: wrap;
    gap: 6px;
    padding: 10px 0;
}

div.menu a {
    width: 220px;
    height: 40px;
    font-size: 1.3rem;
    display: flex;
    align-items: center;
    justify-content: center;
    text-decoration: none;
    border-radius: 10px;
    transition: 0.3s;
    border: 2px solid white;

    background: #1c2b36;
    color: #d4af37;
}

/* AKTIVNÍ STRÁNKA V MENU */
div.menu a.active{
    background:  #d4af37;  
    color: #1c2b36;
    border: 2px solid white;
}

/* HOVER MENU */
div.menu a:hover{
    letter-spacing: 2px;
    background: #d4af37;
    color: #1c2b36;
    transform: scale(1.05);
}

/* TEXT */
p{
    margin: 15px 20px;
    font-size: 1.1rem;
    font-style: italic;
    line-height: 1.5;
}

/* OBRÁZKY V TEXTU */
p img{
    border: 5px solid white;
    float: left;
    margin: 10px;
    transform: rotate(5deg);
    transition: 0.3s;
    max-width: 250px;
}

/* HOVER NA OBRÁZEK */
p img:hover{
    border: 5px solid gray;
    transform: rotate(0deg) scale(1.05);
}

/* ODKAZY V TEXTU */
p a{
    color: #FCF40D;
    font-weight: bold;
}

p a:hover{
    color: white;
    text-decoration: none;
}



.galerie{
    text-align: center;
}

img.mini{
    width: 220px;
    height: 220px;
    border: 5px solid white;
    margin: 33px;
    object-fit: cover;
    display: inline-block;
    vertical-align: top;
    transition: 0.3s;
}

/* HOVER NA OBRÁZEK */
img.mini:hover{
    border: 5px solid gray;
    transform: scale(1.05);
}

.img-left{
    float: left;
    margin: 10px 15px 10px 0;

    width: 200px;
    border: 4px solid white;

    transform: rotate(6deg);
    transition: 0.3s;
}

/* HOVER NA OBRÁZEK */
.img-left:hover{
    transform: rotate(0deg) scale(1.10);
    border: 4px solid grey;
}

.img-right{
    float: right;
    margin: 10px 0 10px 15px;

    width: 200px;              /
    height: auto;

    border: 4px solid white;    

    transform: rotate(-6deg);  
    transition: 0.3s;
}

/* HOVER NA OBRÁZEK */
.img-right:hover{
    transform: rotate(0deg) scale(1.10);  /
    border: 4px solid grey;
}

ul{
    list-style: none;
    padding-left: 0;
}

ul li{
    font-size: 1.2rem;
    margin: 8px 0;
    position: relative;
    padding-left: 25px;
}

ul li::before{
    content: "●";
    color: #FFD700;
    position: absolute;
    left: 0;
}



ul a{
    color: #FFD700;
    text-decoration: none;
    font-weight: bold;
    transition: 0.3s;
}

ul a:hover{
    color: white;
    text-decoration: underline;
}
ul ul li::before{
    content: "➤";
    color: #FCFF40;
}




