body {
    background:
        radial-gradient(circle at top, #2a0008 0%, #0d0d0d 70%);
    color: white;
}

.container {
    max-width: 85%;
    margin: 60px auto;
    padding: 0 20px;
}

.card {
    background: #1a1a1a;
    color: white;
    padding: 50px;
    border-radius: 14px;
    box-shadow: 0 0 25px rgba(0,0,0,0.5);
}

/* ===== KONTAKTNÍ ŘÁDEK ===== */
.contact-info-row {
    display: flex;
    justify-content: space-between;
    gap: 30px;
    margin-bottom: 50px;
    flex-wrap: wrap;
}

/* Kontejner všech položek */
.contact-info-row {
    display: flex;
    justify-content: space-between; /* rozprostře do řádku */
    align-items: flex-start;
    gap: 40px;
    margin: 40px 0;
    flex-wrap: wrap; /* aby se na mobilu zalamovalo */
}

/* Každá položka */
.contact-item {
    flex: 1;
    text-align: center;
    margin-bottom: 50px;
}

/* Vnitřní div – ikona nad textem */
.contact-item div {
    display: flex;
    flex-direction: column;  /* ikona nad text */
    align-items: center;
    gap: 12px;
    font-size: 18px;
    font-weight: 500;
}

/* Ikona */
.contact-item img {
    width: 70px;
    height: auto;
    object-fit: contain;
    transition: 0.3s ease;
    filter: invert(1);
}

.icon {
    font-size: 28px;
    color: #c9a227;
}

/* ===== FORM + FB ===== */
.contact-main {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 50px;
}

/* FORM */
.contact-form h2 {
    margin-bottom: 20px;
}

.contact-form input,
.contact-form textarea {
    width: 90%;
    padding: 12px;
    margin-bottom: 15px;
    border-radius: 6px;
    border: none;
    background: #2a2a2a;
    color: white;
}

.contact-form textarea {
    min-height: 140px;
}

.contact-form button {
    background: #c9a227;
    color: black;
    padding: 12px 20px;
    border: none;
    border-radius: 6px;
    cursor: pointer;
    font-weight: bold;
}

.contact-form button:hover {
    background: #e5b93f;
}

/* FB */
.fb-box {
    display: flex;
    justify-content: center;
    align-items: center;
    margin-left: 10%;
}

/* SOCIAL */
.social-icons {
    margin-top: 50px;
    display: flex;
    justify-content: left;
    gap: 40px;
}

.social-icons img {
    width: 100px;
}
.social-icons a {
    transition: 500ms;
}

.social-icons a:hover {
    transform: scale(1.1);
}

/* ===== CENÍK SEKCE ===== */
.card {
    margin-top: 5%;
}

.card h2 {
    text-align: center;
    margin-bottom: 30px;
    font-size: 28px;
    letter-spacing: 1px;
    position: relative;
}

/* Zlatá linka pod nadpisem */
.card h2::after {
    content: "";
    display: block;
    width: 70px;
    height: 2px;
    background: #8b0000; /* tmavě rudá */
    margin: 10px auto 0;
}

/* TABULKA */
.card table {
    width: 100%;
    border-collapse: collapse;
    margin-top: 20px;
    background: #141414;
    border-radius: 8px;
    overflow: hidden;
}

/* Hlavička tabulky */
.card th {
    background: #2b0008; /* tmavě rudá */
    color: white;
    padding: 15px;
    text-align: left;
    font-size: 16px;
    letter-spacing: 0.5px;
}

/* Buňky */
.card td {
    padding: 18px 15px;
    border-bottom: 1px solid #2a2a2a;
    font-size: 17px;
}

/* Poslední řádek bez spodní linky */
.card tr:last-child td {
    border-bottom: none;
}

/* Cena výraznější */
.card td:last-child {
    font-weight: bold;
    color: #c9a227; /* zlatá */
}

/* Poznámka */
.note {
    margin-top: 25px;
    font-size: 14px;
    opacity: 0.7;
    text-align: center;
}
/* ===== DROPDOWN CENÍK ===== */

.dropdown-row {
    padding: 0;
}

.price-dropdown {
    background: #141414;
    border-radius: 8px;
    overflow: hidden;
}

/* Summary (klikací část) */
.price-dropdown summary {
    list-style: none;
    cursor: pointer;
    padding: 18px 20px;
    display: flex;
    justify-content: space-between;
    align-items: center;
    font-size: 18px;
    font-weight: 500;
    background: #2b0008; /* tmavě rudá */
    color: white;
    position: relative;
}

/* Odstraní default šipku */
.price-dropdown summary::-webkit-details-marker {
    display: none;
}

/* Vlastní šipka */
.price-dropdown summary::after {
    content: "▼";
    font-size: 14px;
    margin-left: 15px;
    transition: 0.3s ease;
}

/* Otočení šipky při otevření */
.price-dropdown[open] summary::after {
    transform: rotate(180deg);
}

/* Cena zvýrazněná */
.price-dropdown .price {
    color: #c9a227;
    font-weight: bold;
    margin-left: 8%;
}

/* Obsah dropdown */
.dropdown-content {
    padding: 20px;
    background: #1a1a1a;
    line-height: 1.6;
    font-size: 16px;
    border-top: 1px solid #3a000d;
}

/* ===================================================== */
/* ===================== MOBILE FIX ==================== */
/* ===================================================== */

@media (max-width: 768px) {

    /* Obecné mezery */
    .container {
        margin: 30px auto;
        padding: 0 15px;
    }

    .card {
        padding: 25px;
        border-radius: 10px;
    }

    /* ===== KONTAKT INFO ===== */
    .contact-info-row {
        flex-direction: column;
        align-items: center;
        gap: 30px;
        margin: 30px 0;
    }

    .contact-item {
        margin-bottom: 0;
    }

    .contact-item img {
        width: 60px;
    }

    /* ===== FORM + FB ===== */
    .contact-main {
        grid-template-columns: 1fr;
        gap: 40px;
    }

    .fb-box {
        display: none;
    }

    /* ===== SOCIAL ===== */
    .social-icons {
        justify-content: center;
        gap: 25px;
        flex-wrap: wrap;
    }

    .social-icons img {
        width: 80px;
    }

    /* ===== TABULKA ===== */
    .card table,
    .card thead,
    .card tbody,
    .card th,
    .card td,
    .card tr {
        display: block;
    }

    .card th {
        display: none;
    }

    .card tr {
        margin-bottom: 20px;
        background: #1a1a1a;
        padding: 15px;
        border-radius: 8px;
    }

    .card td {
        border: none;
        padding: 8px 0;
        font-size: 16px;
    }

    .card td:last-child {
        color: #c9a227;
        font-size: 18px;
    }

    /* ===== DROPDOWN ===== */
    .price-dropdown summary {
        flex-direction: column;
        align-items: flex-start;
        gap: 8px;
        font-size: 16px;
    }

    .price-dropdown .price {
        margin-left: 0;
    }

    .dropdown-content {
        font-size: 15px;
        padding: 15px;
    }

}