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

html{
  scroll-behavior:smooth;
}

body{
  font-family:Arial, Helvetica, sans-serif;
  background:#f6f3ef;
  color:#2f2f2f;
  line-height:1.5;
  overflow-x:hidden;
}

img{
  max-width:100%;
  display:block;
}

a{
  text-decoration:none;
}

button{
  font:inherit;
}

.container{
  width:min(1140px, 92%);
  margin:0 auto;
}

.small-container{
  width:min(760px, 92%);
  margin:0 auto;
}

.topbar{
  background:#c9a06a;
  color:#fff;
  text-align:center;
  padding:10px 14px;
  font-size:14px;
  font-weight:700;
}

.site-header{
  position:sticky;
  top:0;
  z-index:1000;
  background:rgba(90,43,0,0.95);
  backdrop-filter:blur(6px);
  box-shadow:0 2px 12px rgba(0,0,0,0.12);
}

.header-inner{
  min-height:90px;
  display:flex;
  align-items:center;
  justify-content:space-between;
  gap:24px;
}

.logo-link{
  display:flex;
  align-items:center;
  flex-shrink:0;
}

.logo{
  height:84px;
  width:auto;
}

.site-nav ul{
  list-style:none;
  display:flex;
  align-items:center;
  gap:28px;
}

.site-nav a{
  color:#fff;
  font-weight:700;
  font-size:16px;
}

.site-nav a:hover{
  opacity:0.85;
}

.menu-toggle{
  display:none;
  border:none;
  background:none;
  color:#fff;
  font-size:34px;
  cursor:pointer;
}

.hero{
  position:relative;
  min-height:88vh;
  display:flex;
  align-items:center;
  justify-content:center;
  overflow:hidden;
}

.hero-slider{
  position:absolute;
  inset:0;
}

.hero-slider img{
  position:absolute;
  inset:0;
  width:100%;
  height:100%;
  object-fit:cover;
  opacity:0;
  animation:fadeSlider 35s infinite;
}

.hero-slider img:nth-child(1){animation-delay:0s;}
.hero-slider img:nth-child(2){animation-delay:5s;}
.hero-slider img:nth-child(3){animation-delay:10s;}
.hero-slider img:nth-child(4){animation-delay:15s;}
.hero-slider img:nth-child(5){animation-delay:20s;}
.hero-slider img:nth-child(6){animation-delay:25s;}
.hero-slider img:nth-child(7){animation-delay:30s;}

@keyframes fadeSlider{
  0%{opacity:0;}
  5%{opacity:1;}
  14%{opacity:1;}
  20%{opacity:0;}
  100%{opacity:0;}
}

.hero-overlay{
  position:absolute;
  inset:0;
  background:linear-gradient(rgba(0,0,0,0.38), rgba(90,43,0,0.52));
}

.hero-content{
  position:relative;
  z-index:2;
  text-align:center;
  color:#fff;
}

.hero-content h1{
  font-size:clamp(38px, 6vw, 66px);
  line-height:1.08;
  margin-bottom:16px;
  text-shadow:0 4px 18px rgba(0,0,0,0.35);
}

.hero-content p{
  font-size:clamp(18px, 2.4vw, 24px);
  max-width:760px;
  margin:0 auto 26px;
  text-shadow:0 2px 10px rgba(0,0,0,0.35);
}

.hero-info-box{
  background:rgba(255,255,255,0.14);
  border:1px solid rgba(255,255,255,0.24);
  border-radius:20px;
  padding:24px;
  max-width:760px;
  margin:0 auto;
  backdrop-filter:blur(8px);
}

.hero-info-box p{
  margin-bottom:18px;
  font-size:19px;
}

.hero-actions{
  display:flex;
  flex-wrap:wrap;
  gap:14px;
  justify-content:center;
}

.btn{
  display:inline-flex;
  align-items:center;
  justify-content:center;
  min-width:180px;
  padding:13px 20px;
  border-radius:12px;
  font-weight:700;
  transition:0.25s;
}

.btn-light{
  background:#c9a06a;
  color:#fff;
}

.btn-light:hover{
  transform:translateY(-1px);
  opacity:0.95;
}

