
main {
    width: 95%;
    margin-top: 30px;
    margin-bottom: 50px;
}
main h1 {
    border-bottom: 2px solid var(--secondary-color);
    padding-bottom: 10px;
    margin-bottom: 20px;
}
h2, h3 {
    color: var(--text2-color);;
}


.contact-section {
    max-width: 600px;
    margin: auto;
    padding: 20px;
    color: var(--text2-color);
    border: 2px solid var(--tertiary-color);
    border-radius: 30px;
    -webkit-backdrop-filter: blur(10px);
    backdrop-filter: blur(10px);
    background-color: var(--secondaryGlass2-color);
    animation: fadeIn 1.3s ease-in-out forwards;
    opacity: 0;
}

.contact-section a {
    color: var(--link-color);
    text-decoration: none;
}

.contact-section a:hover {
    text-decoration: underline;
}

.contact-details, .store-details, .opening-hours {
    margin-bottom: 30px;
}

.contact-details h2, .store-details h2, .opening-hours h2 {
    border-bottom: 2px solid var(--secondary-background-color);
    padding-bottom: 5px;
    margin-bottom: 15px;
}

.contact-details p, .store-details p {
    margin: 5px 0;
}

.contact-details dl {
    display: flex;
    flex-wrap: wrap;
    max-width: 500px;
}

.contact-details dt, .contact-details dd {
    width: 50%;
    margin: 0;
    padding: 0;
}

.contact-details dt {
    font-weight: bold;
}

.payment-methods ul {
    list-style-type: disc;
    margin-left: 20px;
}

.opening-hours dl {
    margin-left: 20px;
}

.opening-hours dt {
    font-weight: bold;
    width: 150px; /* Nastavte šířku podle potřeby */
    float: left;
    clear: both;
}

.opening-hours dd {
    margin-left: 160px; /* Měla by odpovídat šířce dt */
    margin-bottom: 5px;
}

.location {
    width: 100%;
    display: flex;
    flex-direction: row;
    justify-content: center;
    align-items: center;
}

