@import url('common.css');

html {
    scroll-behavior: smooth;
}

#introSection {
    height: 100vh;
    position: relative;
}

#introSection::before {
    content: "";
    background-image: url('../images/prop-detail-bg3.jpg');
    background-attachment: fixed;
    background-position: center center;
    background-size: cover;
    background-repeat: no-repeat;
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    filter: brightness(50%);
    z-index: -1;
}

.introContent {
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    color: whitesmoke;
    width: 100%;
}

#introSection h1 {
    font-size: 2.5em;
    letter-spacing: 4px;
    width: 100%;
    text-align: center;
    padding: 10px;
}

.downArrow {
    font-size: 80px;
    display: block;
    text-align: center;
    text-decoration: none;
    color: whitesmoke;
}

#workSection h2 {
    text-align: center;
    font-size: 2.3em;
    color: black;
    margin: 0;
}

.generalWorkDescriptionContainer p {
    font-size: 1.4em;
    color: #002244;
}

#workSection h3 {
    margin: 0;
    color: whitesmoke;
    text-align: center;
    font-size: 2.1em;
}

.generalWorkDescriptionContainer {
    background-color: white;
    padding: 20px 50px;
}

.contractRow {
    min-height: 50vh;
}

.contractRowItem {
    width: 50%;
}

.contract {
    display: flex;
    flex-direction: column;
    justify-content: center;
}

.normalContractRow {
    display: flex;
}

.normalContractImageContainer {
    background-image: url('../images/room7.jpg');
    background-repeat: no-repeat;
    background-position: center center;
    background-size: cover;
}

.normalContractContainer {
    background-color: #138808/*#3CB371*//*#13274F*/;
}

.normalContractContainer p {
    text-align: center;
}

.premiumContractRow {
    display: flex;
}

.premiumContractContainer {
    background-color: #65000B;
}

.premiumContractImageContainer {
    background-image: url("../images/room2.jpg");
    background-position: center center;
    background-repeat: no-repeat;
    background-size: cover;
}

.contractDescription {
    padding: 20px 50px;
}

.contractDescription p {
    font-size: 1.4em;
    color: white;
}

.interestButton {
    font-size: 1.5em;
    padding: 15px;
    color: gold;
    background: transparent;
    border: 2px solid #fff;
    border-radius: 10px;
    transition: 0.4s ease-in-out;
    width: 190px;
    display: block;
    margin: 40px auto 0 auto;
}

.interestButton:hover {
    background-color: #8cc751;
    cursor: pointer;
    color: black;
}

#contractInterestInfoContainer {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background-color: rgba(0, 0, 0, 0.6);
    display: flex;
    justify-content: center;
    align-items: center;
    display: none;
}

#clientInfoFormContainer {
    min-width: 50%;
    min-height: 40%;
    background-color: #00573F;
    position: relative;
    border: 5px solid #000;
    border-radius: 10px;
    display: flex;
    align-items: center;
    justify-content: center;
    overflow: auto;
}

#clientInfoFormContainer .closeButton {
    position: absolute;
    top: 5px;
    right: 5px;
    width: 35px;
    height: 35px;
    display: flex;
    justify-content: center;
    align-items: center;
    border: 2px solid #000;
    border-radius: 50%;
    transition: 0.3s ease-in-out;
}

#clientInfoFormContainer .closeButton:hover {
    background-color: #85144b;
    color: antiquewhite;
    cursor: pointer;
}

#clientInfoFormContainer .closeButton i {
    font-size: 24px;
}

#clientInfoFormContainer form {
    display: flex;
    flex-direction: column;
}

#clientInfoFormContainer form div {
    text-align: center;
}

#clientInfoFormContainer form input {
    margin: 10px;
    padding: 10px;
    border: 3px solid #000;
    border-radius: 10px;
    font-size: 1.3em;
}

#clientInfoFormContainer form input:focus {
    outline: none;
    border-color: goldenrod;
}

#clientInfoFormContainer form button {
    margin: 20px 0 10px 0;
    padding: 10px;
    font-size: 1.3em;
    background-color: transparent;
    border: 3px solid #fff;
    color: #FEBE10;
    border-radius: 10px;
    transition: 0.3s ease-in-out;
}

#clientInfoFormContainer form button:hover {
    background-color: #034694;
    cursor: pointer;
}

@media (max-width: 1200px) {
    .contractRow {
        min-height: 40vh;
    }

    #workSection h3 {
        font-size: 1.8em;
    }
}

@media (max-width: 992px) {
    .normalContractContainer p {
        text-align: left;
    }

    .contractImage {
        display: none;
        width: 0%;
    }

    .contract.contractRowItem {
        width: 100%;
    }
}

@media (max-width: 600px) {
    #introSection h1 {
        font-size: 2.2em;
    }

    #workSection h2 {
        font-size: 2em;
    }

    #workSection h3 {
        font-size: 1.8em;
    }
}

@media (max-width: 480px) {
    #introSection h1 {
        font-size: 2em;
    }

    #workSection h2 {
        font-size: 1.8em;
    }

    #workSection h3 {
        font-size: 1.6em;
    }

    .contractDescription p,
    .generalWorkDescriptionContainer p {
        font-size: 1.3em;
    }

    .interestButton {
        font-size: 1.3;
        width: 150px;
    }
}

@media (max-width: 480px) {
    .downArrow {
        font-size: 55px;
    }
}