.btn-outline{
  background:transparent;
  color:#fff;
  border:2px solid rgba(255,255,255,0.8);
}

.btn-outline:hover{
  background:rgba(255,255,255,0.14);
}

.btn-dark{
  background:#5a2b00;
  color:#fff;
}

.btn-dark:hover{
  opacity:0.95;
}

.btn-dark-outline{
  background:transparent;
  color:#5a2b00;
  border:2px solid #5a2b00;
}

.btn-dark-outline:hover{
  background:#5a2b00;
  color:#fff;
}

.section{
  padding:78px 0;
}

.section-light{
  background:#f6f3ef;
}

.section-dark{
  background:#efe9e3;
}

.section h2{
  text-align:center;
  color:#5a2b00;
  font-size:clamp(30px, 4vw, 42px);
  margin-bottom:18px;
}

.section-subtitle{
  text-align:center;
  color:#6d5a4c;
  margin-bottom:28px;
}

.rooms-grid{
  display:grid;
  grid-template-columns:repeat(3, 1fr);
  gap:24px;
}

.room-card{
  background:#fff;
  border-radius:22px;
  overflow:hidden;
  box-shadow:0 8px 26px rgba(0,0,0,0.08);
  cursor:pointer;
  transition:0.25s;
}

.room-card:hover{
  transform:translateY(-4px);
  box-shadow:0 12px 28px rgba(0,0,0,0.12);
}

.room-cover{
  height:240px;
  background-size:cover;
  background-position:center;
}

.room-body{
  padding:22px 20px 24px;
  text-align:center;
}

.room-body h3{
  color:#5a2b00;
  font-size:26px;
  margin-bottom:12px;
}

.room-body p{
  margin-bottom:14px;
}

.room-body span{
  color:#c9a06a;
  font-weight:700;
}

.relax-full{
  margin-top:28px;
}

.relax-full-card{
  width:100%;
  max-width:100%;
}

.relax-cover{
  height:320px;
}

.services-grid{
  display:grid;
  grid-template-columns:repeat(4, 1fr);
  gap:18px;
  margin-top:26px;
}

.service-item{
  background:#fff;
  border-radius:16px;
  padding:22px 16px;
  text-align:center;
  font-weight:700;
  box-shadow:0 4px 14px rgba(0,0,0,0.06);
}

.map-box{
  overflow:hidden;
  border-radius:22px;
  box-shadow:0 8px 24px rgba(0,0,0,0.08);
}

#contatti p{
  text-align:center;
  font-size:18px;
  margin-bottom:12px;
}

.contact-buttons{
  margin-top:24px;
  display:flex;
  flex-wrap:wrap;
  gap:14px;
  justify-content:center;
}

.site-footer{
  background:#5a2b00;
  color:#fff;
  padding:36px 0;
}

.footer-inner{
  display:flex;
  flex-direction:column;
  align-items:center;
  justify-content:center;
  gap:14px;
  text-align:center;
}

.footer-logo{
  width:min(260px, 78%);
  height:auto;
}

.whatsapp-fixed{
  position:fixed;
  right:20px;
  bottom:24px;
  width:62px;
  height:62px;
  display:flex;
  align-items:center;
  justify-content:center;
  background:#25D366;
  border-radius:50%;
  box-shadow:0 8px 20px rgba(0,0,0,0.25);
  z-index:1100;
}

.whatsapp-fixed img{
  width:34px;
  height:34px;
}

.gallery-modal{
  position:fixed;
  inset:0;
  display:none;
  z-index:2000;
}

.gallery-modal.active{
  display:block;
}

.gallery-overlay{
  position:absolute;
  inset:0;
  background:rgba(0,0,0,0.82);
}

.gallery-content{
  position:relative;
  z-index:2;
  width:min(1100px, 94%);
  max-height:88vh;
  margin:4vh auto;
  background:#fff;
  border-radius:22px;
  padding:22px;
  box-shadow:0 14px 40px rgba(0,0,0,0.35);
  overflow-y:auto;
}

.gallery-close{
  position:absolute;
  top:10px;
  right:16px;
  border:none;
  background:none;
  color:#5a2b00;
  font-size:38px;
  cursor:pointer;
}

.gallery-content h3{
  text-align:center;
  color:#5a2b00;
  font-size:30px;
  margin-bottom:16px;
}

