*{
margin:0;
padding:0;
box-sizing:border-box;
}

body{
font-family:'Inter',sans-serif;
background:#faf8f3;
color:#222;
}

/* HERO */
.hero{
height:100vh;
background:url("images/hero.webp") center/cover no-repeat;
position:relative;
display:flex;
align-items:center;
justify-content:center;
text-align:center;
}

.overlay{
position:absolute;
inset:0;
background:linear-gradient(to bottom,
rgba(0,0,0,.45),
rgba(0,0,0,.35),
rgba(0,0,0,.55));
}

.hero-content{
position:relative;
color:white;
animation:fadeUp 2.2s ease-out;
}

@keyframes fadeUp{
from{
opacity:0;
transform:translateY(25px);
}

to{
opacity:1;
transform:translateY(0);
}
}
.hero h1{
font-family:'Cormorant Garamond',serif;
font-size:clamp(60px,8vw,110px);
font-weight:600;
line-height:0.95;
letter-spacing:-1px;
text-shadow:0 5px 30px rgba(0,0,0,.4);
}

.hero h1 span{
display:block;
font-size:0.55em;
font-style:italic;
font-weight:400;
letter-spacing:2px;
opacity:0.9;
margin-top:10px;
}

.location{
margin-top:35px;
letter-spacing:3px;
text-transform:uppercase;
font-size:14px;
opacity:0.85;
}

.btn{
display:inline-block;
margin-top:40px;
padding:18px 50px;
border:1px solid rgba(255,255,255,.7);
border-radius:50px;
color:white;
text-decoration:none;
letter-spacing:2px;
text-transform:uppercase;
font-size:13px;
background:rgba(255,255,255,.08);
backdrop-filter:blur(10px);
transition:.4s;
}

.btn:hover{
background:white;
color:black;
transform:translateY(-3px);
}

/* INTRO */
.intro{
padding:120px 20px;
text-align:center;
max-width:800px;
margin:auto;
}

.intro h2{
font-family:'Cormorant Garamond',serif;
font-size:48px;
margin-bottom:20px;
}

/* GALLERY */
.gallery{
height:80vh;
position:relative;
overflow:hidden;
}

.slider img{
position:absolute;
width:100%;
height:80vh;
object-fit:cover;
opacity:0;
transition:opacity 2s;
}

.slider img.active{
opacity:1;
animation:zoom 8s ease;
}

@keyframes zoom{
from{transform:scale(1);}
to{transform:scale(1.05);}
}

/* FORM */
.contact{
padding:120px 20px;
text-align:center;
}

.final-title{
font-family:'Cormorant Garamond',serif;
font-size:55px;
line-height:1.1;
margin-bottom:60px;
}

form{
max-width:500px;
margin:auto;
display:flex;
flex-direction:column;
gap:15px;
}

input{
padding:18px;
border:1px solid #ddd;
font-size:16px;
}

button{
padding:18px;
background:#111;
color:white;
border:none;
text-transform:uppercase;
letter-spacing:2px;
cursor:pointer;
}

button:hover{
background:#000;
}

.privacy{
font-size:13px;
line-height:1.4;
}

.secure{
margin-top:25px;
color:#666;
font-size:14px;
}

body{
animation:pageIn 1.6s ease-out;
}

@keyframes pageIn{
from{
opacity:0;
transform:scale(1.02);
}

to{
opacity:1;
transform:scale(1);
}
}

.trust{
margin-top:20px;
font-size:13px;
letter-spacing:1px;
opacity:0.7;
text-transform:uppercase;
}

.lang-switch{
position:absolute;
top:20px;
right:20px;
z-index:999;
}

.lang-switch button{
background:rgba(255,255,255,0.15);
border:1px solid rgba(255,255,255,0.4);
color:white;
padding:8px 12px;
margin-left:5px;
cursor:pointer;
backdrop-filter:blur(10px);
font-size:12px;
letter-spacing:1px;
}

.lang-switch button:hover{
background:white;
color:black;
}

/* FEATURES */

.features{

padding:100px 20px;

background:#f7f4ee;

text-align:center;

}

.features h2{

font-family:'Cormorant Garamond',serif;

font-size:52px;

font-weight:500;

line-height:1.1;

margin-bottom:35px;

letter-spacing:-0.5px;

}


.features-intro{

max-width:850px;

margin:30px auto 90px;

font-family:'Cormorant Garamond',serif;

font-size:26px;

line-height:1.5;

font-style:italic;

color:#555;

}

#success-message{

display:none;

margin-top:30px;

font-size:20px;

color:#4d8b57;

letter-spacing:.5px;

animation:fadeSuccess .5s ease;

}


#success-message::first-letter{

font-size:35px;

}


@keyframes fadeSuccess{

from{

opacity:0;

transform:translateY(10px);

}

to{

opacity:1;

transform:translateY(0);

}

}

.features-grid{

display:grid;

grid-template-columns:repeat(auto-fit,minmax(250px,1fr));

gap:55px 40px;

max-width:1100px;

margin:auto;

}

.features h2{

font-family:'Cormorant Garamond',serif;

font-size:52px;

font-weight:500;

line-height:1.1;

margin-bottom:35px;

letter-spacing:-0.5px;

}

.feature h3{

font-family:'Cormorant Garamond',serif;

font-size:30px;

margin-bottom:22px;

letter-spacing:.5px;

}