@import url("https://fonts.googleapis.com/css2?family=Noto+Sans&display=swap");

:root{
    --orange-color: #f89950; 
    --black-color: #050a0e;
    --blue-color: #b4c4de;
    --white-color: #e7e7e9;
}

/*Resetar css*/
*{
    font-family: Noto Sans, sans-serif;
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

/*Estilizando o body*/
body {
    background-color: var(--orange-color);
    margin: 0px;
    font-family: Noto Sans, sans-serif;
}

/*Estlizado o header*/
#site-description{
    background: linear-gradient(rgba(0,0,0,.8),rgba(0,0,0,.8)), url("./img/Main_Photo.jpg");/*Deixa a imagem mais escura*/
    background-position: center;
    background-size: cover;
    height: 85vh;
    display: flex;
    justify-content: space-around;
    align-items: center;
    color: var(--white-color);
}

#site-title h2{
    color: var(--orange-color);
    margin-bottom: 1em;
}

#site-title h2 {
    font-size: 3em;
    margin-bottom: 0.2em;
    color: var(--orange-color);
}

#site-title .description {
    font-size: 2em;
    text-transform: uppercase;
    max-width: 350px;
    font-weight: bold;
    margin-bottom: 1em;
    color: var(--orange-color);
  }

#site-title p{
    font-size: 1.2em;
    margin-bottom: 0.3em;
}


#login-form{
    background-color: var(--blue-color);
    padding: 2em;
    max-width: 22%;
    border-color: var(--white-color);
    border-width: 5px;
    border-style: solid;
}

#login-form p{
    font-size: 1.5em;
    color: var(--black-color);
    margin-bottom: 1em;
}

.form-group{
    display: flex;
    flex-direction: column;
    margin-bottom: 0.8em;
}

.form-group label{
    color: var(--black-color);
    margin-bottom: .3em;
    font-weight: bold;
}

.form-group input,
.form-group select{
    padding: 6px 8px;
    border-radius: none;
    outline: none;
}

select {
    -webkit-appearance: none;
    -moz-appearance: none;
    appearance: none;
    font-family: Tomorrow, sans-serif;
 }

.btn{
    background-color: var(--orange-color);
    color: var(--black-color);
    text-transform: uppercase;
    width: 100%;
    border: none;
    padding: 12px;
    cursor: pointer;
    opacity: 0,8;
}

.btn:hover{
    opacity: 1;
    background-color: var(--white-color);
}

/*Parallax*/
#experience h2 {
    background-image: linear-gradient(rgba(0,0,0,.8),rgba(0,0,0,.8)), url("./img/Parallax_Photo.jpg");/*Deixa a imagem mais escura*/
    min-height: 300px; 
    background-attachment: fixed;
    background-position: center;
    background-repeat: no-repeat;
    background-size: cover;
    text-align: center;
    padding: 2em;
    font-weight: 1000;
    color: var(--orange-color);
}

/*Exemplos*/
.examples {
    display: flex;
    justify-content: space-around;
    padding: 4em;
    width: 80%;
    margin: 0 auto;
}
  
.example {
    text-align: center;
    display: flex;
    flex-direction: column;
    align-items: center;
    max-width: 20%;
    color: var(--black-color);
}
  
.example .example-image {
    width: 300px;
    height: 300px;
    border-radius: 50%;
    background-size: cover;
    background-position: center;
    margin-bottom: 1em;
}
  
#example-1 {
    background-image: url("./img/Foto_Edificio_1.jpg");
}

#example-2 {
    background-image: url("./img/Foto_Edificio_2.jpg");
}

#example-3 {
    background-image: url("./img/Foto_Edificio_3.jpg");
}

/*Local do escritório*/
#local {
    height: 300px;
    background: linear-gradient(rgba(0, 0, 0, 0.8), rgba(0, 0, 0, 0.8)),url("./img/Foto_Escritorio.jpg");
    background-position: center;
    background-size: cover;
    display: flex;
    align-items: center;
    justify-content: space-around;
    color: var(--orange-color);
    margin-bottom: 3em;
}


#address,
#about-location {
  max-width: 25%;
}

#address {
  display: flex;
}

#address i {
  color: var(--blue-color);
  font-size: 5em;

}

#details-local {
  text-align: center;
  align-items: center;
  font-size: 1.0em;
}

#about-local h3 {
  color: var(--blue-color);
  font-size: 2.5em;
  margin-bottom: 0.5em;
  text-transform: uppercase;
}

