/* Style CSS*/


body {
    background-color: #e8e0d4;
  
}

h1, h2, h3, h4, h5, p {
    font-family: 'Playfair Display', serif;
}

/* Navbar */

.background-top {
    background-color: #e8e0d4;
}

.navbar-brand-logo {
	font-family: 'Playfair Display', serif;
	color: #5e4636;
	font-size: 30px;
	
	
}
/* Nav links */
.navbar-nav .nav-link {
    margin-left: 25px;
    font-family: 'Playfair Display', serif;
    font-size: 18px;
    font-weight: 500;
    color: #5e4636;
	gap: 10px;
}

/* Hover  */
.navbar-nav .nav-link:hover {
    color: #8c5a3c;
}

.nav-item .nav-link .active {
	align-items: center;
	
}

/* Dropdown arrow */
.navbar .dropdown-toggle::after {
    margin-left: 6px;
    border-top: 5px solid #5e4636;
    border-right: 5px solid transparent;
    border-left: 5px solid transparent;
}

/* Dropdown menu */
.dropdown-menu {
    background-color: #e8e0d4;
    border: 1px solid #e6dccf;
}

/* Dropdown menu items */
.dropdown-item {
    font-family: 'Playfair Display', serif;
    color: #5e4636;
}

/* Dropdown hover */
.dropdown-item:hover {
    background-color: #5e4636;
    color: #e8e0d4;
}

.nav-link:focus,
.dropdown-item:focus {
    outline: none;
    box-shadow: none;
}


/* Hero Header*/ 

.hero {
   	margin-top: -100px;
    padding-top: 150px;
	background: url("../assets/newimagesweb/hero-home.webp") center center no-repeat;
    background-size: cover;
    padding: 120px 0;
}

.hero-title {
    font-size: 50px;
    color: #5e4636;
    margin-bottom: 30px;
}

.hero-description {
    font-size: 20px;
    color: #5e4636;
    max-width: 500px;
    line-height: 1.6;
}

.hero-image {
    border-radius: 8px;
}


/* Welcome section */
.welcome-headline{
  font-family: 'Playfair Display', serif;
  font-size: 40px;
  color: #5e4636;
  margin-bottom: 15px;
}

.welcome-text1,
.welcome-text2 {
  font-size: 16px;
  line-height: 1.7;
  color: #5e4636;
}

.welcome-images img{
  border-radius: 8px;
}


/* Custom button */
.class-btn{
  display: inline-block;
  margin-top: 20px;
  background-color: #6b4a36; 
  color: #f6f3ef;
  padding: 12px 28px;
  border-radius: 8px;
  text-decoration: none;
  font-family: 'Playfair Display', serif;
  font-size: 16px;
}

.class-btn:hover{
  color: #f6f3ef;
  text-decoration: none;
}



/* Why Choose Us*/
.why-choose {
    background-color: #f7f2ea;
}

.why-choose h2 {
    color: #5e4636;
	font-size: 40px;
}

.why-choose h4 {
    color: #6b4a36; 
    margin-top: 10px;
	font-size: 25px;
}

.why-choose p {
    color: #6b4a36;
    font-size: 15px;
}



/* Services Preview */

.preview-box{
  background-color: #6b4a36;
}

.services-headline {
	font-size: 40px;
	color: #f5f3ef;
}
.project-item img {
    transition: .5s;
}
  
.project-item:hover img {
    transform: scale(1.2);
}

.project-overlay h4{
  font-size: 20px;
  color: #f5f3ef;
}
  
.project-overlay {
    position: absolute;
    padding: 25px;
    width: 100%;
    height: 100%;
    top: 0;
    left: 0;
    display: flex;
    flex-direction: column;
    align-items: flex-start;
    justify-content: flex-end;
    background: linear-gradient(rgba(255, 255, 255, .1) 50%, var(--bs-dark));
    z-index: 1;
}


/* Footer */

.footer{
    background-color: #6b4a36;   
    color: #f6f3ef;              
}

/* Footer links */
.footer .btn.btn-link {
    display: block;
    margin-bottom: 10px;
    padding: 0;
    text-align: left;
    color: #f6f3ef;
    font-weight: normal;
    transition: .3s;
    font-family: 'Playfair Display', serif;
}

.footer .btn.btn-link:hover {
    color: #f6f3ef;
    letter-spacing: 1px;
    box-shadow: none;
}

/* Arrow before footer links */
.footer .btn.btn-link::before {
    position: relative;
    content: "\f105";
    font-family: "Font Awesome 5 Free";
    font-weight: 900;
    margin-right: 10px;
}

/* Footer copyright section */
.footer .copyright {
    padding: 25px 0;
    font-size: 14px;
    border-top: 1px solid rgba(246,243,239,.15);
}

/* Copyright links */
.footer .copyright a {
    color: #f6f3ef;
}

.footer .copyright a:hover {
    color: #f6f3ef;
}

/* Bottom footer menu */
.footer .footer-menu a {
    margin-right: 15px;
    padding-right: 15px;
}

.footer .footer-menu a:last-child {
    margin-right: 0;
    padding-right: 0;
    border-right: none;
}

.fa-instagram  {
    color: #f6f3ef;
    font-size: 30px;
    margin-left: -14px;
}

