@import url('https://fonts.googleapis.com/css?family=Roboto&display=swap');

* {
    box-sizing: border-box;
    padding: 0;
    margin: 0;
}

body {
    font-family: 'Roboto', sans-serif;
}

a {
    text-decoration: none;
    color: inherit;
}
.container{
    max-width: 1140px;
    margin: 0 auto;
}

.btn {
    display: inline-block;
    padding: 15px 60px;
    font-size: 1.1rem;
    text-transform: uppercase;
    background: linear-gradient(to bottom, #b200eb, #8f00be);
    color: #fff;
    border-radius: 5px;
    transition: background 500ms ease;
}

.btn:hover {
    cursor: pointer;
    background: linear-gradient(to bottom, #8f00be, #b200eb);
}

.headline {
    font-size: 2.2rem;
    text-transform: uppercase;
    font-weight: bold;
    text-align: center;
    padding-bottom: 50px;
    letter-spacing: 2px;
}

/* Navbar */
#navbar {
    width: 100%;
       /* Define o gradiente linear de cima para baixo */
    background: linear-gradient(to bottom, #b200eb, #8f00be);
    
    /* Faz com que o gradiente cubra a tela inteira */
    height: 100vh;
    
    /* Remove margens do corpo */
    margin: 0;
    
    /* Adiciona um estilo mínimo ao texto para melhor contraste */
    text-align: center;
    padding: 20px;
    color: #fff;
    height: 80px;
    position: fixed;
    margin-top: -80px;
}

#navbar-container {
    width: 100%;
    height: 100%;
    margin: auto;
    display: flex;
    justify-content: space-between;
    align-items: center;
}

.logo {
    font-size: 2rem;
}

#navbar-items {
    display: flex;
    list-style: none;
    text-transform: uppercase;
}

#navbar-items li {
    padding: 10px;
}
#navbar .book-btn{
    background: #fff;
    color: #8f00be;
    padding: 10px 15px;
    border-radius: 5px;
    margin-left: 20px;
    transition: .4s;
}
#navbar .book-btn:hover{
    background: #000;
    color: #fff;
}
/* Showcase */
.hero-section{
    margin-top: 80px;
}
#showcase {
    height: 93vh;
    display: flex;
    justify-content: center;
    align-items: center;
    color: #eee;
    background: url('../img/showcase.jpg') no-repeat center center/cover;

}
#showcase .overlay{
    height: 100%;
    width: 100%;
    background: rgba(0,0,0,0.6);
}

#showcase-container {
    text-align: center;
    height: 100%;
    width: 100%;
    display: flex;
    align-items: center;
}

#showcase-container h2 {
    font-size: 2.5rem;
    margin-bottom: 20px;
}

#showcase-container p {
    font-size: 1.2rem;
    line-height: 1.5em;
}
#showcase-container a{
    margin-top: 20px;
}

/* Clients */
#clients {
    width: 100%;
    background: #ffffff;
    padding: 80px 0;
    box-sizing: border-box;
}
#clients .headline{
    color: 000;
}

#clients-container {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    justify-items: center;
    grid-gap: 20px;
    padding: 15px;
}
#clients .item{
    background: #f0f0f0;
    border: 1px solid #ddd;
    text-align: center;
    padding: 40px;
    border-radius: 5px;
    box-sizing: border-box;
    overflow: hidden;
}
#clients .item img{
    width: 70%;
    transition: .3s;
}
#clients .item:hover img{
    transform: scale(1.3);
}

.client {
    display: inline-block;
    width: 25%;
}

/* About */
#features {
    width: 100%;
    background: linear-gradient(to bottom, #b200eb, #8f00be);
    background: url('../img/6003574.jpg');
    background-size: cover;
    background-attachment: fixed;
    background-position: bottom;
    color: #eee;
    
}
#features .overlay{
    height: 100%;
    width: 100%;
    background: rgba(0, 0, 0, .6);
    padding: 50px;
}

#features-container {
    width: 100%;
    margin: auto;
    display: flex;
    justify-content: center;
}

