@import "css/header.css";
@import "css/main.css";
@import url("css/footer.css");
/* @import url("css/main-concept.css");
@import url("css/media-960.css"); */

*,
*::before,
*::after {
    box-sizing: border-box;
}

:root {
    --accent: #d24a43;
    --l-accent: #df938f;
    --color: #ffffff;
    --second-color: #000000;
    --outer-margin: 10rem;
    --inner-margin: 5rem;
    --borderRadius: 14px;
    --iconWidth: 40px;
    --opacityHover: 0.7;
    --transitionHover: 0.300ms ease-in-out;
}

body {
    position: relative;
    font-family: 'Montserrat';
    background-color: #000;
    color: var(--color);
    padding: 0 2rem;
    border-radius: var(--borderRadius);
    margin: 0;
}

body * {
    border-radius: inherit;
}

#scroll-indicator {
    position: fixed;
    top: 0;
    left: 0;
    height: 3px;
    background-color: var(--accent);
    z-index: 5;
    transition: width 250ms ease-out;
}

h1 {
    text-transform: uppercase;
    color: var(--color);
    text-align: center;
}

p a,
section a {
    display: block;
    width: 100%;
    height: 100%;
    padding: 4px 2rem;
}

#modal {
    position: fixed;
    top: 100px;
    left: 0;
    right: 0;
    bottom: 1rem;
    height: max-content;
    background-color: rgba(0, 0, 0, 0.5);
    display: none;
    z-index: 100;
}

#modal.show {
    display: flex;
    align-items: flex-start;
    justify-content: flex-start;
    background-color: #000;
    min-height: 90vh;
    height: min-content;
    max-height: 120vh;
}

#modal-content {
    width: 38%;
    margin: 0 auto;
    background-color: var(--accent);
    padding: 2rem;
    text-align: center;
}

#modal-content h2 {
    min-width: 200px;
    width: 100%;
}

#modal-content p {
    text-align: left;

}

#modal-content .booking {
    width: 100%;
}

.show img {
    display: block;
    height: 70vh;
    margin-right: 0;
    margin: 0 auto;
}

.image #modal-content {
    background-color: transparent;
    padding: 0;
    display: flex;
    flex-wrap: wrap;
    justify-content: center;
    align-items: center;
}

#modal .close {
    position: absolute;
    top: 2rem;
    right: 2rem;
    cursor: pointer;
    font-size: 5rem;
    width: 40px;
    height: 40px;
    font-weight: 100;
    display: block;
    padding: 4px 3px;
    display: grid;
    place-content: center;
    background-color: rgba(0, 0, 0, 0.5);
}

#modal.dark {
    background-color: #000;
    overflow: auto;
}

@media screen and (max-width: 960px) {
    body {
        padding: 0 0.5rem;
    }

    #modal .show {
        margin: 0.5rem;
    }

    #modal-content {
        width: 90vw;
        padding: 10px;
    }


    #modal-content p {
        text-align: left;
        font-size: 0.87rem;
        width: 100%;
    }

    #modal-content .booking {
        width: 100%;
    }

    .show img {
        display: block;
        width: 90vw;
        max-height: 40vh;
    }

    #modal .close {
        top: 0;
        right: 20px;
        outline: 1px solid rgba(100, 100, 100, 0.9);
    }

    footer {
        margin-top: 3rem;
        height: 100vh;
    }

    .contact-info {
        top: 0;
        left: 0;
        right: 0;
        bottom: 20px;
        width: 100%;
        height: 40%;
    }
}