/* CSS reset */
* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

/* Main body styling - universal */
html, body {
    font-family: 'Segoe UI', Tahoma, Geneva, Verdana, sans-serif;
    line-height: 1.5em;
    color: #333;
    
}

a {
    text-decoration: none;
    color: #333;
}

h1, h2, h3 {
    padding-bottom: 20px;
}

p {
    margin: 10px 0px;
}

.text-small {
    font-size: 12px;
}

/* button styling */
.btn {
    background: #333;
    padding: 15px 20px;
    color: #fff;
    text-align: center;
    font-size: 18px;
    display: inline-block;
    cursor: pointer;
}

.btn:hover {
    background: #f7c07a;
    color: #333;
}

.btn-light {
    background: #fff;
    padding: 10px 15px;
    color: #333;
}

/* box styling */
.bg-light {
    background: #f4f4f4;
    color: #333;
}

.bg-dark {
    background: #333;
    color: #fff;
}

.bg-primary {
    background: #f7c07a;
}

/* additional text styling */
.text-primary {
    color: #f7c07a;
}

.about-heading {
    font-size: 2rem;
}
.bold {
    font-size: 1.1rem;
}

.lead {
    font-size: 1.4rem;
}

/* Icon styling */
.fa-icon {
    font-weight: 800;
    font-size: 3rem;
    padding-bottom: 20px;
}

/* Float Clear */
.clear-float {
    clear: both;
}

/* Container styling */
.container {
    box-sizing: border-box;
    width: 1100px;
    margin: auto;
    padding: 0px 20px;
    overflow: hidden;
}

/* navigation styling */

#navbar {
    background: #333;
    color: #fff;
    overflow: auto;
    position: fixed;
    width: 100%;
    z-index: 1;
}

#navbar a {
    color: #fff;
}

#navbar ul {
    float: right;
    list-style: none;
}

#navbar .logo {
    float: left;
    padding: 15px 0px;
    cursor: pointer;
}

#navbar ul li {
    float: left;
}

#navbar ul li a {
    display: block;
    text-decoration: none;
    text-align: center;
    padding: 15px 20px;
}

#navbar ul li a:hover {
    background: #555;
    color:#f7c07a;
}

#navbar ul li a.current {
    background: #444;
    color: #f7c07a;
}

 /* showcase section styling */



#showcase {
    background: url('../img/showcase.jpg') no-repeat fixed center center/cover;
    height: 600px;
}

.showcase-content {
    text-align: center;
    color: #fff;
    padding-top: 170px;
}

#showcase .showcase-content h1 {
    font-size: 3.5rem;
    line-height: 1.2em;

}

#showcase .showcase-content p {
    padding: 30px;
    line-height: 1.2em;

}

/* Home info section */

#home-info {
    height: 400px;

}

#home-info .info-image {
    float: left;
    background: url('../img/photo-1.jpg') no-repeat;
    width: 50%;
    min-height: 100%;
}

#home-info .info-content {
    float: right;
    text-align: center;
    width: 50%;
    padding: 50px;
    overflow: hidden;
}

#home-info .info-content h1 {
    padding: 20px
}

#home-info .info-content p {
    padding: 20px;
}

/* hotel features section */

#features {
    display: block;
}

#features .box {
    float: left;
    width: 33%;
    text-align: center;
    padding: 40px;
    overflow: hidden;

}



/* Site-wide footer styling */

#main-footer {
    background: #444;
    margin: auto;
    padding: 20px;
    display: block;
    height: auto;
}
#main-footer p {
    text-align: center;
    color: #fff;

}

#main-footer a {
    color: #fff;
    cursor: pointer;
}
#main-footer a:hover {
    color:#f7c07a
}

/* about page styling */

#about-info  {
    padding-top: 90px;
    height: 400px;
    
}

#about-info .intro-content {
    float: left;
    min-height: 100%;
    width: 50%;
}

#about-info .intro-image img {
    display: block;
    margin: auto;
    width: 70%;
    border-radius: 50%;

}

#about-info .intro-image {
    float: right;
    min-height: 100%;
    width: 50%;
}


/* feedback and testimonial section */

#feedback {
    background: url('../img/test-bg.jpg') no-repeat fixed center center/cover;
    height: 600px;
    padding-top: 100px;
}

#feedback img {
    width: 14%;
    padding: 10px;
    float: left;
    margin-right: 20px;
    border-radius: 50%;

}

#feedback .feedback {
    display: block;
    width: 950px;
    padding: 30px;
    margin-bottom: 30px;
    opacity: 0.9;
    border-radius: 5px;
    min-height: 150px;

}

#feedback h1 {
    color: #fff;
    text-align: center;
    font-size: 2rem;
    padding-bottom: 30px;

}

/* contact form styling */

#contact-form {
    padding-top: 90px;
    margin: auto;
   

}

#contact-form label {
    display: block;
    padding-top: 20px;

}

#contact-form textarea {
    width: 100%;
    min-height: 150px;
    padding: 10px;
    border: 1px solid rgb(158, 158, 158);
    font-family:'Segoe UI', Tahoma, Geneva, Verdana, sans-serif;
}
#contact-form .btn {
    width: auto;
    padding: 5px 20px;
    margin-top: 10px;
    margin-bottom: 50px;
}
#contact-form input {
    width: 100%;
    border: 1px solid rgb(158, 158, 158);
    padding: 5px;
    
}
/* contact page icon footer styling */

#contact-footer {
    display: block;
    height: 250px;
}
#contact-footer .box {
    float: left;
    width: 33.3%;
    text-align: center;
    padding: 40px;
    overflow: hidden;
}

#contact-footer h4 {
    font-size: 1.1rem;
    padding-bottom: 20px;
}