.feature {
    max-width: 750px;
    display: flex;
    flex-direction: column;
    align-items: center;
    text-align: center;
    padding: 20px;
    border-radius: 5px;
}
.feature .headline{
    font-size: 30px;
    margin-top: 20px;
}

.feature img {
    width: 25%;
    margin-bottom: 20px;
}
.feature p{
    line-height: 1.6em;
}
.feature-title {
    font-size: 25px;
    font-weight: bold;
}




/* Product */
#product {
    width: 100%;
    padding: 70px 0;
    background: #ffffff;
}

#product-container {
    display: flex;
    margin-top: 30px;
}
#product .image{
    width: 40%;
}
#product .image img{
    width: 100%;
}
#product .content{
    width: 80%;
    padding-left: 80px;
    padding-top: 30px;
}
#product .content ul{
    list-style-type: disclosure-closed;
}
#product .content ul li{
    margin-bottom: 30px;
    line-height: 1.6em;
}



/* Testimonials */

#testimonials {
    width: 100%;
    background: #eee;
    color: #BF702A;
    padding: 70px 0;
    text-align: left;
    font-size: 1.2rem;
    color: #000;
}
#testimonials .headline{
    color: #000;
}

#testimonials-container {
    width: 100%;
    margin: auto;
    display: flex;
    
    padding: 40px;
}
.testimonial {
    width: 50%;
    display: flex;
    align-items: center;
    font-size: 1.2rem;
    background: #fff;
    border: 1px solid #ddd;
    padding: 25px;
    margin: 10px;
    border-radius: 5px;
    
}
.testimonial p{
    font-size: 18px;
}
#testimonials .sub-heading{
    max-width: 750px;
    margin: 0 auto;
    line-height: 1.8em;
    text-align: center;
}
.testimonial .testimonial-image {
    height: 120px;
    width: auto;
    border-radius: 50%;
    margin: 15px;
    
}

/* Gallery */
#gallery {
    width: 100%;
    margin: auto;
    padding: 70px 0;
    box-sizing: border-box;
}

#gallery-container {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    grid-gap: 20px;
}
#gallery-container .item{
    width: 100%;
    height: 300px;
    overflow: hidden;
}
#gallery-container img {
    display: inline-block;
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: .3s;
}
#gallery-container .item:hover img{
    transform: scale(1.3);
}

/* Footer */
#footer {
    background: #353535;
    color: #eee;
    padding: 30px;
    text-align: center;
}
#footer p{
    line-height: 1.6em;
}


/* Room page desktop version css */

.main{
    margin-top: 80px;
}
.room-section{
    padding: 80px 0;
}
.room-section h1{
    text-align: center;
    font-size: 35px;
    text-transform: uppercase;
    margin-bottom: 20px;
}
.room-section .row{
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    grid-gap: 20px;
}
.room {
    background-color: #fff;
    padding: 20px;
    margin-bottom: 20px;
    border-radius: 8px;
    box-shadow: 0 0 10px rgba(0, 0, 0, 0.1);
}

.room img {
    width: 100%;
    border-radius: 8px;
    margin-bottom: 20px;
}

.room h2 {
    color: #8f00be;
    margin-bottom: 15px;
}

.room p {
    color: #666;
    line-height: 1.6;
}

.btn-back {
    display: inline-block;
    padding: 10px 20px;
    font-size: 1rem;
    text-transform: uppercase;
    background: #9f4b4b;
    color: #d9d273;
    border-radius: 5px;
    transition: background 500ms ease;
    cursor: pointer;
    text-decoration: none;
    margin-top: 20px;
    display: block;
}

.btn-back:hover {
    background: #a02929;
}


/* Location page desktop version css*/
.location-section{
    padding-top: 50px;
}
.location-section .row{
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    grid-gap: 20px;
    margin: 40px 0;
}
.location-info {
    width: 100%;
    margin: 0 auto;
    padding: 25px;
    background-color: #fff;
    border-radius: 8px;
    box-shadow: 0 0 10px rgba(0, 0, 0, 0.1);
    box-sizing: border-box;
}
.location-info h1{
    margin-bottom: 20px;
    font-size: 30px;
}
.location-info p{
    line-height: 1.8em;
}
.transport-info{
    width: 100%;
    margin: 0 auto;
    padding: 25px;
    background-color: #fff;
    border-radius: 8px;
    box-shadow: 0 0 10px rgba(0, 0, 0, 0.1);
    box-sizing: border-box;
}
.transport-info h2{
    font-size: 30px;
    margin-bottom: 20px;
}
.transport-info p{
    line-height: 1.8em;
}
.map-container{
    margin-bottom: 30px;
}

