
/*
Theme Name: Falisha Luxury Interior
Version: 3.0
*/

*{
margin:0;
padding:0;
box-sizing:border-box;
scroll-behavior:smooth;
font-family:Arial,sans-serif;
}

body{
background:#f8f5f1;
color:#2e241d;
line-height:1.7;
overflow-x:hidden;
}

header{
position:fixed;
top:0;
width:100%;
background:rgba(255,255,255,0.92);
backdrop-filter:blur(10px);
z-index:999;
box-shadow:0 2px 15px rgba(0,0,0,.06);
}

.container{
width:90%;
max-width:1250px;
margin:auto;
}

.navbar{
display:flex;
justify-content:space-between;
align-items:center;
padding:20px 0;
}

.logo{
font-size:30px;
font-weight:bold;
color:#b88b5a;
letter-spacing:2px;
}

.nav-links{
display:flex;
gap:35px;
}

.nav-links a{
text-decoration:none;
color:#2e241d;
font-weight:600;
transition:.3s;
}

.nav-links a:hover{
color:#b88b5a;
}

.menu-toggle{
display:none;
font-size:32px;
cursor:pointer;
}

.hero{
height:100vh;
background:
linear-gradient(rgba(0,0,0,.55),rgba(0,0,0,.55)),
url('https://images.unsplash.com/photo-1505693416388-ac5ce068fe85?q=80&w=1600') center/cover;
display:flex;
align-items:center;
justify-content:center;
text-align:center;
padding:20px;
color:white;
}

.hero-content{
animation:fadeUp 1.2s ease;
}

.hero h1{
font-size:72px;
margin-bottom:20px;
letter-spacing:4px;
}

.hero p{
font-size:24px;
max-width:750px;
margin:auto;
margin-bottom:35px;
}

.btn{
display:inline-block;
padding:16px 38px;
background:#b88b5a;
color:white;
border-radius:50px;
text-decoration:none;
font-weight:bold;
transition:.3s;
}

.btn:hover{
transform:translateY(-3px);
background:#9d7346;
}

section{
padding:110px 0;
}

.section-title{
text-align:center;
margin-bottom:60px;
}

.section-title h2{
font-size:48px;
margin-bottom:15px;
}

.about{
display:grid;
grid-template-columns:1fr 1fr;
gap:60px;
align-items:center;
}

.about img{
width:100%;
border-radius:30px;
box-shadow:0 10px 30px rgba(0,0,0,.15);
}

.services{
display:grid;
grid-template-columns:repeat(auto-fit,minmax(260px,1fr));
gap:30px;
}

.card{
background:white;
padding:40px;
border-radius:28px;
box-shadow:0 10px 25px rgba(0,0,0,.08);
transition:.4s;
}

.card:hover{
transform:translateY(-10px);
}

.portfolio{
display:grid;
grid-template-columns:repeat(auto-fit,minmax(320px,1fr));
gap:30px;
}

.portfolio img{
width:100%;
height:280px;
object-fit:cover;
border-radius:25px;
transition:.4s;
}

.portfolio img:hover{
transform:scale(1.03);
}

.stats{
display:grid;
grid-template-columns:repeat(auto-fit,minmax(220px,1fr));
gap:25px;
text-align:center;
}

.stat-box{
background:white;
padding:45px 20px;
border-radius:25px;
box-shadow:0 10px 25px rgba(0,0,0,.08);
}

.stat-box h3{
font-size:42px;
color:#b88b5a;
}

.cta{
background:#b88b5a;
padding:80px 30px;
border-radius:35px;
text-align:center;
color:white;
}

footer{
background:#211913;
padding:50px 20px;
text-align:center;
color:white;
}

.whatsapp{
position:fixed;
right:22px;
bottom:22px;
width:65px;
height:65px;
border-radius:50%;
background:#25D366;
display:flex;
align-items:center;
justify-content:center;
font-size:30px;
color:white;
text-decoration:none;
z-index:999;
box-shadow:0 5px 20px rgba(0,0,0,.25);
}

.fade{
opacity:0;
transform:translateY(40px);
transition:1s;
}

.fade.show{
opacity:1;
transform:translateY(0);
}

@keyframes fadeUp{
from{
opacity:0;
transform:translateY(40px);
}
to{
opacity:1;
transform:translateY(0);
}
}

@media(max-width:768px){

.menu-toggle{
display:block;
}

.nav-links{
position:absolute;
top:82px;
left:0;
width:100%;
background:white;
flex-direction:column;
align-items:center;
padding:30px 0;
display:none;
}

.nav-links.active{
display:flex;
}

.hero h1{
font-size:44px;
}

.hero p{
font-size:18px;
}

.about{
grid-template-columns:1fr;
}

.section-title h2{
font-size:36px;
}
}
