
/* --------------------------CONTENT MAIN-------------------------- */

.content {
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: center;
    padding-top: 7svh;
    width: 100%;
}
.content p{
    color: var(--text-muted);
    font-size: var(--font-size);
}

.content h1{
    color: var(--text);
    font-size: 3em;
    margin-bottom: 20px;
}

.content_Home, .content_AboutUs, .content_Models, .content_Reviews, .content_GetStarted{

    height: 93svh;
    width: 80%;
}



/* --------------------------CONTENT HOME-------------------------- */

.content_Home {
    display: flex;
    flex-direction: row;
    justify-content: center;
    align-items: center;
    width: 80%;
}
.contrast{
    
    height: 95%;
    background: linear-gradient(200deg, rgba(255, 255, 255, 0.055) 0%, var(--bg-light) 100%);
    border-radius: 20px;

}
.content_Home_Left, .content_Home_Right {
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: center;
}
.content_Homes button {
    background-color: var(--button-color-light);
    color: var(--text);
    border: none;
    padding: 10px 20px;
    border-radius: 5px;
    cursor: pointer;
}
.content_Home_Left {
    flex: 1;
}
.content_Home_Left_Buttons {
    display: flex;
    flex-direction: row;
    width: 100%;
    justify-content: center;
    align-items: center;
    gap: 2svh;
    padding-bottom: 5svh;
    
}
.content_Home_Left button {
    width: 12svw;
    height: 5svh;
    font-size: 15px;
    margin-top: 2svh;
    border-radius: 5px;
    background-color: var(--button-color-light);
    color: var(--text);
    border: none;
}
.content_Home_Right {
    width: 60%;
}
.content_Home_Right img {
    width: 60%;
}
.content_Statistics {
    display: flex;
    flex-direction: row;
    justify-content: center;
    align-items: center;
    gap: 2svw;
    padding: 2svh;
    height: 70%;
    border: 1px solid var(--border);
    color: var(--text);
    width: 100%;
}
.content_Statistics_Item {
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: center;
}
.content_Statistics_Item h2, .content_Statistics_Item p {
    width: 100%;
    margin: 0;
}

/* --------------------------CONTENT ABOUT US-------------------------- */

.content_AboutUs {
    display: flex;
    flex-direction: row;
    justify-content: center;
    align-items: center;
}
.content_AboutUs_Left, .content_AboutUs_Right {
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: center;
}
.content_AboutUs_Right {
    flex: 1;
}
.content_AboutUs_Left {
    width: 60%;
}
.content_AboutUs_Left img {
    width: 60%;
}


/* --------------------------CONTENT MODELS-------------------------- */

.content_Models{
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: center;
    text-align: center;
}
.content_Models_Grid{
    display: flex;
    flex-direction: row;
    justify-content: center;
    align-items: center;
    width: 100%;
    gap: 2svw;
}
.content_Models_Grid div{
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: center;
    text-align: center;
    gap: 1vh;
    border-radius: 20px;
    border: 1px solid var(--border);
    background: linear-gradient(200deg, rgba(255, 255, 255, 0.055) 0%, var(--bg-light) 100%);
    padding: 2svh;
    flex: 1;
    height: 45svh;
}
.content_Models_Grid img{
    height: 20svh;
    aspect-ratio: 1/1;
}

/* --------------------------CONTENT REVIEWS-------------------------- */

.content_Reviews{
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: center;
    height: 50svh;
    background-color: var(--bg-light);
    padding: 1svh 0 1svh 0;
    border-radius: 20px;
}
.content_Reviews_Top, .content_Reviews_Bottom {
    width: 100%;
}
.content_Reviews_Top{
    display: flex;
    flex-direction: row;
    justify-content: center;
    align-items: center;
    height: 30%;
}
.content_Reviews_Top_Left{
    width: 70%;
    height: 100%;
}
.content_Reviews_Top_Right{
    padding-top: 4svh;
    display: flex;
    flex-direction: row;
    gap: 1svw;

}
.content_Reviews_Top_Right button{
    height: 5svh;
    border-radius: 100%;
    border: none;
    aspect-ratio: 1/1;
    background-color: var(--button-color-light);
    color: var(--text);
}
.content_Reviews_Bottom {
  flex: 1;
  display: flex;
  justify-content: start;
  align-items: center;
  width: 100%;
  overflow-x: auto; /* Allow scroll on parent too */
}

