body {
    background-color: #f4efe8;
}

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

.contact-hero {
    background:
        linear-gradient(rgba(0, 0, 0, 0.45), rgba(0, 0, 0, 0.45)),
        url("../images/slide1.jpg") center/cover no-repeat;
    min-height: 42vh;
    display: flex;
    flex-direction: column;
}

.contact-hero-inner {
    max-width: 75rem;
    width: 100%;
    margin: auto;
    padding: 2.5rem 1.875rem 4.375rem;
    color: white;
}

.contact-hero-inner h1 {
    font-size: 4rem;
    margin-bottom: 0.938rem;
}

.contact-hero-inner p {
    font-size: 1.15rem;
    max-width: 43.75rem;
    line-height: 1.7;
}

.contact-top {
    max-width: 75rem;
    margin: 4.375rem auto 2.5rem;
    padding: 0 1.563rem;
    display: grid;
    grid-template-columns: 1fr 1.1fr;
    gap: 1.875rem;
}

.contact-info-card,
.contact-form-card {
    background: white;
    border-radius: 1.375rem;
    padding: 2.188rem;
    box-shadow: 0 0.625rem 1.75rem rgba(0, 0, 0, 0.08);
    min-height: 33.125rem;
}

.contact-info-card h2,
.contact-form-card h2 {
    font-size: 2rem;
    margin-bottom: 1.125rem;
}

.contact-info-card p {
    line-height: 1.8;
    margin-bottom: 0.875rem;
}

.contact-details-list {
    margin: 1.563rem 0;
}

.contact-details-list a {
    color: #c0392b;
    text-decoration: none;
}

.contact-details-list a:hover {
    text-decoration: underline;
}

.social-links {
    display: flex;
    flex-wrap: wrap;
    gap: 0.75rem;
    margin-top: 1.25rem;
}

.social-links a {
    text-decoration: none;
    background-color: #c0392b;
    color: white;
    padding: 0.625rem 1rem;
    border-radius: 0.5rem;
    transition: 0.3s;
}

.social-links a:hover {
    background-color: #a93226;
}

.contact-form {
    display: flex;
    flex-direction: column;
    gap: 1rem;
}

.contact-form textarea,
.contact-form input {
    width: 100%;
    border: 0.063rem solid #ddd;
    border-radius: 0.75rem;
    padding: 1rem;
    font-size: 1rem;
    font-family: Arial, sans-serif;
    background: #faf8f5;
    outline: none;
}

.contact-form textarea {
    resize: vertical;
    min-height: 8.75rem;
}

.contact-form textarea:focus,
.contact-form input:focus {
    border-color: #c0392b;
}

.contact-form button {
    align-self: flex-start;
    background-color: #c0392b;
    color: white;
    border: none;
    border-radius: 0.5rem;
    padding: 0.75rem 1.5rem;
    font-size: 1rem;
    font-weight: bold;
    cursor: pointer;
    transition: 0.3s;
}

.contact-form button:hover {
    background-color: #a93226;
}

.contact-bottom {
    max-width: 81.25rem;
    margin: 2.5rem auto 5rem;
    padding: 0 1.563rem;
}

.bottom-panel {
    background: #e9dcc7;
    border-radius: 3rem 3rem 0 0;
    padding: 3.438rem 2.5rem;
    display: grid;
    grid-template-columns: 1fr 1fr 20rem;
    gap: 2.5rem;
    align-items: start;
}

.hours-block h3,
.bottom-contact-block h3 {
    font-size: 2rem;
    margin-bottom: 1.375rem;
    color: #5c3b1e;
}

.hours-row {
    display: flex;
    justify-content: space-between;
    border-bottom: 0.063rem solid rgba(92, 59, 30, 0.25);
    padding: 0.875rem 0;
    font-size: 1.05rem;
}

.bottom-contact-block p {
    margin-bottom: 0.875rem;
    line-height: 1.8;
}

.bottom-image-block {
    display: flex;
    justify-content: center;
    align-items: flex-start;
}

.bottom-image-block img {
    width: 20rem;
    height: 20rem;
    object-fit: cover;
    display: block;
    border-radius: 1.75rem;
    box-shadow: 0 0.625rem 1.5rem rgba(0, 0, 0, 0.12);
    background: #ddd;
}