#about-local p {
  width: 500px;
}

/*Apartamentos*/
#apartments {
    width: 80%;
    margin: 0 auto;
}
  
.apartment {
    display: flex;
    align-items: flex-start;
    justify-content: space-between;
    margin-bottom: 4em;
}
  
.apartment img {
    width: 70%;
    border-style: solid;
    border-color: var(--white-color);
    border-width: 5px;
}

.apartment h3 {
    margin-bottom: 1em;
    font-size: 2em;
    font-weight: 600;
}
  
#main-apartment h3 {
    font-size: 3em;
    font-weight: 700;
}
  
.description-apartment {
    width: 100%;
    padding-left: 3em;
}
  
#apartment-3 .description-apartment {
    justify-self: flex-start;
}
  
.description-apartment ul {
    list-style-position: inside;
}
  
.description-apartment ul li {
    margin-bottom: 0.5em;
}
  
.description-apartment ul li:last-child {
    font-weight: bold;
}

/* Footer */
#footer {
    text-align: center;
    color: var(--black-color);
    height: 460px;
    display: flex;
    flex-direction: column;
    justify-content: center;
    background-color: var(--blue-color);
}

#footer p{
    margin-bottom: 1em;
    font-size: 1.2em;
}

#footer p:first-child{
    font-weight: bold;
}

.footer-box{
    display: flex;
}

ul {
    list-style-position: inside;
}


table, th, td {
    margin-left: auto;
    margin-right: auto;
    width: 200px;
    border: 1px solid;
    font-size: 1em;
    border-radius: 5px;
    
}

table{
    background-color: var(--black-color);
}

th{
    background-color: var(--orange-color);
}

td{
    background-color: var(--blue-color);
    margin-bottom: 0.2em;
}

  

/*Secao da inspiracao*/
#inspiration {
    height: 200px;
    background: linear-gradient(rgba(0, 0, 0, 0.8), rgba(0, 0, 0, 0.8)),url("./img/Foto_Cidade_Amanhecer.jpg");
    background-position: center;
    background-size: cover;
    display: flex;
    flex-direction: column;
    justify-content: center;
    text-align: center;
    color: var(--white-color);
}
  
  #inspiration h2 {
    margin-bottom: 1em;
    font-size: 2em;
    font-weight: 500;
}

  #inspiration .btn {
    width: 30%;
    margin: 0 auto;
    font-weight: 500;
    font-size: 1.5em;
}

/*Estilizacao para celulares*/
@media (max-width: 1300px) {
   /*Descricao e formulario*/
    #site-description {
      flex-direction: column;
      height: auto;
    }
  
    #site-title {
      padding: 2em;
    }
  
    #site-title h2 {
      margin-bottom: 0.5em;
    }
  
    #login-form {
      max-width: 70%;
      margin-bottom: 2em;
    }
    
    /*Exemplos de apartamentos*/
    .examples {
        flex-direction: column;
        align-items: center;
        width: auto;
        padding: 2em;
    }
    
    .example {
        max-width: 100%;
        margin-bottom: 2em;
    }

    /* Local do escritorio */
    #local {
        flex-direction: column;
        height: auto;
        text-align: center;
        padding: 2em 0;
    }

    #address {
        order: 2;
        flex-direction: column;
        max-width: 100%;
    }
    
    #address i {
        margin: 0.3em 0;
    }
    
    #about-local {
        order: 1;
        max-width: 100%;
    }
    
    #about-local h3 {
        margin-bottom: 0;
    }
    
    #about-local p {
        display: none;
    }
      
    /*Imagens e descricoes dos apartamentos */
    .apartment {
        flex-direction: column;
        margin-bottom: 0.5em;
    }

    #main-apartment h3 {
        font-size: 2em;
        font-weight: 700;
    }

    .apartment img {
        width: 100%;
        margin: 2em 0;
    }

    #main-apartment img {
        display: none;
    }

    .description-apartment {
        padding: 0;
    }

    #apartment-3 img {
        order: 2;
    }

    #apartment-3 .description-apartment {
        order: 1;
    }

    /*Botao*/
    #inspiration .btn {
        width: 60%;
        margin-bottom: 0.5em;
    }

    /*Footer*/
    #footer p:first-child{
        font-size: 1.5em;
    }
    
    #footer p{
        font-size: 1em;
    }
}