/* Navigando per l'Elba - CSS ottimizzato */

:root{
  --primary:#0077b6;
  --primary-dark:#0f6b86;
  --accent:#fb8500;
  --aqua:#00b4d8;
  --whatsapp:#25d366;
  --white:#ffffff;
  --dark:#023047;
  --text:#23424d;
  --muted:#506872;
  --light-bg:#f8fdff;
  --soft:#f6fbfd;
  --shadow:0 20px 50px rgba(15,62,82,.08);
  --shadow-strong:0 24px 60px rgba(15,62,82,.16);
  --radius:30px;
}

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

html{
  font-size:16px;
}

body{
  font-family:'Inter',sans-serif;
  background:var(--light-bg);
  color:var(--dark);
  overflow-x:hidden;
  line-height:1.6;
}

img,video{
  max-width:100%;
}

img{
  height:auto;
}

a{
  color:inherit;
}

h1,h2,h3,.brand{
  font-family:'Playfair Display',serif;
}

p{
  color:var(--muted);
}

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

section{
  padding:90px 0;
}

.section-heading{
  max-width:850px;
  margin:0 auto 55px;
  text-align:center;
}

.section-kicker,
.hero-kicker{
  display:inline-block;
  margin-bottom:14px;
  font-size:12px;
  font-weight:800;
  letter-spacing:.18em;
  text-transform:uppercase;
}

.section-kicker{
  color:var(--primary-dark);
}

.section-heading h2{
  margin:0 0 16px;
  font-size:clamp(32px,4vw,54px);
  line-height:1.08;
  color:#102f3b;
}

.section-heading p{
  margin:0 auto;
  font-size:17px;
  line-height:1.85;
}

.btn{
  display:inline-flex;
  align-items:center;
  justify-content:center;
  gap:10px;
  padding:17px 30px;
  border-radius:999px;
  color:#fff;
  text-decoration:none;
  font-weight:800;
  font-size:15px;
  border:0;
  cursor:pointer;
  transition:transform .25s ease,box-shadow .25s ease,opacity .25s ease;
  box-shadow:0 14px 30px rgba(15,107,134,.22);
}

.btn:hover{
  transform:translateY(-2px);
  opacity:.96;
}

