body {
    margin: 0;
    font-family: "Georgia", serif;
    background: #f5f1e6;
    color: #2c2c2c;
}

header {
    text-align: center;
    padding: 50px 20px;
    background: #8b0000;
    color: white;
}

nav {
    background: #5c0000;
    padding: 10px;
    text-align: center;
}

.menu-toggle {
    display: none;
    color: white;
    font-size: 24px;
    cursor: pointer;
}

/* klasické menu */
.menu {
    display: flex;
    justify-content: center;
    gap: 25px;
}

.menu a {
    color: white;
    text-decoration: none;
    font-weight: bold;
}

/* MOBIL */
@media (max-width: 768px) {

    .menu-toggle {
        display: block;
    }

    .menu {
        display: none;
        flex-direction: column;
        margin-top: 10px;
    }

    .menu.show {
        display: flex;
    }

    .menu a {
        padding: 10px;
        border-top: 1px solid rgba(255,255,255,0.2);
    }
}

#hero {
    text-align: center;
    padding: 140px 200px;
    background: url("images/hero.jpg") center/cover no-repeat;
    color: #d4af37; /* zlatá */
    text-shadow: 2px 2px 10px black;
}

section {
    padding: 60px 20px;
    max-width: 1000px;
    margin: auto;
}

.cards {
    display: flex;
    gap: 20px;
    flex-wrap: wrap;
}

.card {
    background: white;
    padding: 20px;
    flex: 1;
    border-radius: 10px;
    border: 1px solid #ddd;
}

ul {
    line-height: 1.8;
}

form {
    display: flex;
    flex-direction: column;
    gap: 10px;
}

input, textarea {
    padding: 10px;
    border-radius: 5px;
    border: 1px solid #ccc;
}

button {
    background: #8b0000;
    color: white;
    padding: 10px;
    border: none;
    cursor: pointer;
}

footer {
    text-align: center;
    padding: 20px;
    background: #5c0000;
    color: white;
}
/* KALENDÁŘ */
.calendar-controls {
    display: flex;
    justify-content: center;
    align-items: center;
    gap: 20px;
    margin-bottom: 20px;
}

#calendar {
    display: grid;
    grid-template-columns: repeat(7, 1fr);
    gap: 5px;
}

.day {
    padding: 15px;
    background: white;
    text-align: center;
    cursor: pointer;
    border: 1px solid #ddd;
}

.day.event {
    background: #ffdddd;
    font-weight: bold;
}

/* GALERIE */
.gallery {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(200px, 1fr));
    gap: 10px;
}

.gallery img {
    width: 100%;
    height: 200px;
    object-fit: cover;
    border-radius: 10px;
    cursor: pointer;
    transition: 0.3s;
}

.gallery img:hover {
    transform: scale(1.05);
}
/* LIGHTBOX */
#lightbox {
    display: none;
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background:#000000cc;
    justify-content: center;
    align-items: center;
}

#lightbox img {
    max-width: 90%;
    max-height: 90%;
}
.logo {
    max-width: 400px;
    display: block;
    margin: 0 auto 10px;
}
.akce-list {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
    gap: 20px;
}

.akce {
    background: white;
    padding: 20px;
    border-radius: 10px;
    border: 1px solid #ddd;
}

.akce h3 {
    margin-top: 0;
}

.akce a {
    display: inline-block;
    margin-top: 10px;
    color: #8b0000;
    text-decoration: none;
    font-weight: bold;
}