/* Book now desktop version css */
.book-form{
    padding-top: 30px;
    padding-bottom: 50px;
}
.book-form form {
    background-color: #fff;
    padding: 40px 30px;
    border-radius: 8px;
    box-shadow: 0 0 10px rgba(0, 0, 0, 0.1);
    width: 700px;
    margin: auto;
    margin-top: 50px;
    color: #000;
    display: flex;
    flex-direction: column;
   
}

.book-form label {
    display: block;
    margin-bottom: 8px;
}

.book-form input,
select {
    width: 100%;
    padding: 10px;
    font-size: 16px;
    margin-bottom: 20px;
    border: 1px solid #ccc;
    border-radius: 5px;
    box-sizing: border-box;
}
.book-form input:focus{
    outline: none;
}

.book-form .button-container {
    display: flex;
    justify-content: space-between;
    width: 100%;
}

.book-form button {
    padding: 12px 60px;
    font-size: 1.1rem;
    text-transform: uppercase;
    border: none;
    border-radius: 5px;
    transition: background 500ms ease;
    cursor: pointer;
}

.book-form button.btn-book {
    background: linear-gradient(to bottom, #b200eb, #8f00be);
    color: #fff;
    margin-right: 20px;
}

.book-form button.btn-back {
    background-color: #ccc;
    color: #000;
    margin-left: 20px;
}

.book-form button:hover {
    background: linear-gradient(to top, #b200eb, #8f00be);
    color: #fff;
}




/* Contact us page desktop version css */
.contact-form {
    padding: 80px 0;
}
.contact-form #contact {
    
    background: #f1f1f1;
    max-width: 800px;
    margin: 0 auto;
    padding: 40px;
    border-radius: 10px;
}
.contact-form #contact h2{
    font-size: 30px;
    text-align: center;
    margin-bottom: 20px;
}
.contact-form #contact label{
  display: block;
  margin-bottom: 7px;

}

.contact-form input {
  width: 100%;
  padding: 12px;
  border-radius: 5px;
  background: transparent;
  border: 1px solid #aaaaaa;
  
}
.contact-form input:focus{
    outline: none;
}

.contact-form button{
    display: inline-block;
    padding: 15px 60px;
    font-size: 1.1rem;
    text-transform: uppercase;
    background: linear-gradient(to bottom, #b200eb, #8f00be);
    color: #fff;
    border-radius: 5px;
    border: none;
    cursor: pointer;
}
.contact-form button:hover{
    background: linear-gradient(to top, #b200eb, #8f00be);
}

.contact-form #contact div{
	margin-top: 20px;
  
}

.contact-form textarea{
    width: 100%;
    height: 100px;
    padding: 12px;
    border-radius: 5px;
    background: transparent;
    border: 1px solid #aaaaaa;
}
.contact-form textarea:focus{
    outline: none;
}
.contact-form .error{
	display: none;
	margin-top: 10px;
  
}		

.contact-form .error_show{
	color: Crimson;
	margin-left: 0;
  font-family: "Helvetica";
  
}

.contact-form input.invalid, textarea.invalid{
	border: 1px solid Crimson;
  
}

.contact-form input.valid, textarea.valid{
	border: 1px solid MediumSeaGreen ;
}







#navbar input{
    display: none;
}
#navbar label{
    display: none;
}