.gallery-main{
  overflow:hidden;
  border-radius:16px;
  margin-bottom:16px;
}

.gallery-main img{
  width:100%;
  max-height:62vh;
  object-fit:contain;
  background:#f2f2f2;
}

.gallery-thumbs{
  display:grid;
  grid-template-columns:repeat(4, 1fr);
  gap:12px;
  margin-top:8px;
}

.gallery-thumbs img{
  width:100%;
  height:120px;
  object-fit:cover;
  border-radius:12px;
  cursor:pointer;
  border:3px solid transparent;
  background:#f2f2f2;
}

.gallery-thumbs img.active{
  border-color:#c9a06a;
}

@media (max-width: 980px){
  .rooms-grid{
    grid-template-columns:1fr 1fr;
  }

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

@media (max-width: 768px){
  .logo{
    height:70px;
  }

  .menu-toggle{
    display:block;
    margin-left:auto;
  }

  .site-nav{
    display:none;
    width:100%;
  }

  .site-nav.active{
    display:block;
  }

  .site-nav ul{
    flex-direction:column;
    align-items:flex-start;
    gap:14px;
    padding:14px 0 10px;
  }

  .header-inner{
    min-height:78px;
    flex-wrap:wrap;
  }

  .hero{
    min-height:84vh;
  }

  .hero-info-box p{
    font-size:17px;
  }

  .hero-actions{
    flex-direction:column;
    align-items:center;
  }

  .rooms-grid,
  .services-grid{
    grid-template-columns:1fr;
  }

  .gallery-content{
    width:min(96%, 96%);
    max-height:92vh;
    margin:2vh auto;
    padding:16px;
  }

  .gallery-main img{
    max-height:42vh;
  }

  .gallery-thumbs{
    grid-template-columns:repeat(2, 1fr);
  }

  .gallery-thumbs img{
    height:92px;
  }

  .relax-cover{
    height:220px;
  }
}

@media (max-width: 480px){
  .topbar{
    font-size:13px;
    padding:8px 10px;
  }

  .hero-content h1{
    font-size:36px;
  }

  .hero-content p{
    font-size:17px;
  }

  .hero-info-box{
    padding:18px;
  }

  .btn{
    width:100%;
    max-width:280px;
  }

  .gallery-content{
    padding:18px;
  }

  .gallery-main img{
    max-height:46vh;
  }
}
.relax-image{
width:100%;
height:340px;
overflow:hidden;
border-top-left-radius:22px;
border-top-right-radius:22px;
}

.relax-image img{
width:100%;
height:100%;
object-fit:contain;
background:#f4f4f4;
}
.relax-banner{
position:relative;
width:100%;
height:420px;
overflow:hidden;
cursor:pointer;
}

.relax-banner-img{
width:100%;
height:100%;
object-fit:cover;
}

.relax-banner-overlay{
position:absolute;
width:100%;
height:100%;
background:rgba(0,0,0,0.35);
top:0;
left:0;
}

.relax-banner-text{
position:absolute;
top:50%;
left:50%;
transform:translate(-50%,-50%);
text-align:center;
color:white;
}

.relax-banner-text h2{
font-size:40px;
margin-bottom:10px;
}

.relax-banner-text p{
max-width:600px;
margin:auto;
margin-bottom:10px;
}

.relax-banner-text span{
color:#e5b978;
font-weight:bold;
}
.relax-banner{
position:relative;
width:100%;
height:420px;
overflow:hidden;
cursor:pointer;
margin-top:40px;
}

.relax-banner-img{
width:100%;
height:100%;
object-fit:cover;
}

.relax-banner-overlay{
position:absolute;
width:100%;
height:100%;
background:rgba(0,0,0,0.35);
top:0;
left:0;
}

.relax-banner-text{
position:absolute;
top:50%;
left:50%;
transform:translate(-50%,-50%);
text-align:center;
color:white;
}

.relax-banner-text h2{
font-size:38px;
margin-bottom:10px;
}

.relax-banner-text p{
max-width:600px;
margin:auto;
margin-bottom:10px;
}

.relax-banner-text span{
color:#e5b978;
font-weight:bold;
}
