/* RESET */
*{
margin:0;
padding:0;
box-sizing:border-box;
}

body{
padding-top:90px;
}

body{
font-family:'Inter', sans-serif;
background:#fffaf3;
}

/* NAV */
.nav{
position:fixed;
top:0;
width:100%;
padding:20px 40px;
display:flex;
justify-content:space-between;
align-items:center;
background:rgba(255,255,255,0.6);
backdrop-filter:blur(12px);
z-index:1000;
}

.logo{
font-family:'Playfair Display';
font-size:20px;
font-weight:600;
letter-spacing:2px;
}

.nav-links{
display:flex;
align-items:center;
gap:25px;
}

.nav-links a{
text-decoration:none;
color:#333;
font-weight:500;
}

.nav-btn{
padding:10px 22px;
border-radius:30px;
background:linear-gradient(135deg,#E67E22,#D4AF37);
color:white !important;
}

/* MOBILE MENU */
.menu-toggle{
display:none;
font-size:28px;
cursor:pointer;
}

@media(max-width:768px){

.nav-links{
position:fixed;
top:0;
right:-100%;
height:100vh;
width:70%;
background:white;
flex-direction:column;
justify-content:center;
gap:40px;
transition:.4s;
}

.nav-links.active{
right:0;
}

.menu-toggle{
display:block;
}

}

/* HERO */
.hero{
height:100vh;
display:flex;
align-items:center;
justify-content:center;
text-align:center;
position:relative;
overflow:hidden;
}

.hero-bg{
position:absolute;
top:0;
left:0;
width:100%;
height:100%;
background:
linear-gradient(
to top,
rgba(255,170,80,0.4),
rgba(255,210,140,0.2),
rgba(255,255,255,0.05)
),
url('https://images.unsplash.com/photo-1507525428034-b723cf961d3e?auto=format&fit=crop&w=1600&q=80');
background-size:cover;
background-position:center;
z-index:-1;
}

.hero-content{
position:relative;
z-index:2;
max-width:900px;
padding:40px;
}

.brand{
letter-spacing:6px;
font-size:14px;
color:#fff3e0;
margin-bottom:20px;
}

.hero h1{
font-family:'Playfair Display';
font-size:4rem;
color:white;
text-shadow:0 10px 40px rgba(0,0,0,0.5);
}

.hero p{
margin:25px 0;
font-size:1.2rem;
color:#fffaf3;
}

.btn{
padding:14px 30px;
border:none;
border-radius:50px;
background:linear-gradient(135deg,#E67E22,#D4AF37);
color:white;
font-size:16px;
cursor:pointer;
transition:all 0.3s ease;
box-shadow:0 10px 25px rgba(230,126,34,0.4);
}

.btn:hover{
transform:translateY(-3px);
box-shadow:0 15px 35px rgba(230,126,34,0.6);
}

/* SECTIONS */
.section{
padding:120px 10%;
text-align:center;
}


.grid{
display:grid;
grid-template-columns:repeat(auto-fit,minmax(300px,1fr));
gap:25px;
margin-top:40px;
}

.grid img{
width:100%;
height:400px;
object-fit:cover;
border-radius:20px;
}

img{
max-width:100%;
height:auto;
}

.grid img{
width:100%;
height:350px;
object-fit:cover;
border-radius:20px;
}

.close-btn{
display:none;
font-size:28px;
position:absolute;
top:20px;
right:20px;
cursor:pointer;
}

@media(max-width:768px){
.close-btn{
display:block;
}

/* SCROLL ANIMATIONS */
.reveal{
opacity:0;
transform:translateY(60px);
transition:all 0.8s ease;
}

.reveal.active{
opacity:1;
transform:translateY(0);
}  

.section{
padding:120px 10%;
text-align:center;
background:linear-gradient(
to bottom,
#fffaf3,
#f5e6d3
);
}  

.section:nth-child(even){
background:#fff;
}

.grid img{
transition:transform .4s ease, box-shadow .4s ease;
}

.grid img:hover{
transform:scale(1.05);
box-shadow:0 20px 40px rgba(0,0,0,0.2);
}

.section h2{
font-family:'Playfair Display';
font-size:2.5rem;
margin-bottom:20px;
}

/* LIGHTBOX */
.lightbox{
position:fixed;
top:0;
left:0;
width:100%;
height:100%;
background:rgba(0,0,0,0.9);
display:none;
align-items:center;
justify-content:center;
z-index:2000;
}

.lightbox img{
max-width:90%;
max-height:80%;
border-radius:10px;
}

.close-lightbox{
position:absolute;
top:30px;
right:40px;
font-size:40px;
color:white;
cursor:pointer;
}

body{
transition: opacity 0.5s ease;
}

.hero {
  position: relative;
  height: 100vh;
  display: flex;
  align-items: center;
  justify-content: center;
  text-align: center;
  overflow: hidden;
  color: white;
}

.hero-image {
  position: absolute;
  inset: 0;
  background-image: url("https://images.unsplash.com/photo-1507525428034-b723cf961d3e?auto=format&fit=crop&w=1600&q=80");
  background-size: cover;
  background-position: center;
  z-index: 0;
}

.hero-overlay {
  position: absolute;
  inset: 0;
  background: rgba(0, 0, 0, 0.45);
  z-index: 1;
}


/* HERO CONTENT */
.hero-content h1{
font-family:'Playfair Display';
font-size:3rem;
margin-bottom:10px;
}

.hero-content h2{
font-size:1.5rem;
margin-bottom:10px;
}

.hero-content p{
margin-bottom:15px;
}

.hero-trust{
margin-bottom:20px;
font-size:14px;
opacity:0.9;
}

.hero-image {
  filter: saturate(1.1) contrast(1.05);
}
  
/* SERVICES */
.services{
padding:100px 10%;
text-align:center;
background:#fffaf3;
}

.services h2{
font-family:'Playfair Display';
font-size:2.5rem;
margin-bottom:40px;
}

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

.service{
background:white;
padding:25px;
border-radius:15px;
box-shadow:0 10px 30px rgba(0,0,0,0.1);
transition:0.3s;
}

.service:hover{
transform:translateY(-5px);
}

/* CTA */
.cta{
text-align:center;
padding:100px 20px;
background:linear-gradient(135deg,#E67E22,#D4AF37);
color:white;
}

.cta h2{
font-family:'Playfair Display';
font-size:2.5rem;
margin-bottom:15px;
}

.cta p{
margin-bottom:20px;
}

.cta .btn{
background:white;
color:#E67E22;
}