.flex-container {
  display: flex;
  height: 80%;
  flex-direction: row;
  gap: 2svw;
  padding: 2svh 1.5svw 2svh 1.5vw;
  width: fit-content; /* Important: allow container to grow */
}

.item {
    width: 23svw;
    height: 100%;
    background-color: var(--border);
    display: flex;
    flex-direction: column;
    justify-content: start;
    align-items: center;
    font-family: sans-serif;
    font-weight: bold;
    border-radius: 20px;
    padding: 1svh;
}
.item_Top {
    display: flex;
    flex-direction: row;
    justify-content: start;
    align-items: center;
    padding-left: 2svw;
    width: 100%;
}

.item_Top i{
    font-size: 4svh;
    color: var(--text-muted-3);
}

.item_Bottom {
    display: flex;
    flex: 1;
    flex-direction: column;
    justify-content: start;
    align-items: center;
    width: 100%;
}

.item_Bottom_Text {
    flex: 1;
    color: var(--text-muted);
    font-size: var(--font-size);
    text-align: center;
    padding: 0 1svw;
}
.item_Bottom_Author {
    width: 100%;
    color: var(--text);
    font-size: 1.2em;
    font-weight: bold;
}

.item_Bottom_Author p {
    padding-left: 2svw;
}

/* --------------------------CONTENT REVIEWS-------------------------- */
.content_GetInTouch {
    display: flex;
    flex-direction: row;
    justify-content: center;
    align-items: center;
    width: 80%;
    gap: 10svw;
    height: 60vh;
    background-color: var(--bg-light);
    padding: 1svh 0 1svh 0;
    border-radius: 20px;
}
.content_GetInTouch_Left, .content_GetInTouch_Right {
    display: flex;
    height: 100%;
    flex: 1;
    flex-direction: column;
    justify-content: center;
    align-items: center;
}
.content_GetInTouch_Left {
    padding-left: 10svw;
}
.content_GetInTouch_Right {
    padding-right: 10svw;
}
.content_GetInTouch_Socials {
    display: flex;
    flex-direction: row;
    justify-content: start;
    align-items: center;
    gap: 1svw;
    width: 100%;
    height: 4svh;
}
.content_GetInTouch_Socials i {
    display: flex;
    justify-content: center;
    align-items: center;
    width: 2svw;
    aspect-ratio: 1/1;
    border-radius: 100%;
    border: none;
    background-color: var(--button-color-light);
    color: var(--text);
}
.content_GetInTouch_Socials i:hover {
    cursor: pointer;
}
.content_GetInTouch_Form {
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: center;
    width: 90%;
    height: 80%;
    background-color: var(--card-background);
    border: 1px solid var(--input-border);
    border-radius: 12px;
    box-shadow: var(--container-shadow);
}
.content_GetInTouch_Form section {
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: center;
    height: 80%;
    width: 80%;
}
.formGroup {
    display: flex;
    flex-direction: column;
    justify-content: start;
    align-items: center;
    flex: 1;
    gap: 1vh;
    width: 100%;
    color: var(--text);
}
.formGroup input {
    width: 100%;
    border-radius: 8px;
    border: 1px solid var(--input-border);
    background-color: var(--input-background);
    color: var(--body-text);
    padding: 10px 12px;
}
.formGroup span {
    display: flex;
    flex-direction:row;
    justify-content: start;
    align-items: center;
    width: 100%;
    height: 2svh;
    gap: 0.5vw;
    color: var(--text);
}
.formGroup textarea {
    flex: 1;
    width: 100%;
    border-radius: 8px;
    border: 1px solid var(--input-border);
    background-color: var(--input-background);
    color: var(--body-text);
    padding: 10px 12px;
    resize: vertical;
}

.formGroup input:focus,
.formGroup textarea:focus {
    outline: none;
    border-color: var(--input-focus-border);
}
.content_GetInTouch_Form button {
    width: 10svw;
    height: 4svh;
    font-size: 15px;
    margin-top: 2svh;
    border-radius: 5px;
    background-color: var(--primary-button-background);
    color: var(--primary-button-text);
    border: none;
}