@media only screen and (max-width: 767px) {
    #navbar {
        height: auto;
        position: relative;
        margin-top: 0;
    }
    #navbar input{
        display: block;
    }
    #navbar label{
        display: block;
    }
    #navbar-items{
        display: none;
        margin-top: 15px;
    }

    #navbar input{
        display: block;
    }
    #navbar label{
        display: block;
    }
    #navbar .col-lg-9{
        text-align: right;
    }

    #navbar label {
        display: inline-block;
        background-color: #000;
        margin-bottom: 0px;
        padding: 10px 20px;
        border-radius: 4px;
        margin-top: 10px;
      }
      
      #navbar input[type=checkbox] {
        display: none;
      }
      
      #navbar :checked + #navbar-items {
        display: block;
      }
      
      #navbar #navbar-items{
        display: none;
      }




    .logo{
        font-size: 25px;
        margin-bottom: 10px;
    }
    
    #navbar-container {
        flex-direction: column;
        padding: 0;
    }
    
    #navbar-items {
        flex-direction: column;
        text-align: center;
        width: 100%;
    }
    
    #navbar-items li {
        border-bottom: 1px solid #a3a3a3;
    }
    #navbar-items li:nth-child(3){
        border-bottom: none;
    }
    #navbar-items li:last-child{
        border-bottom: none;
        margin-top: 15px;
    }
    /* Showcase */
    .hero-section{
        margin-top: 0;
    }
    #showcase-container {
        padding: 40px;
    }
    
    /* Clients */
    #clients-container {
        grid-template-columns: repeat(2, 1fr);
    }
    
    .client {
        width: 50%;
    }
    
    /* Features */
    #features-container {
        grid-template-columns: 1fr;
    }
    
    #features-container .feature:nth-child(2) {
        margin: 15px 0;
    }
    .feature .headline{
        font-size: 25px;
    }
    /* Product */
    #product-container {
        flex-direction: column;
    }
    #features .overlay{
        padding: 20px;
    }
    .feature img{
        width: 60%;
    }
    .feature-title{
        font-size: 20px;
    }
    #items {
        width: 90%;
    }
    
    .item {
        flex-direction: column;
        align-items: center;
        text-align: center;
    }
    .headline{
        font-size: 30px;
    }
    #product-container{
        display: block;
    }
    #product .image{
        width: 100%;
        padding: 0 20px;
        box-sizing: border-box;
        text-align: center;
    }
    #product .image img{
        width: 60%;
    }
    #product .content{
        width: 100%;
        padding-left: 0;
        padding: 40px;
        box-sizing: border-box;
    }
    /* Testimonials */
    #testimonials-container{
        display: block;
        padding: 20px;
    }
    .testimonial {
        width: 100%;
        margin: 0;
        margin-bottom: 20px;
    }
    #testimonials .sub-heading{
        font-size: 16px;
        padding: 20px;
        box-sizing: border-box;
    }
    .testimonial .testimonial-image{
        height: 90px;
    }
    .testimonial p{
        font-size: 15px;
    }
    
    
    /* Gallery */
    #gallery{
        padding: 20px;
        box-sizing: border-box;
    }
    #gallery-container .item{
        height: 250px;
    }
    #gallery-container {
        grid-template-columns: 1fr;
    }
    
    .gallery-image {
        width: 100%;
    }


    /* Room page mobile responsive css*/
    .main{
        margin-top: 20px;
    }
    .room-section{
        padding: 40px 15px;
        box-sizing: border-box;
    }
    .room-section .row{
        grid-template-columns: repeat(1, 1fr);
    }

    /* Location page mobile responsive css*/
    .location-section{
        padding: 15px;
        box-sizing: border-box;
    }
    .location-section .row {
        display: grid;
        grid-template-columns: repeat(1, 1fr);
        grid-gap: 20px;
        margin: 40px 0;
    }
    .location-info h1{
        font-size: 25px;
    }
    .transport-info h2{
        font-size: 25px;
    }
    .map-container{
        padding: 20px;
        box-sizing: border-box;
    }
    .map-container iframe{
        height: 300px !important;
    }

    /* Book page mobile responsive css */
    .book-form{
        padding: 20px;
        box-sizing: border-box;
    }
    .book-form form{
        width: 100%;
    }
    .book-form button{
        padding: 10px 15px;
    }
    .book-form .btn-back{
        display: none;
    }
    .contact-form {
        padding: 60px 15px;
        box-sizing: border-box;
    }


}






