/* RESET */

*{
margin:0;
padding:0;
box-sizing:border-box;
}

html{
scroll-behavior:smooth;
}

body{
font-family:'Cormorant Garamond',serif;
background:#faf9f7;
color:#111;
}

/* HERO */

.hero{
height:100vh;
position:relative;
overflow:hidden;
}

.hero video{
width:100%;
height:100%;
object-fit:cover;
}

.overlay{
position:absolute;
inset:0;
background:rgba(0,0,0,.45);
}

.hero-content{
position:absolute;
top:50%;
left:50%;
transform:translate(-50%,-50%);
text-align:center;
color:white;
z-index:2;
width:90%;
}

.hero-logo{
width:180px;
margin-bottom:25px;
}

.hero-content h1{
font-size:5rem;
letter-spacing:8px;
margin-bottom:20px;
}

.hero-content p{
font-size:1.4rem;
margin-bottom:35px;
}

.hero-content a{
display:inline-block;
padding:15px 35px;
background:white;
color:black;
text-decoration:none;
border-radius:50px;
font-weight:600;
transition:.3s;
}

.hero-content a:hover{
transform:translateY(-3px);
}

/* INTRO */

.intro{
padding:120px 10%;
text-align:center;
}

.intro h2{
font-size:4rem;
margin-bottom:25px;
}

.intro p{
max-width:850px;
margin:auto;
font-size:1.2rem;
line-height:1.9;
}

/* PRODUCTS */

.products{
padding:20px 7% 120px;
display:grid;
grid-template-columns:repeat(auto-fit,minmax(300px,1fr));
gap:35px;
}

.product-card{
background:white;
border-radius:25px;
overflow:hidden;
box-shadow:0 10px 35px rgba(0,0,0,.08);
transition:.4s;
}

.product-card:hover{
transform:translateY(-10px);
}

.product-card img{
width:100%;
height:350px;
object-fit:contain;
padding:25px;
background:white;
}

.product-info{
padding:25px;
}

.tag{
color:#b68a46;
font-size:.85rem;
letter-spacing:2px;
text-transform:uppercase;
margin-bottom:10px;
}

.product-info h3{
font-size:2rem;
margin-bottom:12px;
}

.product-info p{
font-size:1rem;
line-height:1.7;
margin-bottom:15px;
}

.price{
font-size:1.3rem;
font-weight:700;
margin-bottom:18px;
}

.buy-btn{
display:block;
text-align:center;
background:black;
color:white;
padding:14px;
border-radius:40px;
text-decoration:none;
transition:.3s;
}

.buy-btn:hover{
background:#222;
}

/* STORY */

.story{
padding:140px 10%;
background:white;
text-align:center;
}

.story h2{
font-size:4rem;
margin-bottom:25px;
}

.story p{
max-width:850px;
margin:auto;
line-height:1.9;
font-size:1.15rem;
}

/* NEWSLETTER */

.newsletter{
padding:120px 10%;
text-align:center;
background:#f3f0ea;
}

.newsletter h2{
font-size:3rem;
margin-bottom:20px;
}

.newsletter p{
margin-bottom:30px;
}

.newsletter form{
display:flex;
justify-content:center;
gap:15px;
flex-wrap:wrap;
}

.newsletter input{
padding:15px 20px;
width:320px;
border:1px solid #ddd;
border-radius:40px;
font-size:1rem;
}

.newsletter button{
padding:15px 35px;
border:none;
background:black;
color:white;
border-radius:40px;
cursor:pointer;
}

/* FOOTER */

footer{
background:#111;
color:white;
text-align:center;
padding:80px 20px;
}

.footer-logo{
width:120px;
margin-bottom:20px;
}

footer h3{
font-size:2rem;
margin-bottom:15px;
}

footer p{
margin:10px 0;
}

/* MOBILE */

@media(max-width:768px){

.hero-logo{
width:120px;
}

.hero-content h1{
font-size:3rem;
letter-spacing:4px;
}

.hero-content p{
font-size:1rem;
}

.intro h2,
.story h2{
font-size:2.5rem;
}

.newsletter h2{
font-size:2rem;
}

.products{
grid-template-columns:1fr;
padding:20px 5% 80px;
}

.product-card img{
height:280px;
}

}