/* Default: Mobile */
html {
  font-size: 10px;
  padding: 0;
  border: 0;
}

.dropDownMenu {
    background-color: white;
    border: 1px solid black;
    border-radius: 2rem;
    margin-left: 1rem;
    width: 12rem;
    text-align: center;
    height: 3rem;
    font-family: "Outfit", sans-serif;
    font-optical-sizing: auto;
    font-weight: 400;
    font-style: normal;
    font-size: 1.3rem;
}

#passwordSignUp {
    height: 100% !important;
}

#passwordAndToggle{
  display: flex;
  flex-direction: row;
  gap: 1rem;
  height: 15%;
  width: 85%;
  padding: 0;
  align-content: center;
  align-items: center;
}

#pwToggle{
    color: white;
    background-color: #4B352A;
    padding: 0.5rem;
    transition: 0.3s;
    cursor: pointer;
    padding-left: 1rem;
    padding-right: 1rem;
}

#pwToggle:hover, .submitButton{
    background-color: #4b352a4d;
    color: #262322;
}

#passwordChangeButton {
  width: auto;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  padding: 1rem;
  padding-left: 2rem;
  padding-right: 2rem;
}

#securityCodeNonEditable {
  background-color: #f0f0f0;
  color: #666;
  cursor: not-allowed;
}

#securityCodeNonEditable:focus {
  outline: none;
  box-shadow: none;
}

#createNewAccountButton {
    width: 80%;
    padding: 2rem;
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    font-size: 1.4rem;
    font-family: "Outfit", sans-serif;
    font-optical-sizing: auto;
    font-weight: 500;
    font-style: normal;
    transition: 0.3s;
}

#createNewAccountButton:hover {
    background-color: #4b352a52;
    color: #262322;
}

span, p, input, a {
    font-family: "Outfit", sans-serif;
    font-optical-sizing: auto;
    font-weight: 400;
    font-style: normal;
    font-size: 1.3rem;
}

/* Tablet */
@media (min-width: 665px) {
  html {
    font-size: 16px;
  }
  span {
    font-size: 1.2rem;
  }
}

/* Desktop */
@media (min-width: 900px) {
  html {
    font-size: 18px;
  }
  span {
    font-size: 1.2rem;
  }
}


body {
    height: 100%;
    background-color: #E5E9D5;
    display: flex;
    flex-direction: column;
    margin: 0;
}

header{
    background-color: #E5E9D5;
    position: fixed;
    display: flex;
    justify-content: space-between;
    align-items: center;
    width: 100%;
    max-height: 6rem;
    border-bottom: 1px solid #262322;
}


#logoFg{
    cursor: pointer;
    max-width: 4rem;
    max-height: 4rem;
}

#left{
    display: flex;
    flex-direction: row;
    align-items: center;
}

#signUpText {
    cursor: pointer;
    color: #444444;
}

#right {
    display: flex;
    gap: 2rem;
    margin-right: 15px;
}


.primaryHeaderText {
    margin-left: 15px;
    font-weight: 600;
    cursor: pointer;

}

.secondaryHeaderText {
    cursor: pointer;
    color: #262322;
    text-decoration: none;
    font-size: 1.2rem;
    text-align: center;
    display: flex;
    flex-direction: row;
    justify-content: center;
    align-items: center;
}

#languageToggle {
  margin-right: 1rem;
  display: flex;
  align-items: center;
}

#container {
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: space-between;
    height: 70rem;
    max-height: 100rem;
    margin-top: 7rem;
}

#welcomeDiv span {
    color:#262322;
    font-size: 1.8rem;
    height: 7rem;
    font-weight: 700;
    display: inline-block;
    text-align: center;
    display: flex;
    flex-direction: column;
    margin-right: 1rem;
    margin-left: 1rem;
}

#searchBar {
    margin-top: 32rem;
    display: flex;
    align-items: center;
    height: 3rem;
    width: 90%;
    max-width: 700px; 
    margin: 0 auto;
    background-color: #ffffff;
    border: 1px solid #ccc;
    border-radius: 70rem;
}

#searchBar input {
    flex: 1;
    padding: 0.5rem;
    padding-left: 1.5rem;
    font-size: 1rem;
    border: 0px;
    border-radius: 70rem;
    height: 60%;
}

#searchBar button {
    background-color: #4B352A;
    border-left: 0;
    padding: 0.5rem;
    height: 80%;
    margin: 0.3rem;
    border: 0px;
    width: 5rem;
    border-radius: 70rem;
    cursor: pointer;
}

#searchBar button img {
    width: 1.5rem;
    height: 1.5rem;
}

#guidesSection{
    margin-right: 1rem;
    margin-left: 1rem;
    display: flex;
    flex-direction: column;
    align-items: center;
}

#guidesHeader {
    color:#262322;
    margin-bottom: 5rem;
    font-weight: 500;
    font-size: 1.5rem;
}

#guides {
    color: white;
    display: flex;
    flex-direction: row;
    gap: clamp(1rem, 2vw, 2rem);
    overflow-x: auto;
    padding-inline: 1rem;
    scroll-snap-type: x mandatory;
    -webkit-overflow-scrolling: touch;
}

.guide {
    cursor: pointer;
    flex: 1 0 15rem; 
    min-width: 12rem;
    aspect-ratio: 3 / 3.5;
    max-width: 20rem;
    scroll-snap-align: start;
}

