/* Imports from other sheets */
@import url(./mainStyle.css);

/* Full page styling */
#content {
    position: absolute;
    display: flex;
    flex-direction: column;
    justify-content: center;
    place-items: center;
    padding: 0;
    margin: 0;
    top: 150px;
    left: 0;
    width: 100vw;
}

#homeDiv1 {
    padding: 20px 0;
    margin-top: 50px;
    background-color: rgb(51, 129, 106);
    box-shadow: 0px 0px 10px 1px rgba(0,0,0,0.5);
    z-index: 1;
}

#homeDivReviews {
    padding: 20px 0;
    background-color: rgb(71, 149, 126);
    margin-bottom: 30px;
}

#homeDiv2 {
    padding: 20px 0;
    background-color: rgb(51, 129, 106);
    box-shadow: 0px 0px 10px 1px rgba(0,0,0,0.5);
    z-index: 1;
}

#homeDiv3 {
    padding: 20px 0;
    background-color: rgb(71, 149, 126);
    margin-bottom: 40px;
}

/* Titles */
.pageTitle {
    margin: 0;
    padding: 0 5%;
    font-size: 48px;
    text-align: center;
}

/* Text */
.pageText {
    padding: 0 5%;
    font-size: 20px;
}

.pageLink {
    font-size: 20px;
    color: rgb(175, 175, 255);
}
.pageLink:hover {
    font-weight: 1000;
}

/* Images */
#homeImg {
    min-width: 50%;
    max-width: 90vw;
    max-height: 600px;
    width: auto;
    height: auto;
    border-radius: 20px;
    box-shadow: 0px 0px 25px 0px rgba(0,0,0,0.75);
    object-fit: cover;
    transition: 2.5s;
}

/* Reviews */
#homeDivReviews h2 {
    margin-bottom: 20px;
}

#reviews {
    display: flex;
    flex-wrap: wrap;
    justify-content: center;
    gap: 50px;
}

.reviewTitle {
    font-size: 24px;
    margin: 10px 0 0 0;
    padding: 0;
}

.reviewText {
    font-size: 20px;
}

.reviewBottom {
    margin-top: auto;
}

.review {
    display: flex;
    flex-direction: column;
    margin: 0;
    padding: 5px;
    background-color: rgb(51, 121, 129);
    border-radius: 20px;
    box-shadow: 0px 0px 10px 1px rgb(0, 0, 0, 0.6);
    text-align: center;
    width: 260px;
    height: 240px;
}


/* RESPONSIVENESS */
@media only screen and (max-width: 800px) { .pageTitle { font-size: 44px; } }
@media only screen and (max-width: 600px) { .pageTitle { font-size: 40px; } }
@media only screen and (max-width: 400px) { .pageTitle { font-size: 36px; } }