/* RESET */
* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

/* ODKAZY */
a,
a:visited {
    color: #2e6f6a;
    text-decoration: none;
}

a:hover {
    color: #1f5f5a;
    text-decoration: underline;
}

/* FONT */
@font-face {
    font-family: 'Pokemon';
    src: url('../fonts/PokemonSolidNormal-xyWR.ttf') format('truetype');
}

/* ZÁKLAD */
body {
    font-family: Arial, sans-serif;
    background: linear-gradient(180deg, #eef7ee, #d9f1d4, #b2e2b2);
    color: #2e6f6a;
    line-height: 1.6;
}

/* KONTEJNER */
.container {
    width: 80%;
    max-width: 1800px;
    margin: 0 auto;
}
main {
    padding-top: 30px;
}

/* HLAVIČKA */
.site-header {
    padding: 25px 15px 20px;
}

.header-inner {
    max-width: 1100px;
    margin: 0 auto;
    text-align: center;
}

.logo-top {
    margin-bottom: 10px;
}

.logo-top img {
    width: 150px;
    height: auto;
}

.title-box h1 {
    font-family: 'Pokemon', sans-serif;
    margin: 0;
    font-size: 3.5em;
    color: #ffcb05;
    -webkit-text-fill-color: #ffcb05;
    text-shadow:
        4px 4px 0 #2a75bb,
        -4px -4px 0 #2a75bb,
        4px -4px 0 #2a75bb,
        -4px 4px 0 #2a75bb;
    letter-spacing: 10px;
    text-transform: uppercase;
}

.title-box p {
    margin-top: 20px;
    font-size: 0.95em;
    opacity: 0.8;
}

/* MENU */
.main-nav ul {
    list-style: none;
    margin-top: 20px;
    padding: 0;
    display: flex;
    justify-content: center;
    gap: 12px;
    flex-wrap: wrap;
}

.main-nav a {
    color: #2e6f6a;
    font-weight: bold;
    padding: 8px 14px;
    border-radius: 20px;
    background: rgba(255, 255, 255, 0.6);
    transition: 0.2s;
}

.main-nav a:hover {
    background: rgba(46, 111, 106, 0.15);
    text-decoration: none;
}

.main-nav a.active {
    background: #2e6f6a;
    color: white;
}

/* SPOLEČNÉ SEKCE */
.hero-panel,
.info-card,
.image-section,
.quick-links,
.site-footer {
    background: rgba(255, 255, 255, 0.45);
    border-radius: 24px;
    box-shadow: 0 8px 20px rgba(60, 120, 90, 0.12);
    border: 1px solid rgba(255, 255, 255, 0.35);
}

/* HERO */
.hero-panel {
    display: flex;
    justify-content: space-between;
    align-items: center;
    gap: 25px;
    padding: 28px;
    margin-bottom: 28px;
}

.hero-text {
    flex: 1;
}

.hero-text h2 {
    font-size: 2em;
    margin-bottom: 12px;
    color: #2e6f6a;
}

.hero-text p {
    margin-bottom: 12px;
}

.hero-text a,
.info-card a,
.site-footer a {
    color: #2e6f6a;
    font-weight: bold;
}

.hero-icon-area {
    min-width: 170px;
    display: flex;
    justify-content: center;
    align-items: center;
}

/* VELKÝ KRUH */
.circle-button {
    width: 130px;
    height: 130px;
    border-radius: 50%;
    border: 3px solid #2e6f6a;
    background: rgba(255, 255, 255, 0.5);
    display: flex;
    justify-content: center;
    align-items: center;
    position: relative;
    font-size: 2rem;
    font-weight: bold;
    letter-spacing: 1px;
    color: #2e6f6a;
}

.circle-button::before {
    content: "";
    position: absolute;
    inset: -12px;
    border-radius: 50%;
    border: 2px solid rgba(46, 111, 106, 0.22);
}

/* INFO GRID */
.info-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 20px;
    margin-bottom: 28px;
}

.info-card {
    padding: 22px;
    text-align: center;
}

.info-card h3 {
    margin: 14px 0 10px;
    color: #2e6f6a;
}

/* MALÝ KRUH */
.mini-circle {
    width: 62px;
    height: 62px;
    border-radius: 50%;
    margin: 0 auto;
    border: 2px solid #2e6f6a;
    background: rgba(255, 255, 255, 0.45);
    display: flex;
    justify-content: center;
    align-items: center;
    position: relative;
    font-weight: bold;
    color: #2e6f6a;
}

.mini-circle::before {
    content: "";
    position: absolute;
    inset: -8px;
    border-radius: 50%;
    border: 2px solid rgba(46, 111, 106, 0.2);
}

/* OBRÁZKOVÁ SEKCE */
.image-section {
    padding: 26px;
    margin-bottom: 28px;
}

.image-section h2 {
    margin-bottom: 10px;
    color: #2e6f6a;
}

.image-section p {
    margin-bottom: 18px;
}

/* RYCHLÉ ODKAZY */
.quick-links {
    padding: 26px;
    margin-bottom: 28px;
}

.quick-links h2 {
    margin-bottom: 16px;
    color: #2e6f6a;
}

.quick-links-grid {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 18px;
}

.quick-link-card {
    background: rgba(255, 255, 255, 0.58);
    border-radius: 20px;
    padding: 20px 14px;
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 14px;
    transition: 0.25s ease;
}

