
*{

margin:0;

padding:0;

box-sizing:border-box;

}

html{

scroll-behavior:smooth;

}

body{

font-family:'Poppins',sans-serif;

background:#F8F7F4;

color:#333;

}

h1,h2,h3{

font-family:'Playfair Display',serif;

font-weight:700;

}

a{

text-decoration:none;

color:inherit;

}

img{

display:block;

width:100%;

}

.container{

width:90%;

max-width:1280px;

margin:auto;

}

/*------- head*/

#header{

position:fixed;

top:0;

left:0;

width:100%;

z-index:999;

transition:.4s;

padding:25px 0;

}

#header.scrolled{

background:white;

box-shadow:0 8px 25px rgba(0,0,0,.08);

}

#header .container{

display:flex;

justify-content:space-between;

align-items:center;

}

.logo a{

font-size:32px;

font-weight:700;

letter-spacing:2px;

color:white;

}

#menu ul{

display:flex;

list-style:none;

gap:45px;

}

#menu a{

font-size:15px;

font-weight:500;

color:white;

transition:.3s;

}

#menu a:hover{

color:#C89B63;

}

#header.scrolled .logo a{

color:#222;

}

#header.scrolled #menu a{

color:#222;

}

#mobileButton{

display:none;

font-size:28px;

color:white;

cursor:pointer;

}

.hero{

height:100vh;

background:url("../images/banner.jpg") center center;

background-size:cover;

position:relative;

}

.hero::before{

content:"";

position:absolute;

left:0;

top:0;

width:100%;

height:100%;

background:rgba(0,0,0,.45);

}

.hero-content{

position:relative;

z-index:2;

height:100%;

display:flex;

flex-direction:column;

justify-content:center;

align-items:flex-start;

color:white;

max-width:700px;

}

.hero h1{

font-size:68px;

line-height:1.1;

margin:20px 0;

}

.hero p{

font-size:22px;

line-height:1.8;

margin-bottom:40px;

}

.btn{

display:inline-block;

padding:16px 34px;

border-radius:40px;

font-weight:600;

margin-right:15px;

transition:.3s;

}

.btn-primary{

background:#8B6B43;

color:white;

}

.btn-secondary{

border:2px solid white;

color:white;

}

.btn:hover{

transform:translateY(-3px);

}




/* ===========================
   ABOUT
=========================== */

.about{

padding:120px 0;

}

.about .container{

display:grid;

grid-template-columns:1fr 1fr;

gap:80px;

align-items:center;

}

.about-left{

overflow:hidden;

border-radius:12px;

}

.about-left img{

height:600px;

object-fit:cover;

transition:.5s;

}

.about-left:hover img{

transform:scale(1.05);

}

.section-title{

display:inline-block;

letter-spacing:4px;

font-size:13px;

font-weight:600;

color:#8B6B43;

margin-bottom:20px;

}

.about h2{

font-size:48px;

margin-bottom:25px;

line-height:1.2;

}

.about p{

margin-bottom:20px;

font-size:17px;

line-height:1.9;

color:#666;

}

/*===========================
WHY
===========================*/

.why{

padding:120px 0;

background:#fff;

}

.title-center{

text-align:center;

margin-bottom:70px;

}

.title-center h2{

font-size:46px;

margin-top:15px;

}

.why-grid{

display:grid;

grid-template-columns:repeat(4,1fr);

gap:35px;

}

.why-item{

background:white;

padding:45px;

text-align:center;

border-radius:12px;

transition:.4s;

box-shadow:0 10px 30px rgba(0,0,0,.05);

}

.why-item:hover{

transform:translateY(-8px);

}

.icon{

font-size:42px;

margin-bottom:20px;

}

.why-item h3{

margin-bottom:15px;

font-size:24px;

}

.why-item p{

line-height:1.8;

color:#666;

}

