/* ================= ZÁKLADNÍ NASTAVENÍ ================= */
* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

body {
    font-family: Arial, Helvetica, sans-serif;
    line-height: 1.6;
    background-image: url('one-piece-logo-stylized-mmrmmo7qbip99uqi.jpg');
    background-size: cover;
    background-position: center;
    background-attachment: fixed;
    display: flex;
    flex-direction: column;
    min-height: 100vh;
}

/* Tmavý overlay pro lepší čitelnost */
body::before {
    content: "";
    position: fixed;
    inset: 0;
    background: rgba(0,0,0,0.6);
    z-index: -1;
}

main {
    flex: 1;
    display: flex;
    flex-direction: column;
    padding: 40px;
}

/* ================= MENU ================= */
header {
    background-color: #111;
    padding: 20px 0;
    width: 100%;
    z-index: 1000;
}

.menu {
    list-style: none;
    display: flex;
    justify-content: center;
}

.menu li {
    margin: 0 15px;
}

.menu a {
    text-decoration: none;
    color: white;
    font-weight: bold;
    transition: 0.3s;
}

.menu a:hover {
    color: #f39c12;
    border-bottom: 2px solid #f39c12;
}

/* ================= HERO SEKCE ================= */
.hero {
    height: 150px;
    display: flex;
    align-items: center;
    justify-content: center;
}

.hero h1 {
    color: white;
    font-size: 42px;
    background-color: rgba(0,0,0,0.6);
    padding: 10px 20px;
    border-radius: 10px;
}

/* ================= OBSAH BOX ================= */
.text-center,
.content-box {
    max-width: 800px;
    width: 90%;
    margin: 0 auto;
    padding: 30px;
    background: rgba(0, 0, 0, 0.65);
    border-radius: 15px;
    box-shadow: 0 0 25px rgba(0,0,0,0.6);
    color: #fff;
    text-align: center;
}

.content-box h1 {
    font-size: 40px;
    margin-bottom: 20px;
    color: #f39c12;
}

.content-box h2 {
    margin-top: 20px;
    color: #ffcc00;
}

.content-box p,
#textContent {
    font-size: 18px;
    line-height: 1.8;
    color: #fff;
}
.pribeh {
    color: white;
}

/* ================= GALERIE KARTY ================= */
.galerie {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(220px, 1fr));
    gap: 25px;
    margin-top: 40px;
}

.postava {
    background: rgba(255, 255, 255, 0.95);
    padding: 15px;
    border-radius: 15px;
    transition: transform 0.3s, box-shadow 0.3s;
}

.postava:hover {
    transform: scale(1.05);
    box-shadow: 0 8px 20px rgba(0,0,0,0.4);
}

.postava img {
    width: 100%;
    height: 200px;
    object-fit: cover;
    border-radius: 10px;
}

.postava p {
    margin-top: 12px;
    font-weight: bold;
    font-size: 18px;
    color: #111;
}

.postava a {
    text-decoration: none;
}

/* ================= SLOUPCE ================= */
.columns {
    display: flex;
    gap: 20px;
    margin: 40px auto;
    max-width: 1100px;
}

.column {
    flex: 1;
    background: white;
    padding: 15px;
    border-radius: 10px;
}

.column img {
    width: 100%;
    border-radius: 10px;
    margin-bottom: 10px;
}

/* ================= VIDEO ================= */
.video {
    display: flex;
    justify-content: center;
    align-items: center;
    width: 100%;
    margin: 40px 0;
}

.video-links {
    width: 80%;
    max-width: 1000px;
    aspect-ratio: 16 / 9;
}

.video-links iframe {
    width: 100%;
    height: 100%;
    border-radius: 15px;
}

/* ================= FORMULÁŘ ================= */
form {
    max-width: 600px;
    margin: 40px auto;
    background: white;
    padding: 20px;
    border-radius: 10px;
}

form input,
form textarea {
    width: 100%;
    padding: 10px;
    margin-bottom: 15px;
    border-radius: 5px;
    border: 1px solid #ccc;
}

form button {
    padding: 10px 20px;
    background-color: #111;
    color: white;
    border: none;
    border-radius: 5px;
    cursor: pointer;
    transition: 0.3s;
}

form button:hover {
    background-color: #f39c12;
}

/* ================= MAPA ================= */
.map-container {
    max-width: 1100px;
    margin: 40px auto;
    border-radius: 10px;
    overflow: hidden;
}

.map-container iframe {
    width: 100%;
    height: 400px;
    border: 0;
}

/* ================= FOOTER ================= */
footer {
    background-color: #111;
    color: white;
    text-align: center;
    padding: 20px;
    margin-top: auto;
}

.footer-menu {
    margin-top: 10px;
}

.footer-menu a {
    color: white;
    margin: 0 10px;
    text-decoration: none;
    transition: 0.3s;
}

.footer-menu a:hover {
    color: #f39c12;
}

/* ================= RESPONSIVE ================= */
@media (max-width: 768px) {
    .menu {
        flex-direction: column;
        align-items: center;
    }

    .menu li {
        margin: 10px 0;
    }

    .columns {
        flex-direction: column;
    }

    .video-links {
        width: 95%;
    }

    .hero h1 {
        font-size: 30px;
    }
}

@media (min-width: 769px) and (max-width: 1024px) {
    .columns {
        gap: 15px;
    }

    .video-links {
        width: 90%;
    }

    .hero h1 {
        font-size: 36px;
    }
}