.btn-whatsapp{
  background:linear-gradient(135deg,var(--whatsapp) 0%,#1da851 100%);
  box-shadow:0 14px 30px rgba(37,211,102,.25);
}

.btn-primary{
  background:linear-gradient(135deg,#13a8c7 0%,var(--primary-dark) 100%);
}

.btn-sunset{
  background:linear-gradient(135deg,var(--accent) 0%,#d96f00 100%);
  box-shadow:0 14px 30px rgba(251,133,0,.25);
}

.cta-note{
  display:block;
  margin-top:15px;
  font-size:13px;
  font-weight:800;
  letter-spacing:.08em;
  color:rgba(2,48,71,.55);
  text-transform:uppercase;
}

.center-cta{
  text-align:center;
  padding-top:50px;
}

/* WhatsApp floating */
.whatsapp-float{
  position:fixed;
  right:28px;
  bottom:28px;
  z-index:1000;
  width:64px;
  height:64px;
  display:flex;
  align-items:center;
  justify-content:center;
  border-radius:50%;
  background:var(--whatsapp);
  color:#fff;
  font-size:34px;
  text-decoration:none;
  box-shadow:0 10px 25px rgba(0,0,0,.28);
  transition:.3s ease;
}

.whatsapp-float:hover{
  transform:scale(1.08) rotate(5deg);
}

/* Hero */
.hero{
  min-height:100vh;
  position:relative;
  display:flex;
  align-items:center;
  justify-content:center;
  color:#fff;
  text-align:center;
  background:url('../img/01.png') center/cover no-repeat;
  padding:120px 20px;
}

.hero::before{
  content:"";
  position:absolute;
  inset:0;
  background:linear-gradient(180deg,rgba(0,0,0,.48) 0%,rgba(0,0,0,.28) 45%,rgba(0,0,0,.55) 100%);
  z-index:1;
}

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

.hero-kicker{
  color:rgba(255,255,255,.84);
}

.hero h1{
  margin-bottom:22px;
  font-size:clamp(46px,9vw,112px);
  line-height:.88;
  text-shadow:2px 2px 18px rgba(0,0,0,.32);
}

.hero-subtitle{
  max-width:850px;
  margin:0 auto 34px;
  color:rgba(255,255,255,.88);
  font-size:clamp(16px,2vw,22px);
  letter-spacing:.08em;
  text-transform:uppercase;
}

.scroll-indicator{
  position:absolute;
  left:50%;
  bottom:30px;
  z-index:2;
  color:#fff;
  font-size:34px;
  transform:translateX(-50%);
  animation:bounce 2s infinite;
}

@keyframes bounce{
  0%,20%,50%,80%,100%{transform:translateY(0) translateX(-50%);}
  40%{transform:translateY(-14px) translateX(-50%);}
  60%{transform:translateY(-7px) translateX(-50%);}
}

/* Intro */
.intro-cta{
  padding:70px 0;
  background:#fff;
  text-align:center;
}

.intro-cta h2{
  margin:0 auto 18px;
  max-width:900px;
  font-size:clamp(30px,4vw,48px);
  line-height:1.1;
  color:#102f3b;
}

.intro-cta p{
  max-width:920px;
  margin:0 auto 30px;
  font-size:18px;
  line-height:1.85;
}

/* Experiences */
.experiences-section{
  background:linear-gradient(180deg,#ffffff 0%,#f7fbfd 100%);
}

.exp-grid{
  display:grid;
  grid-template-columns:repeat(2,minmax(0,1fr));
  gap:30px;
}

.exp-card{
  background:#fff;
  border-radius:var(--radius);
  overflow:hidden;
  box-shadow:var(--shadow);
  transition:.35s ease;
}

.exp-card:hover{
  transform:translateY(-8px);
  box-shadow:var(--shadow-strong);
}

.exp-card img{
  width:100%;
  height:350px;
  object-fit:cover;
  display:block;
}

.exp-info{
  padding:36px;
}

.exp-info h3{
  margin-bottom:12px;
  font-size:30px;
  line-height:1.18;
  color:#102f3b;
}

.exp-info p{
  font-size:16px;
  line-height:1.75;
}

.exp-meta{
  display:flex;
  justify-content:space-between;
  gap:18px;
  margin-top:22px;
  padding-top:22px;
  border-top:1px solid #edf3f5;
}

.exp-meta span{
  display:block;
  color:#6a7f87;
  font-size:13px;
  font-weight:700;
  text-transform:uppercase;
  letter-spacing:.08em;
}

.exp-meta b{
  display:block;
  color:var(--primary);
  font-size:24px;
  font-weight:900;
}

/* Shared rich sections */
.adl-sunset-experience,
.adl-henparty-section,
.adl-luna-section,
.adl-rib-section,
.location-section,
.adl-transfer-section,
.reviews-section,
.faq-section,
.adl-social-section{
  padding-left:20px;
  padding-right:20px;
}

.adl-sunset-experience{
  background:linear-gradient(135deg,#fff8ee 0%,#ffffff 45%,#f5fbfd 100%);
}

.adl-sunset-container,
.adl-henparty-container,
.adl-luna-container,
.adl-rib-container,
.adl-social-container{
  max-width:1200px;
  margin:0 auto;
}

.adl-sunset-grid,
.adl-henparty-grid,
.adl-rib-grid{
  display:grid;
  grid-template-columns:1fr 1fr;
  gap:42px;
  align-items:center;
}

.adl-sunset-image,
.adl-henparty-image,
.adl-rib-photo,
.adl-luna-photo{
  overflow:hidden;
  border-radius:28px;
  box-shadow:0 20px 50px rgba(0,0,0,.10);
  background:#fff;
}

.adl-sunset-image{
  min-height:700px;
}

.adl-sunset-image img,
.adl-henparty-image img,
.adl-rib-photo img,
.adl-luna-photo img{
  width:100%;
  height:100%;
  object-fit:cover;
  display:block;
}

.adl-sunset-content,
.adl-henparty-content,
.adl-rib-card,
.adl-luna-card,
.adl-transfer-content{
  background:#fff;
  border-radius:28px;
  padding:46px;
  box-shadow:var(--shadow);
}

.adl-sunset-kicker,
.adl-henparty-kicker,
.adl-transfer-kicker,
.adl-social-kicker{
  display:inline-block;
  margin-bottom:16px;
  font-size:12px;
  font-weight:800;
  letter-spacing:.18em;
  text-transform:uppercase;
}

.adl-sunset-kicker{
  color:var(--accent);
}

.adl-henparty-kicker,
.adl-transfer-kicker{
  color:var(--primary-dark);
}

.adl-sunset-content h2,
.adl-henparty-content h2,
.adl-transfer-content h2{
  margin:0 0 20px;
  font-size:clamp(34px,4vw,58px);
  line-height:1.06;
  color:#102f3b;
}

.adl-sunset-content h2 span{
  color:var(--accent);
}

.adl-henparty-content h2 span,
.adl-transfer-content h2 span,
.adl-rib-section h2 span{
  color:var(--primary);
}

.adl-sunset-lead,
.adl-henparty-lead,
.adl-transfer-lead{
  font-size:18px;
  line-height:1.8;
  margin-bottom:20px;
}

.adl-sunset-content p,
.adl-henparty-content p,
.adl-rib-card p,
.adl-luna-card p,
.adl-transfer-content p{
  font-size:16px;
  line-height:1.8;
}

.feature-list,
.adl-transfer-features{
  display:grid;
  gap:14px;
  margin:30px 0;
}

.feature-list div,
.adl-transfer-features div{
  background:var(--soft);
  border:1px solid rgba(16,47,59,.07);
  border-radius:14px;
  padding:16px 18px;
  font-size:15px;
  font-weight:700;
  color:var(--text);
}

.sunset-list div{
  background:#fff8ef;
  border-color:rgba(251,133,0,.13);
}

.info-box{
  margin:0 0 30px;
  padding:20px;
  border-radius:18px;
  background:var(--soft);
}

.info-box p{
  margin:8px 0;
}

.highlight-text{
  margin-bottom:30px;
  color:var(--primary-dark)!important;
  font-size:18px!important;
  font-weight:800;
}

/* Video */
.video-section{
  background:#fff;
}

.video-card{
  overflow:hidden;
  width:100%;
  border-radius:var(--radius);
  background:#000;
  box-shadow:var(--shadow);
}

.video-container{
  position:relative;
  width:100%;
  aspect-ratio:16/9;
  background:#000;
}

.video-container video{
  width:100%;
  height:100%;
  object-fit:cover;
  display:block;
}

/* Luna section */
.adl-luna-section{
  background:linear-gradient(180deg,#ffffff 0%,#f5fbfd 50%,#ffffff 100%);
}

.adl-luna-main{
  display:grid;
  grid-template-columns:1.05fr .95fr;
  gap:34px;
  align-items:start;
  margin-bottom:34px;
}

.adl-luna-gallery{
  display:grid;
  gap:18px;
}

.adl-luna-gallery-grid{
  display:grid;
  grid-template-columns:1fr 1fr;
  gap:18px;
}

.adl-luna-photo{
  border-radius:24px;
  border:1px solid rgba(16,47,59,.08);
}

.adl-luna-photo-lg{
  min-height:430px;
}

.adl-luna-gallery-grid .adl-luna-photo{
  min-height:220px;
}

.adl-luna-content{
  display:grid;
  gap:20px;
}

.adl-luna-card{
  border:1px solid rgba(16,47,59,.08);
  border-radius:24px;
  padding:32px 30px;
}

.adl-luna-card h3{
  margin:0 0 14px;
  font-size:26px;
  line-height:1.2;
  color:#102f3b;
}

.clean-list{
  list-style:none;
  padding:0;
  margin:0;
  display:grid;
  gap:12px;
}

.clean-list li{
  background:var(--soft);
  border:1px solid rgba(16,47,59,.07);
  border-radius:14px;
  padding:14px 16px;
  color:var(--text);
  line-height:1.5;
  font-size:15px;
}

.clean-list i{
  margin-right:8px;
  color:var(--aqua);
}

.tag-list{
  display:flex;
  flex-wrap:wrap;
  gap:12px;
}

.tag-list span{
  display:inline-flex;
  align-items:center;
  padding:11px 16px;
  border-radius:999px;
  background:#eef8fb;
  border:1px solid rgba(15,107,134,.12);
  color:var(--primary-dark);
  font-size:14px;
  font-weight:700;
}

.adl-luna-experience-boxes,
.adl-luna-bottom-grid{
  display:grid;
  grid-template-columns:1fr 1fr;
  gap:22px;
  margin-top:26px;
}

.adl-luna-exp-box{
  color:#fff;
  border-radius:26px;
  padding:34px 30px;
  background:linear-gradient(180deg,var(--primary-dark) 0%,#123f51 100%);
  box-shadow:0 18px 40px rgba(15,107,134,.22);
}

.adl-luna-exp-box span{
  display:inline-block;
  margin-bottom:14px;
  font-size:12px;
  font-weight:800;
  letter-spacing:.16em;
  text-transform:uppercase;
  color:rgba(255,255,255,.78);
}

.adl-luna-exp-box h3{
  margin:0 0 12px;
  font-size:24px;
  line-height:1.2;
  color:#fff;
}

.adl-luna-exp-box p{
  margin:0;
  font-size:15px;
  line-height:1.8;
  color:rgba(255,255,255,.92);
}

.adl-luna-cta-card{
  display:flex;
  flex-direction:column;
  justify-content:center;
  align-items:flex-start;
}

/* RIB */
.adl-rib-section{
  background:linear-gradient(180deg,#f7fbfd 0%,#ffffff 100%);
}

.adl-rib-card h3{
  margin-bottom:20px;
  font-size:30px;
  color:#102f3b;
}

.adl-rib-gallery{
  display:grid;
  gap:20px;
}

.adl-rib-photo{
  border-radius:24px;
}

.adl-rib-big{
  min-height:420px;
}

.adl-rib-small-grid{
  display:grid;
  grid-template-columns:repeat(3,1fr);
  gap:20px;
}

.adl-rib-small-grid .adl-rib-photo{
  min-height:180px;
}

/* Location */
.location-section{
  background:#fff;
}

.location-card{
  display:grid;
  grid-template-columns:1.15fr .85fr;
  overflow:hidden;
  margin:0;
  background:#fff;
  border-radius:var(--radius);
  box-shadow:var(--shadow);
}

.location-text{
  padding:55px;
}

.location-text h2{
  margin-bottom:20px;
  font-size:clamp(32px,4vw,48px);
  line-height:1.1;
  color:#102f3b;
}

.location-text h2 span{
  color:var(--primary);
}

.location-media{
  min-height:430px;
  background:#eef2f5 url('../img/14.jpg') center/cover no-repeat;
}

/* Transfer */
.adl-transfer-section{
  background:linear-gradient(180deg,#ffffff 0%,#f4fbfd 100%);
}

.adl-transfer-container{
  max-width:1000px;
  margin:0 auto;
}

.adl-transfer-content{
  text-align:center;
  padding:55px;
}

.adl-transfer-content p{
  max-width:820px;
  margin:0 auto 20px;
  font-size:17px;
}

.adl-transfer-features{
  grid-template-columns:1fr 1fr;
  margin:40px 0;
}

.adl-transfer-note{
  max-width:820px;
  margin:0 auto 35px;
  padding:22px;
  border-left:4px solid var(--primary-dark);
  border-radius:16px;
  background:#eef8fb;
  color:var(--text);
  text-align:left;
  font-size:15px;
  line-height:1.7;
}

/* Reviews */
.reviews-section{
  background:#fff;
}

.reviews-container{
  display:flex;
  gap:20px;
  overflow-x:auto;
  padding:10px 4px 30px;
  scroll-snap-type:x mandatory;
  -webkit-overflow-scrolling:touch;
}

.reviews-container::-webkit-scrollbar{
  display:none;
}

.review-card{
  flex:0 0 350px;
  display:flex;
  flex-direction:column;
  justify-content:space-between;
  border-radius:22px;
  padding:30px;
  background:#fff;
  border:1px solid #edf3f5;
  box-shadow:0 10px 30px rgba(0,0,0,.05);
  scroll-snap-align:center;
}

.stars{
  color:#ffc107;
  margin-bottom:15px;
  font-size:20px;
}

.review-text{
  margin-bottom:20px;
  color:#333;
  font-style:italic;
  line-height:1.6;
}

.author{
  font-weight:800;
  color:#003366;
}

/* FAQ */
.faq-section{
  background:linear-gradient(180deg,#f4fbfd 0%,#ffffff 100%);
}

.faq-grid{
  max-width:950px;
  margin:0 auto;
  display:grid;
  gap:16px;
}

details{
  background:#fff;
  border:1px solid rgba(16,47,59,.08);
  border-radius:18px;
  padding:20px 22px;
  box-shadow:0 10px 24px rgba(15,62,82,.05);
}

summary{
  cursor:pointer;
  font-weight:900;
  color:#102f3b;
  font-size:17px;
}

details p{
  margin-top:14px;
  line-height:1.8;
}

/* Social */
.adl-social-section{
  background:linear-gradient(180deg,#f4fbfd 0%,#ffffff 100%);
}

.adl-social-container{
  max-width:1000px;
}

.adl-social-box{
  border-radius:32px;
  padding:60px;
  text-align:center;
  background:linear-gradient(135deg,#102f3b 0%,var(--primary-dark) 100%);
  box-shadow:var(--shadow-strong);
}

.adl-social-kicker{
  color:rgba(255,255,255,.75);
}

.adl-social-box h2{
  margin:0 0 20px;
  font-size:clamp(36px,4vw,58px);
  line-height:1.08;
  color:#fff;
}

.adl-social-box h2 span{
  color:#9fe8ff;
}

.adl-social-box p{
  max-width:720px;
  margin:0 auto 35px;
  font-size:18px;
  line-height:1.8;
  color:rgba(255,255,255,.88);
}

.adl-social-buttons{
  display:flex;
  justify-content:center;
  gap:20px;
  flex-wrap:wrap;
}

.adl-social-btn{
  display:inline-flex;
  align-items:center;
  gap:12px;
  padding:18px 30px;
  border-radius:999px;
  text-decoration:none;
  font-weight:800;
  font-size:15px;
  color:#fff;
  transition:.25s ease;
  box-shadow:0 14px 30px rgba(0,0,0,.18);
}

.adl-social-btn:hover{
  transform:translateY(-3px) scale(1.02);
}

.facebook-btn{
  background:#1877f2;
}

.instagram-btn{
  background:linear-gradient(135deg,#833ab4 0%,#fd1d1d 50%,#fcb045 100%);
}

/* Footer */
.site-footer{
  padding:60px 0;
  background:var(--dark);
  color:#fff;
  text-align:center;
}

.site-footer h2{
  margin-bottom:12px;
  font-size:28px;
  letter-spacing:2px;
  text-transform:uppercase;
}

.site-footer p{
  margin:8px 0;
  color:rgba(255,255,255,.68);
}

.site-footer a{
  color:#fff;
  text-decoration:none;
  font-weight:800;
}

/* Responsive */
@media(max-width:991px){
  section{
    padding:75px 0;
  }

  .exp-grid,
  .adl-sunset-grid,
  .adl-henparty-grid,
  .adl-rib-grid,
  .adl-luna-main,
  .adl-luna-experience-boxes,
  .adl-luna-bottom-grid,
  .location-card{
    grid-template-columns:1fr;
  }

  .adl-sunset-image{
    min-height:500px;
  }

  .adl-sunset-content,
  .adl-henparty-content,
  .adl-rib-card,
  .adl-transfer-content{
    padding:32px;
  }

  .location-media{
    order:-1;
    min-height:320px;
  }

  .location-text{
    padding:36px;
  }

  .adl-rib-big{
    min-height:320px;
  }

  .adl-rib-small-grid{
    grid-template-columns:1fr;
  }

  .adl-rib-small-grid .adl-rib-photo{
    min-height:220px;
  }

  .adl-transfer-features{
    grid-template-columns:1fr;
  }
}

@media(max-width:640px){
  .hero{
    min-height:88vh;
    padding:100px 16px;
  }

  .hero h1{
    font-size:clamp(42px,16vw,70px);
  }

  .hero-subtitle{
    font-size:14px;
    letter-spacing:.04em;
  }

  .whatsapp-float{
    right:18px;
    bottom:18px;
    width:56px;
    height:56px;
    font-size:30px;
  }

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

  .section-heading{
    margin-bottom:38px;
  }

  .exp-card img{
    height:280px;
  }

  .exp-info{
    padding:28px 22px;
  }

  .exp-meta{
    flex-direction:column;
  }

  .adl-sunset-image{
    min-height:360px;
  }

  .adl-luna-gallery-grid{
    grid-template-columns:1fr;
  }

  .adl-luna-photo-lg{
    min-height:280px;
  }

  .adl-luna-gallery-grid .adl-luna-photo{
    min-height:220px;
  }

  .adl-luna-card,
  .adl-luna-exp-box{
    padding:26px 22px;
  }

  .review-card{
    flex-basis:310px;
  }

  .adl-social-box{
    padding:36px 24px;
  }

  .adl-social-buttons{
    flex-direction:column;
    align-items:center;
  }

  .adl-social-btn{
    width:100%;
    max-width:320px;
    justify-content:center;
  }
}
