/* ========== Contact page main cover ========== */
.contact-main-cover {
    position: relative;
    background-image: linear-gradient(rgba(0, 0, 0, 0), rgba(0, 0, 0, 1)), url('/images/R7__0491.webp');
    background-position: top;
    background-size: cover;
    height: 600px;
    display: flex;
    align-items: center;
    text-align: center;
    color: white;
}

.contact-main-cover h1 {
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
}

/* ========== Contact section container ========== */
.contact-section {
    padding: 4rem 0;
    color: white;
    background: linear-gradient(to top, #060606, #000000);
    display: flex;
    flex-direction: column;
    justify-content: center;
    box-sizing: border-box;
}

/* ========== Opening Hours header container ========== */
.header-container hr {
    margin-left: auto;
    margin-right: auto;
}

.opening-hours h2 {
    text-align: center;
    padding-bottom: 20px;
    font-size: 1.5rem;
    margin: 0;
}

/* ========== Hours container grid ========== */
.hours-container {
    padding: 50px 15px 0;
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 1rem;
    max-width: 960px;
    width: 100%;
    margin: 0 auto;
    box-sizing: border-box;
}

.hours-container .column {
    background: #0f0f0f;
    box-shadow: 0 0 12px rgba(0, 0, 0, 0.6);
    border-radius: 8px;
    padding: 20px 20px 10px;
    color: white;
    display: flex;
    flex-direction: column;
    align-items: center;
    box-sizing: border-box;
}

.hours-container .column h3 {
    margin: 0 0 20px 0;
    font-weight: 700;
    font-size: 1.1rem;
}

.hours-container ul {
    list-style: none;
    padding: 0;
    margin: 0;
    text-align: center;
}

.hours-container li {
    margin-bottom: 10px;
    font-size: 15px;
    color: white;
}

/* ========== Contact info title ========== */
.contact-info h2 {
    text-align: center;
    width: 100%;
}

/* ========== Contact container grid ========== */
.contact-container {
    padding: 50px 15px 0;
    display: grid;
    gap: 20px;
    grid-template-columns: repeat(2, 1fr);
    max-width: 960px;
    width: 100%;
    margin: 0 auto;
}

/* ========== Contact info section ========== */
.contact-info {
    padding: 20px 20px 40px;
    background-color: #0f0f0f;
    border-radius: 8px;
    display: flex;
    flex-direction: column;
    box-sizing: border-box;
}

/* ========== Contact details layout ========== */
.contact-details {
    display: flex;
    align-items: flex-start;
    gap: 15px;
}

.icon-list {
    list-style: none;
    color: white;
    font-size: 1.25rem;
    display: flex;
    flex-direction: column;
    gap: 15px;
    width: 20px;
}

.text-list {
    list-style: none;
    padding: 0;
    margin: 0;
    font-size: 16px;
    display: flex;
    flex-direction: column;
    gap: 20px;
}

.text-list a {
    color: white;
    text-decoration: none;
}

.text-list a:hover,
.text-list a:focus {
    text-decoration: none;
}

.contact-item-list {
    list-style: none;
    padding: 0;
    margin: 0;
    display: flex;
    flex-direction: column;
    gap: 20px;
}

.contact-item-list li {
    display: grid;
    grid-template-columns: 20px 1fr;
    align-items: start;
    gap: 10px;
    color: white;
    font-size: 16px;
    line-height: 1.4;
}

.contact-item-list .icon {
    font-size: 1.25rem;
    flex-shrink: 0;
}

.contact-item-list .text a {
    color: white;
    text-decoration: none;
}

.contact-item-list .text a:hover,
.contact-item-list .text a:focus {
    text-decoration: none;
}

/* ========== Map container ========== */
.map {
    border-radius: 8px;
    overflow: hidden;
}

.map iframe {
    width: 100%;
    height: 100%;
    border: none;
    border-radius: 8px;
    min-height: 500px;
}

/* ========== Responsive adjustments ========== */
@media (max-width: 700px) {
    .hours-container {
        grid-template-columns: repeat(3, 1fr);
        gap: 0.5rem;
        padding: 20px 10px 0;
    }

    .hours-container .column {
        padding: 20px 10px 10px;
    }

    .hours-container .column h3 {
        font-size: 1rem;
    }

    .hours-container li {
        font-size: 14px;
    }

    .contact-container {
        grid-template-columns: 1fr;
        padding-top: 20px;
    }
}