* {
    box-sizing: border-box;
    margin: 0;
    padding: 0;
}

::selection {
    background-color: #d1d1d180;
}

html {
    scroll-behavior: smooth;
}

body {
    background-color: #fff;
    color: #000;
    font-family: 'Raleway', sans-serif;
}

header {
    width: 100%;
    padding: 0 5rem;
    margin-top: 2.5rem;
    display: flex;
    justify-content: space-between;
    text-align: center;
}

header .links {
    display: flex;
    align-items: center;
    gap: 2rem;
}

header .links a {
    text-decoration: none;
}

header .links .findus {
    color: #000;
    border: 2px solid #000;
    padding: 0.5rem 1.7rem;
    font-family: 'Roboto Condensed', sans-serif;
}

header .hours h1 {
    color: #F35050;
    font-size: 1.2em;
    font-weight: bold;
}

.logo {
    padding: 10% 30%;
    padding-bottom: 15%;
    position: relative;
}

.logo svg {
    position: absolute;
    bottom: -24.5px;
    left: 50%;
    transform: translateX(-50%);
}

.intro {
    background-color: #D83533;
    color: #fff;
    width: 100%;
    padding: 10% 15%;
    text-align: center;
    font-size: 1.7em;
    line-height: 1.5em;
}

.gallery {
    width: 100%;
    min-height: 85vw;
    position: relative;
}

.gallery div {
    position: absolute;
    display: flex;
    justify-content: center;
    align-items: center;
}

.gallery .p1 {
    top: 8%;
    left: 8%;
    width: 38%;
}

.gallery .p2 {
    top: 12%;
    right: 8%;
    width: 30%;
    max-width: 550px;
}

.gallery .p3 {
    top: 43%;
    left: 11%;
    width: 37%;
}

.gallery .p4 {
    top: 64%;
    right: 8%;
    width: 37%;
}

.gallery .d1 {
    top: 15%;
    left: 49%;
    width: 9%;
}

.gallery .d2 {
    top: 45%;
    left: 53%;
    width: 6%;
}

.gallery .d3 {
    top: 78%;
    left: 37%;
    width: 7%;
}

.gallery div img {
    width: 100%;
    max-width: 700px;
    transition: filter 0.3s;
}

.gallery div img:hover {
    filter: brightness(1.15);
    transition: filter 0.3s;
}

.feedback {
    display: flex;
    align-items: flex-start;
    justify-content: center;
    padding: 4rem 10%;
    background-color: #f2f2f2;
    box-sizing: border-box;
    font-family: "Poppins", sans-serif;
}

.feedback .form {
    flex: 1 1 400px;
    max-width: 600px;
}

.feedback h1 {
    font-size: 2rem;
    font-weight: 800;
    margin-bottom: 2rem;
    color: #111;
}

.feedback .field {
    margin-bottom: 1.5rem;
}

.feedback .field label {
    display: block;
    margin-bottom: 0.5rem;
    font-size: 0.95rem;
    color: #333;
}

.feedback .field input[type="text"],
.feedback .field input[type="email"],
.feedback .field textarea {
    width: 100%;
    padding: 0.75rem 1rem;
    border: none;
    border-radius: 4px;
    background-color: #ffffff;
    font-size: 1rem;
    box-sizing: border-box;
    resize: vertical;
    font-family: "Poppins", sans-serif;
}

.feedback .field textarea {
    min-height: 8rem;
}

.feedback .field #submit {
    display: block;
    width: 100%;
    padding: 1rem;
    font-size: 1.1rem;
    font-weight: 600;
    color: #fff;
    background-color: #d32f2f;
    border: none;
    border-radius: 4px;
    cursor: pointer;
    transition: background-color 0.2s ease;
}

.feedback .field #submit:hover {
    background-color: #b62828;
}

.feedback .img {
    display: flex;
    align-items: flex-start;
    justify-content: flex-end;
}

.feedback .img img {
    width: 75%;
    max-width: 500px;
    height: auto;
    display: block;
    box-shadow: 0 10px 15px -3px rgb(0 0 0 / 0.1), 0 4px 6px -4px rgb(0 0 0 / 0.1);
    border-radius: 0 40px 0 40px;
    object-fit: cover;
}

footer {
    width: 100%;
    padding: 4rem 10%;
    display: flex;
    align-items: end;
    justify-content: space-between;
    font-family: "Roboto", sans-serif;
}

footer .contact .hours {
    margin-bottom: 2rem;
}

footer .contact .hours h1 {
    color: #D83533;
    font-size: 1.3em;
}

footer .links a, footer .links div {
    margin-bottom: 0.5rem;
    display: flex;
    align-items: center;
    gap: 0.5rem;
    color: #000;
    text-decoration: none;
}

footer .links a:hover {
    color: #D83533;
}

footer .coffee {
    width: 15%;
}

@media (max-width: 768px) {

    header {
        padding: 0 10%;
        flex-wrap: wrap;
        font-size: 0.8em;
    }

    .logo {
        padding: 20% 15%;
    }

    .intro {
        padding: 15% 5%;
        font-size: 1.2em;
    }

    .logo svg {
        display: none;
    }

    .gallery {
        min-height: auto;
        padding: 2rem 0;
    }

    .gallery .p1,
    .gallery .p2,
    .gallery .p3,
    .gallery .p4 {
        width: 80%;
        position: relative;
        top: auto;
        left: auto;
        right: auto;
        margin: 1rem auto;
    }

    .gallery .d1,
    .gallery .d2,
    .gallery .d3 {
        display: none;
    }

    .feedback {
        padding: 2rem 10%;
        flex-wrap: wrap;
    }

    .feedback .form,
    .feedback .img {
        flex: 1 1 100%;
        max-width: none;
    }

    .feedback .img {
        margin-top: 2rem;
        justify-content: center;
    }

    footer {
        padding: 2rem 0;
        flex-direction: column;
        align-items: center;
        font-size: 0.9em;
    }

    footer .contact {
        width: 100%;
    }

    footer .contact .hours {
        text-align: center;
    }

    footer .coffee {
        width: 30%;
        margin-top: 2rem;
    }

    footer .links a,
    footer .links div {
        justify-content: center;
    }

    header .links {
        gap: 1rem;
    }
}