.guideTag {
    color:white;
}

#backgroundImage1 {
    background-image: url("../images/guide 1 photo.png");
    background-size:cover;
    background-position: center;
    width: 100%;
    height: 100%;
    display: flex;
    flex-direction: column;
    justify-content: space-between;
    padding: 20px;
    box-sizing: border-box;
}


#backgroundImage1 > p:first-child {
    font-size: 1rem;
    font-weight: 400;
    color: white;
}

.secondaryGuideText {
    color: white;
    margin-bottom: 0.5rem;
}

.guideHeader {
    font-size: 1.25rem;
    font-weight: 600;
    margin-bottom: 0.5rem;
}

.guideDescription {
    font-size: 1rem;
    font-weight: 300;
    margin: 0;
}

#backgroundImage2 {
    background-image: url("../images/guide 2 photo.png");
    background-size:cover;
    background-position: center;
    width: 100%;
    height: 100%;
    display: flex;
    flex-direction: column;
    justify-content: space-between;
    padding: 20px;
    box-sizing: border-box;
}

#backgroundImage3 {
    background-image: url("../images/guide 3 photo.png");
    background-size:cover;
    background-position: center;
    width: 100%;
    height: 100%;
    display: flex;
    flex-direction: column;
    justify-content: space-between;
    padding: 20px;
    box-sizing: border-box;
}

#schoolGallerySection{
    cursor: pointer;
    display: flex;
    align-items: center;
    flex-direction: column;
    justify-content: center;
    flex-shrink: 0;
    margin-top: 4rem;
    width: 100%;
    background-image: url("../images/school gallery.png");
    background-size:cover;
    background-position: center;
    height: 20rem;
}

#smallGalleryText {
    color: white;
    font-size: 2.1rem;
    font-weight: 300;
}

#bigGalleryText {
    color: white;
    font-size: 2.7rem;
    font-weight: 600;
}

footer span, p {
    font-size: 1rem;
    color: white;
}

footer p {
    font-weight: 100;
    text-align: center;
}



#footerInformation {
    margin-top: 1rem;
    display: flex;
    flex-direction: row;
    justify-content: space-between;
    padding-left: 2rem;
    padding-right: 2rem;
}

.footerInformationBlock{
    display: flex;
    flex-direction: column;
}

.informationElement {
    font-weight: 200;
    cursor: pointer;
}

.informationHeader {
    margin-bottom: 1rem;
}

footer {
    height: 12rem;
    background-color: #4B352A;
    display: flex;
    flex-direction: column;
    justify-content: space-around;

}

.loginForm {
    display: flex;
    flex-direction: column;
    height: 20rem;
    justify-content: space-around;
    align-items: center;
    width: 70%;
    border-radius: 2rem;
    background-color: white;
    max-width: 35rem;
}

#signUpForm1 {
    height: 25rem;
    margin-top: 2rem;
}

#signUpForm2 {
    height: 23rem;
}

.loginForm input {
    background-color: rgb(235, 235, 235);
    border: 0;
    width: 80%;
    height: 20%;
    border-radius: 2rem;
    text-align: left;
}

#signUpForm1 input {
    background-color: rgb(235, 235, 235);
    border: 0;
    width: 80%;
    height: 15%;
    border-radius: 2rem;
    text-align: left;
}

input {
    padding-left: 1.5rem;
}

.loginForm button {
    cursor: pointer;
    width: auto;
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    padding-left: 1rem;
    padding-right: 1rem;
    height: 3rem;
    border-radius: 10rem;
    border: 0;
    background-color: #4B352A;
    color: white;
    font-family: "Outfit", sans-serif;
    font-optical-sizing: auto;
    font-weight: 500;
    font-style: normal;
    font-size: 1rem;
}

#loginSpan {
    color: #262322;
    font-size: 2rem;
    font-weight: 600;
}



#loginContainer {
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: space-between;
    height: 30rem;
    max-height: 100rem;
    margin-top: 7rem;
    width:100%;
}


#loginFailedWarning, errorMessage {
    margin-top: 2rem;
    font-size: 1rem;
    color: white;
    padding: 0.5rem;
    padding-left: 0.7rem;
    padding-right: 0.7rem;
    border-radius:1rem;
    background-color: red;
}

.successMessage {
    margin-top: 2rem;
    font-size: 1rem;
    color: #262322;
    padding: 0.5rem;
    padding-left: 0.7rem;
    padding-right: 0.7rem;
    border-radius:1rem;
    background-color: #B2CD9C;
}

#signUpContainer {
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: space-between;
    max-height: 100rem;
    margin-top: 7rem;
}

#signUpContainer2 {
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: space-between;
    height: 30rem;
    max-height: 100rem;
    margin-top: 7rem;
}

#wrapper {
    display: flex;
    flex-direction:column;
    align-items: center;
    width: 100%;
}

.dashboardButton {
    position: fixed;
    bottom: 2rem;
    right: 2rem;
    background-color: #b2cd9c;
    color: #262322;
    width: 5rem;
    height: 5rem;
    border-radius: 5rem;
    cursor: pointer;
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    border: 0;
}

#dashboardIcon {
    width: 4rem;
    height: 4rem;
}

#visibilityImage {
    width: 2.5rem;
}

textarea {
  resize: none;
}