* {
    margin: 0;
    padding: 0;
    font-family: cursive;
    box-sizing: border-box;
}

a {
    text-decoration: none;
    color: #333;
}

h1, h2, h3 {
    padding-bottom: 20px;
}

p {
    margin: 10px 0;
}

#navbar {
    background-color: #333;
    color: #fff;
    overflow: auto;
}

#navbar a {
    color: #fff;
}

#navbar h1 {
    float: left;
    padding-top: 20px;
}

#navbar ul {
    float: right;
    list-style: none;
}

#navbar ul li {
    float: left;
}

#navbar ul li a {
    display: inline-block;
    padding: 25px;

}

#navbar ul li a:hover, 
#navbar ul li a.current {
    background-color: #444;
    color: #f7c08a;
}

.container {
    max-width: 1100px;
    margin: auto;
}

/* primary class */

.text-primary {
    color: #f7c08a;
}

.lead {
    font-size: 20px;
}

.text-guest {
    font-size: 34px;
}

.btn {
    display: inline-block;
    font-size: 18px;
    color: #fff;
    background-color: #333;
    padding: 13px 20px;
    border: none;
    cursor: pointer;
}

.btn:hover {
    background-color: #f7c08a;
    color: #333;
}

.btn-light {
    background-color: #f4f4f4;
    color: #333;
}

.btn-dark {
    background-color: #333;
    color: #fff;
}

.bg-dark {
    background-color: #333;
    color: #fff;
}

.bg-light {
    background-color: #f4f4f4;
    color: #333;
}

.bg-primary {
    background-color: #f7c08a;
    color: #333;
}

.clr {
    clear: both;
}

/* end */

/* showcase section */

#showcase {
    background-image: url(showcase.jpg);
    background-size: cover;
    background-position: center;
    background-repeat: no-repeat;
    height: 600px;
}

#showcase .showcase-content {
    text-align: center;
    color: #fff;
    padding-top: 170px;
}

#showcase h1 {
    font-size: 60px;
}

#showcase p {
    padding-bottom: 20px;
    font-size: 20px;
}

#home-info {
    height: 400px;
}

#home-info .info-img {
    float: left;
    width: 50%;
    height: 100%;
    background-image: url(photo-1.jpg);
    background-position: center;
    background-size: cover;
    background-repeat: no-repeat;
}

#home-info .info-content {
    float: right;
    width: 50%;
    height: 100%;
    text-align: center;
    padding: 50px 30px;
}

#home-info .info-content p {
    padding-bottom: 20px;
    font-size: 18px;
}

/* features section  */

.box {
    width: 33.3%;
    float: left;
    padding: 50px;
    text-align: center;
}

#main-footer {
    text-align: center;
    background-color: #444;
    color: #fff;
    padding: 20px 0;
}

/* about page section  */

#about-us {
    padding: 20px 0;
    display: inline-block;
    width: 100%;
}

#about-us .about-text {
    width: 65%;
    float: left;
}

#about-us .about-img {
    width: 30%;
    float: right;
}

#about-us .about-img img {
    width: 300px;
    height: 300px;
    border-radius: 50%;
    border: none;
}

#guests-say {
    padding: 100px;
    background-image: url(hall.jpeg);
    background-position: center;
    background-size: cover;
    background-repeat: no-repeat;
}

#guests-say h2 {
    text-align: center;
    color: #fff;
}

#guests-say .able-box {
    margin-bottom: 10px;
    display: inline-block;
    width: 100%;
    border-radius: 10px;
    padding: 5px;
}

#guests-say .able-box p {
    width: 90%;
    float: right;
}

#guests-say img {
    width: 80px;
    height: 70px;
    border-radius: 50%;
    margin-top: 10px;
}

/* contact page section  */

#contact-form {
    padding: 20px 0;
}

#contact-form h1 {
    font-size: 32px;
}

#contact-form .form-group {
    margin-bottom: 20px;
}

#contact-form label {
    display: block;
    margin-bottom: 5px;
}

#contact-form input, #contact-form textarea {
    width: 100%;
    padding: 10px;
    border: 1px solid #ddd;
}

#contact-info {
    width: 100%;
    display: inline-block;
}









