footer {
    background-color: #111;
    color: white;
    text-align: center;
    padding: 1.25rem;
    margin-top: 0;
}

@media (max-width: 59.375rem) {
    .contact-top {
        grid-template-columns: 1fr;
    }

    .contact-info-card,
    .contact-form-card {
        min-height: auto;
    }

    .bottom-panel {
        grid-template-columns: 1fr;
        border-radius: 1.75rem 1.75rem 0 0;
    }

    .bottom-image-block {
        justify-content: flex-start;
    }

    .contact-hero-inner h1 {
        font-size: 2.8rem;
    }
}

@media (max-width: 37.5rem) {
    .contact-hero-inner {
        padding: 1.875rem 1.25rem 3.125rem;
    }

    .contact-hero-inner h1 {
        font-size: 2.2rem;
    }

    .contact-info-card,
    .contact-form-card {
        padding: 1.563rem;
    }

    .bottom-panel {
        padding: 2.188rem 1.375rem;
    }

    .bottom-image-block img {
        width: 100%;
        height: auto;
        aspect-ratio: 1 / 1;
    }
}

.bottom-image-block {
    display: flex;
    justify-content: center;
    align-items: flex-start;
}

.dish-slideshow {
    position: relative;
    width: 20rem;
    height: 20rem;
    border-radius: 1.75rem;
    overflow: hidden;
    box-shadow: 0 0.625rem 1.5rem rgba(0, 0, 0, 0.12);
    background: #ddd;
}

.dish-slide {
    position: absolute;
    inset: 0;
    width: 100%;
    height: 100%;
    object-fit: cover;
    opacity: 0;
    transition: opacity 1s ease-in-out;
}

.dish-slide.active {
    opacity: 1;
}

.dish-slideshow {
    position: relative;
    width: 20rem;
    height: 20rem;
    border-radius: 1.75rem;
    overflow: hidden;
    box-shadow: 0 0.625rem 1.5rem rgba(0, 0, 0, 0.12);
    background: #ddd;
}

.dish-slide {
    position: absolute;
    inset: 0;
    width: 100%;
    height: 100%;
    object-fit: cover;
    opacity: 0;
    transition: opacity 1s ease-in-out;
}

.dish-slide.active {
    opacity: 1;
}

/* DOTS */
.dish-dots {
    position: absolute;
    bottom: 0.75rem;
    width: 100%;
    display: flex;
    justify-content: center;
    gap: 0.5rem;
}

.dish-dot {
    width: 0.5rem;
    height: 0.5rem;
    border-radius: 50%;
    background: rgba(255, 255, 255, 0.6);
    transition: 0.3s;
}

.dish-dot.active {
    background: white;
    transform: scale(1.2);
}

.contact-form-card {
    background: #fff;
    padding: 1.875rem;
    border-radius: 1rem;
    box-shadow: 0 0.5rem 1.375rem rgba(0, 0, 0, 0.08);
}

.contact-map-section {
    padding: 0 1.25rem 5rem;
}

.contact-map-card {
    max-width: 68.75rem;
    margin: 0 auto;
    background: #fff;
    padding: 1.875rem;
    border-radius: 1rem;
    box-shadow: 0 0.5rem 1.375rem rgba(0, 0, 0, 0.08);
}

.contact-map-card h2 {
    margin-bottom: 1.25rem;
    text-align: center;
}

.contact-map-card iframe {
    width: 100%;
    height: 26.25rem;
    border: 0;
    border-radius: 0.75rem;
}

.bottom-image-block {
    width: 100%;
    min-width: 0;
}

.dish-slideshow {
    width: 100%;
    max-width: 100%;
    overflow: hidden;
    border-radius: 1.125rem;
    position: relative;
}

.dish-slide {
    width: 100%;
    height: auto;
    display: block;
    object-fit: cover;
}

.dish-slideshow img {
    width: 100%;
    max-width: 100%;
    display: block;
}

@media (max-width: 48rem) {
    .bottom-panel {
        grid-template-columns: 1fr;
    }

    .bottom-image-block {
        width: 100%;
        max-width: 100%;
    }

    .dish-slideshow {
        width: 100%;
        max-width: 100%;
    }

    .dish-slide {
        width: 100%;
        height: auto;
    }
}