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

html{
scroll-behavior:smooth;
}

body{
font-family:Arial,Helvetica,sans-serif;
background:#f8f6f2;
color:#333;
line-height:1.7;
}

h1,h2,h3{
font-family:'Cormorant Garamond',serif;
}

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

/* HEADER */

header{
position:fixed;
top:0;
left:0;
width:100%;
padding:20px 0;
background:rgba(0,0,0,.55);
z-index:999;
}

header .container{
display:flex;
justify-content:space-between;
align-items:center;
}

header h2{
color:#fff;
font-size:34px;
}

nav{
display:flex;
gap:25px;
}

nav a{
color:#fff;
text-decoration:none;
font-weight:bold;
}

nav a:hover{
color:#c9a25f;
}

/* HERO */

.hero{
height:100vh;
background:
linear-gradient(rgba(0,0,0,.45),rgba(0,0,0,.45)),
url("../images/centro.jpg");
background-size:cover;
background-position:center;
display:flex;
justify-content:center;
align-items:center;
text-align:center;
}

.overlay{
padding:20px;
}

.overlay h1{
font-size:80px;
color:#fff;
margin-bottom:20px;
}

.overlay p{
font-size:24px;
color:#fff;
margin-bottom:30px;
}

.btn{
display:inline-block;
padding:15px 35px;
background:#b9975b;
color:#fff;
text-decoration:none;
border-radius:40px;
}

.btn:hover{
background:#2f4b3d;
}

/* SEZIONI */

section{
padding:90px 0;
}

section h2{
font-size:48px;
text-align:center;
margin-bottom:30px;
color:#2f4b3d;
}

section p{
max-width:850px;
margin:auto;
text-align:center;
font-size:18px;
}

/* CAMERE */

.cards{
display:grid;
grid-template-columns:repeat(3,1fr);
gap:25px;
margin-top:40px;
}

.card{
background:#fff;
border-radius:15px;
overflow:hidden;
box-shadow:0 10px 20px rgba(0,0,0,.08);
}

.card img{
width:100%;
height:240px;
object-fit:cover;
}

.card h3{
padding:20px;
text-align:center;
font-size:30px;
}

/* GALLERY */

.gallery{
display:grid;
grid-template-columns:repeat(3,1fr);
gap:20px;
margin-top:30px;
}

.gallery img{
width:100%;
height:220px;
object-fit:cover;
border-radius:10px;
}

/* CONTATTI */

#contatti{
background:#2f4b3d;
color:#fff;
}

#contatti h2{
color:#fff;
}

#contatti p{
margin-bottom:15px;
}

/* FOOTER */

footer{
background:#1f3028;
color:#fff;
text-align:center;
padding:25px;
}

/* RESPONSIVE */

@media(max-width:900px){

header .container{
flex-direction:column;
gap:15px;
}

nav{
flex-wrap:wrap;
justify-content:center;
}

.overlay h1{
font-size:50px;
}

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

.cards,
.gallery{
grid-template-columns:1fr;
}

section h2{
font-size:38px;
}

}
/* ===== SEZIONE BENVENUTI ===== */

#chi{
padding:80px 0 40px;
background:#f8f6f2;
}

#chi h2{
font-family:'Cormorant Garamond',serif;
font-size:60px;
color:#2f4b3d;
text-align:center;
margin-bottom:40px;
}

.intro p{
font-family:'Poppins',sans-serif;
font-size:20px;
line-height:2;
text-align:center;
color:#444;
margin-bottom:18px;
}

.intro p{
font-family:'Poppins',sans-serif;
font-size:20px;
line-height:2;
text-align:center;
color:#444;
margin-bottom:25px;
}

.intro strong{
color:#2f4b3d;
}
/* ===========================
   CONTATTI
=========================== */

#contatti{
background:#2f4b3d;
padding:90px 0;
color:#fff;
}

#contatti h2{
font-family:'Cormorant Garamond',serif;
font-size:52px;
text-align:center;
margin-bottom:60px;
color:#fff;
}

.contact-wrapper{
display:grid;
grid-template-columns:1fr 1.4fr;
gap:50px;
align-items:start;
}

.contact-info h3{
font-family:'Cormorant Garamond',serif;
font-size:34px;
margin-bottom:25px;
color:#d8b36a;
}

.contact-info p{
text-align:left;
margin-bottom:22px;
font-size:18px;
line-height:1.8;
color:#eee;
}

.contact-buttons{
display:flex;
gap:15px;
margin-top:30px;
}

.contact-buttons .btn{
padding:12px 28px;
border-radius:30px;
background:#b9975b;
color:#fff;
text-decoration:none;
font-weight:600;
}

.contact-buttons .btn:hover{
background:#fff;
color:#2f4b3d;
}

.contact-map iframe{
width:100%;
height:420px;
border:0;
border-radius:15px;
box-shadow:0 10px 25px rgba(0,0,0,.25);
}

/* ===========================
   FOOTER
=========================== */

footer{
background:#23282c;
padding:70px 0 0;
color:#ddd;
}

.footer-container{
width:90%;
max-width:1200px;
margin:auto;
display:grid;
grid-template-columns:repeat(4,1fr);
gap:40px;
}

.footer-box h3{
font-size:22px;
margin-bottom:20px;
color:#fff;
font-family:'Cormorant Garamond',serif;
padding-bottom:12px;
border-bottom:1px solid rgba(255,255,255,.15);
}

.footer-box p{
margin:12px 0;
text-align:left;
font-size:16px;
color:#bbb;
}

.footer-box a{
display:block;
margin:12px 0;
text-decoration:none;
color:#bbb;
transition:.3s;
}

.footer-box a:hover{
color:#d8b36a;
padding-left:6px;
}

.copyright{
margin-top:50px;
background:#1a1d20;
text-align:center;
padding:18px;
font-size:14px;
color:#aaa;
}

@media(max-width:900px){

.contact-wrapper{
grid-template-columns:1fr;
}

.footer-container{
grid-template-columns:1fr;
}

.footer-box,
.contact-info{
text-align:center;
}

.footer-box p,
.contact-info p{
text-align:center;
}

.contact-buttons{
justify-content:center;
flex-wrap:wrap;
}

}
/*=========================
TERRITORIO
=========================*/

#territorio{

#territorio{
padding:40px 0 100px;
background:#f8f6f2;
}

#territorio h2{

font-family:'Cormorant Garamond',serif;

font-size:56px;

color:#2f4b3d;

text-align:center;

margin-bottom:20px;

}

.territorio-intro{

max-width:800px;

margin:0 auto 60px;

text-align:center;

font-size:20px;

color:#555;

}

.territorio-grid{

display:grid;

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

gap:35px;

}

.territorio-card{

background:#fff;

border-radius:18px;

overflow:hidden;

box-shadow:0 12px 30px rgba(0,0,0,.08);

transition:.35s;

}

.territorio-card:hover{

transform:translateY(-8px);

}

.territorio-card img{

width:100%;
height:280px;
display:block;
object-fit:cover;
transition:.5s;

}

.territorio-content{

padding:30px;

}

.territorio-content h3{

font-family:'Cormorant Garamond',serif;

font-size:34px;

margin-bottom:15px;

color:#2f4b3d;

}

.territorio-content p{

font-size:17px;

line-height:1.8;

margin-bottom:25px;

text-align:left;



}

.territorio-card{
overflow:hidden;
}

.territorio-card:hover img{

transform:scale(1.08);

}

@media(max-width:900px){

.territorio-grid{

grid-template-columns:1fr;

}

}