.quick-link-card:hover {
    transform: translateY(-4px);
    background: rgba(255, 255, 255, 0.78);
    text-decoration: none;
}

.quick-link-card span {
    text-transform: uppercase;
    letter-spacing: 1px;
    font-weight: bold;
    color: #2e6f6a;
}

/* PATIČKA */
.site-footer {
    max-width: 1100px;
    margin: 0 auto 30px;
    padding: 24px;
    text-align: center;
}

.site-footer p {
    margin-bottom: 8px;
}

.site-footer a:hover {
    text-decoration: underline;
}

/* FORMULÁŘ */
.contact-form {
    margin-top: 20px;
}

.form-row {
    display: flex;
    flex-direction: column;
    margin-bottom: 16px;
}

.form-row label {
    font-weight: bold;
    margin-bottom: 6px;
    color: #2e6f6a;
}

.form-row input,
.form-row textarea {
    padding: 12px 14px;
    border: 1px solid rgba(46, 111, 106, 0.25);
    border-radius: 14px;
    background: rgba(255, 255, 255, 0.7);
    font-family: Arial, sans-serif;
    font-size: 1rem;
    color: #2e6f6a;
}

.form-row input:focus,
.form-row textarea:focus {
    outline: none;
    border-color: #2e6f6a;
    box-shadow: 0 0 0 3px rgba(46, 111, 106, 0.12);
}

.form-button {
    align-self: flex-start;
    padding: 12px 20px;
    border: none;
    border-radius: 999px;
    background: rgba(255, 255, 255, 0.75);
    color: #2e6f6a;
    font-weight: bold;
    cursor: pointer;
    transition: 0.25s ease;
}

.form-button:hover {
    background: rgba(255, 255, 255, 0.95);
    transform: translateY(-2px);
}

/* FOTOGALERIE */
.gallery-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(180px, 1fr));
    gap: 18px;
    margin-top: 20px;
}

.gallery-card {
    background: rgba(255, 255, 255, 0.58);
    border-radius: 18px;
    padding: 12px;
    box-shadow: 0 4px 12px rgba(60, 120, 90, 0.08);
    transition: transform 0.25s ease;
    text-align: center;
}

.gallery-card:hover {
    transform: translateY(-4px);
}

.gallery-card a {
    text-decoration: none;
}

.gallery-card img {
    width: 100%;
    height: 160px;
    object-fit: cover;
    display: block;
    border-radius: 12px;
    margin-bottom: 10px;
    background: rgba(0, 0, 0, 0.05);
}

.gallery-card figcaption {
    font-size: 0.95rem;
    font-weight: bold;
    color: #2e6f6a;
}

/* KARUSEL */
.carousel.multi-carousel {
    display: flex;
    align-items: center;
    gap: 16px;
    margin-top: 20px;
}

.carousel-track-container {
    overflow: hidden;
    width: 100%;
}

.carousel-track {
    display: flex;
    gap: 20px;
    transition: transform 0.4s ease;
    will-change: transform;
}

.carousel-item {
    flex: 0 0 calc((100% - 40px) / 3);
    background: rgba(255, 255, 255, 0.58);
    border-radius: 18px;
    padding: 12px;
    box-shadow: 0 4px 12px rgba(60, 120, 90, 0.08);
}

.carousel-item img {
    width: 100%;
    height: 700px;
    object-fit: cover;
    display: block;
    border-radius: 12px;
    margin-bottom: 10px;
    background: rgba(0, 0, 0, 0.04);
}

.carousel-item figcaption {
    font-size: 0.95rem;
    color: #2e6f6a;
}

.carousel-btn {
    border: none;
    width: 48px;
    height: 48px;
    border-radius: 50%;
    background: rgba(255, 255, 255, 0.75);
    color: #2e6f6a;
    font-size: 1.4rem;
    cursor: pointer;
    transition: 0.25s ease;
    flex-shrink: 0;
}

.carousel-btn:hover {
    background: rgba(255, 255, 255, 0.95);
    transform: scale(1.05);
}

/* RESPONSIVE */
@media (max-width: 1000px) {
    .carousel-item {
        flex: 0 0 calc((100% - 20px) / 2);
    }

    .carousel-item img {
        height: 220px;
    }
}

@media (max-width: 900px) {
    .hero-panel {
        flex-direction: column;
        text-align: center;
    }

    .info-grid,
    .quick-links-grid {
        grid-template-columns: repeat(2, 1fr);
    }
}

@media (max-width: 700px) {
    .carousel.multi-carousel {
        gap: 10px;
    }

    .carousel-btn {
        width: 40px;
        height: 40px;
        font-size: 1.1rem;
    }

    .carousel-item {
        flex: 0 0 100%;
        padding: 10px;
    }

    .carousel-item img {
        height: auto;
        max-height: 420px;
        object-fit: contain;
    }

    .carousel-item figcaption {
        font-size: 0.9rem;
    }
}

@media (max-width: 600px) {
    .title-box h1 {
        font-size: 1.8em;
        letter-spacing: 4px;
    }

    .logo-top img {
        width: 100px;
    }

    .hero-text h2 {
        font-size: 1.6em;
    }

    .info-grid,
    .quick-links-grid {
        grid-template-columns: 1fr;
    }

    .container {
        width: 92%;
    }
}
.pokemon-card-img {
    width: 100%;
    max-width: 220px;
    height: 220px;
    object-fit: cover;
    display: block;
    margin: 0 auto 15px auto;
    border-radius: 16px;
}