/* styles.css */

* {
  padding: 0;
  margin: 0;
  box-sizing: border-box;
}
html,
body {
  display: flex;
  flex-direction: column;
  margin: 0;
  padding: 0;
  background-color: #faf3e0;
  font-family: "Nunito Sans", sans-serif;
  font-weight: 200;
}
.header {
  display: flex;
  flex-direction: row;
  width: 100%;
  height: auto;
}
.circle {
  position: relative;
  margin: 20px auto 10px;
  -webkit-box-shadow: 0 -5px 80px -1px rgba(0, 0, 0, 0.035);
  -moz-box-shadow: 0 -5px 80px -1px rgba(0, 0, 0, 0.035);
  box-shadow: 0 -5px 80px -1px rgba(0, 0, 0, 0.035);
  background: rgba(255, 255, 255, 0.5);
  background: -moz-linear-gradient(
    top,
    rgba(255, 255, 255, 0.6) 60%,
    rgba(255, 255, 255, 1) 60%,
    rgba(170, 170, 170, 1) 100%
  );
  background: -webkit-linear-gradient(
    top,
    rgba(255, 255, 255, 0.6) 60%,
    rgba(255, 255, 255, 1) 60%,
    rgba(170, 170, 170, 1) 100%
  );
  background: linear-gradient(
    to bottom,
    rgba(255, 255, 255, 0.6) 60%,
    rgba(255, 255, 255, 1) 60%,
    rgba(170, 170, 170, 1) 100%
  );
  filter: progid: DXImageTransform.Microsoft.gradient( startColorstr='#ffffff', endColorstr='#aaaaaa', GradientType=0);
  width: 280px;
  height: 280px;
  border-radius: 100%;
  overflow: hidden;
  transition: box-shadow 0.5s ease-out;
  z-index: 100;
  transform: translateY(-50px);
}

.circle:hover {
  -webkit-box-shadow: 0 -5px 80px -1px rgba(0, 0, 0, 0.075);
  -moz-box-shadow: 0 -5px 80px -1px rgba(0, 0, 0, 0.075);
  box-shadow: 0 -5px 80px -1px rgba(0, 0, 0, 0.075);
}

.wave {
  position: absolute;
  top: 0;
  left: 0;
  z-index: 2;
}

h1 {
  display: flex;
  flex-direction: row;
  margin-bottom: 0;
  font-size: 36px;
  font-weight: 200;
  color: #ffffff;
  font-size: 5vw;
  font-family: "Nunito Sans", sans-serif;
  font-weight: 600;
  margin: 0 auto;
  padding: 0;
  height: auto;
  margin-block-start: 10px;
  margin-block-end: 10px;
  font-family: "Oxanium", sans-serif;
  text-align: center;
}
p {
  font-size: 20px;
}
.hero_section h2 {
  width: 100%;
  font-size: 18px;
  letter-spacing: 5px;
  font-weight: 400;
  color: #90d4ff;
  font-size: 3vw;
  font-family: "Poppins", sans-serif;
  font-weight: 400;
  margin: 0 auto;
  text-align: center;
}

.hero_section h3 {
  margin-top: 0;
  font-size: 12px;
  letter-spacing: 3px;
  font-weight: 400;
  color: #61b4e7;
  font-family: "Poppins", sans-serif;
  margin: 0 auto;
  font-weight: 400;
}
.hero_section .circle img {
  position: absolute;
  width: 90%;
  height: 90%;
  top: 5%;
  left: 5%;
  object-fit: contain;
  display: flex;
  align-items: center;
  justify-content: center;
  margin: auto;
  z-index: 1000;
}
.hero_section {
  display: flex;
  flex-direction: column;
  width: 100vw;
  height: 100vh;
  align-items: center;
  justify-content: center;
  position: relative;
}
.hero_section img {
  display: flex;
  flex-direction: column;
  width: 100%;
  height: 100%;
  align-items: center;
  justify-content: center;
  object-fit: cover;
  position: absolute;
  z-index: 90;
}
.tenda {
  display: flex;
  flex-direction: column;
  width: 100%;
  height: 100vh;
  background-color: rgba(74, 47, 47, 0.4);
  position: absolute;
  z-index: 95;
}
.main_text_slider {
  display: flex;
  flex-direction: column;
  width: 50%;
  min-width: 380px;
  height: auto;
  padding: 10px 30px;
  box-sizing: border-box;
  align-items: center;
  justify-content: center;
  position: absolute;
  z-index: 101;
  bottom: 100px;
  color: #ffffff;
  font-variant: small-caps;
  margin: 5px auto;
}
.slider_text {
  position: relative;
  width: 100%;
  height: 40px;
  overflow: hidden;
}

.slider_text h3 {
  position: absolute;
  width: 100%;
  height: auto;
  text-align: center;
  opacity: 0;
  transform: translateX(100%);
  transition: transform 1s ease-in-out, opacity 1s ease-in-out;
  margin: 0;
  font-size: 26px;
  color: #f45600;
}

.slider_text h3.show {
  opacity: 1;
  transform: translateX(0);
}

.slider_text h3.hide-left {
  opacity: 0;
  transform: translateX(-100%);
}
.cta {
  display: flex;
  flex-direction: row;
  width: 100%;
  height: auto;
  padding: 10px 0;
  box-sizing: border-box;
  align-items: center;
  justify-content: center;
}
.cta button {
  display: flex;
  flex-direction: row;
  width: auto;
  height: auto;
  align-items: center;
  justify-content: center;
  padding: 8px 40px;
  font-size: 18px;
  border-radius: 25px;
  border: 1px solid #00385b;
  background-color: #00416a;
  color: #ffffff;
  font-variant: small-caps;
  box-shadow: 0 0 3px #00385b;
  transition: all ease-in 0.3s;
}
.cta button:hover {
  background-color: #f45600;
}
section {
  display: flex;
  flex-direction: column;
  width: 100%;
  height: auto;
  align-items: center;
  justify-content: center;
  padding: 0 10px;
}
section h2 {
  display: flex;
  flex-direction: row;
  width: 50%;
  height: auto;
  margin: 0 auto;
  font-size: 32px;
  align-items: center;
  justify-content: center;
  text-align: center;
  margin: 30px auto;
  margin-top: 50px;
  position: relative;
  z-index: 300;
}
.testo_intro_home {
  display: flex;
  flex-direction: row;
  width: 60%;
  height: auto;
  text-align: center;
  margin: 10px 0 50px 0;
  position: relative;
  z-index: 300;
  color: #ffffff;
  line-height: 2rem;
  font-size: 20px;
}
.con_onde {
  position: relative;
  background: linear-gradient(
    to top,
    rgb(26, 98, 145) 0%,
    rgb(32, 136, 241) 100% /* Azzurro cielo */
  );
  color: #003c5f;
  text-align: center;
  overflow: hidden;
  display: flex;
  flex-direction: column;
  padding: 100px 0;
}
.con_onde h2 {
  color: #ffffff;
  font-size: 35px;
  font-family: "Oxanium", sans-serif;
  font-optical-sizing: auto;
}
.wave-bg {
  position: absolute;
  bottom: 0;
  left: 0;
  right: 0;
  width: 100vw;
  height: 80%;
  z-index: 200;
  pointer-events: none;
}
.onda-svg::after {
  content: "";
  position: absolute;
  top: -98px;
  left: 0;
  width: 100%;
  height: 100px;
  background: url("../assets/onde.png") bottom;
  background-size: contain;
  background-repeat: repeat-x;
}
.titolo_spiagge {
  display: flex;
  flex-direction: row;
  width: 100%;
  height: auto;
  align-items: center;
  justify-content: center;
  padding: 0;
  box-sizing: border-box;
  font-size: 60px;
  font-variant: small-caps;
  color: #00416a;
  font-weight: 600;
  font-family: "Oxanium", sans-serif;
}
.sottotitolo_spiagge {
  display: flex;
  flex-direction: row;
  width: 100%;
  height: auto;
  align-items: center;
  justify-content: center;
  padding: 0;
  box-sizing: border-box;
  font-size: 30px;
  color: #00416a;
  font-weight: 600;
  font-family: "Oxanium", sans-serif;
}
.titoletto_spiagge {
  display: flex;
  flex-direction: row;
  width: 100%;
  height: auto;
  align-items: center;
  justify-content: center;
  padding: 5px 0;
  box-sizing: border-box;
  font-size: 24px;
  color: #00416a;
  font-weight: 400;
}
.testo_immagini_spiagge {
  display: flex;
  flex-direction: row;
  width: 100%;
  height: auto;
  align-items: center;
  justify-content: center;
  padding: 30px 0 50px 0;
}
.immagini_spiagge {
  display: flex;
  flex-direction: column;
  width: 70%;
  height: 60vh;
  text-wrap: wrap;
}
.immagini_spiagge img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}
.testo_spiagge {
  display: flex;
  flex-direction: column;
  width: 100%;
  height: auto;
  align-items: flex-start;
  justify-content: flex-start;
  padding: 0;
  flex-wrap: wrap;
  padding: 0 20px;
  box-sizing: border-box;
  line-height: 2rem;
  font-size: 16px;
  margin: 10px auto;
}
.testo_spiagge p {
  display: flex;
  flex-direction: row;
  width: 100%;
  margin: 10px auto;
}
.info_generiche h3 {
  font-size: 40px;
  font-family: "Oxanium", sans-serif;
  margin-bottom: 10px;
}
.info_generiche h4 {
  font-size: 34px;
  font-weight: 400;
  margin-bottom: 20px;
}
.carousel {
  position: relative;
  width: 100%;
  height: 100%;
  overflow: hidden;
  border-radius: 1rem;
}

.carousel img {
  position: absolute;
  width: 100%;
  height: 100%;
  object-fit: cover;
  opacity: 0;
  transition: opacity 1s linear;
}

.carousel img.active {
  opacity: 1;
  z-index: 2;
}
.footer {
  display: flex;
  flex-direction: row;
  width: 100%;
  height: auto;
  padding: 30px 20px;
  box-sizing: border-box;
  background-color: #003c5f;
}
.footer_col {
  display: flex;
  flex-direction: column;
  width: auto;
  min-width: 20%;
  height: auto;
  align-items: flex-start;
  justify-content: flex-start;
  color: #ffffff;
  margin: 0 30px;
}
.footer_col h2 {
  margin: 80px 0 20px 0;
}
.footer_col a {
  color: #ffffff;
}
.footer_logo {
  display: flex;
  width: auto;
  height: auto;
  padding: 20px;
  box-sizing: border-box;
}
.footer_logo img {
  width: 100px;
  height: 100px;
  object-fit: contain;
}
.footer_link a {
  flex-direction: row;
  font-variant: small-caps;
  font-size: 18px;
  margin: 10px 0;
  text-decoration: none;
}
.footer_link:hover a {
  text-decoration: underline;
}
.footer_link img {
  width: 50px;
  height: 50px;
  object-fit: contain;
}

/* === SEZIONE AQUAFUN - TOP PAGE === */
.top_page {
  position: relative;
  height: 100vh;
  min-height: 600px;
  overflow: hidden;
  display: flex;
  align-items: center;
  justify-content: center;
}

/* Slider */
.slider {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  z-index: 1;
}

.slide {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background-size: cover;
  background-position: center;
  background-repeat: no-repeat;
  opacity: 0;
  transition: opacity 1.5s ease-in-out, transform 0.8s ease;
  transform: scale(1.05);
}

.slide.active {
  opacity: 1;
  transform: scale(1);
}

.slide::after {
  content: "";
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background: linear-gradient(
    45deg,
    rgba(13, 79, 115, 0.4) 0%,
    rgba(26, 122, 168, 0.3) 100%
  );
  z-index: 1;
}

/* Nome Sezione - Overlay */
.nome_sezione {
  position: relative;
  z-index: 3;
  text-align: center;
  color: white;
  max-width: 800px;
  padding: 0 20px;
  animation: fadeInUp 1.2s ease-out;
}

.nome_sezione h1 {
  font-size: 4rem;
  font-weight: 700;
  margin-bottom: 15px;
  text-shadow: 3px 3px 6px rgba(0, 0, 0, 0.5);
  letter-spacing: 2px;
}

.nome_sezione h2 {
  font-size: 2.5rem;
  font-weight: 300;
  margin-bottom: 20px;
  text-shadow: 2px 2px 4px rgba(0, 0, 0, 0.4);
  color: #ffffff;
  width: 100%;
}

.tagline {
  font-size: 1.3rem;
  opacity: 0.95;
  font-weight: 400;
  text-shadow: 1px 1px 3px rgba(0, 0, 0, 0.5);
  margin-top: 15px;
}

/* Indicatori Slide */
.slide-indicators {
  position: absolute;
  bottom: 30px;
  left: 50%;
  transform: translateX(-50%);
  z-index: 3;
  display: flex;
  gap: 15px;
}

.indicator {
  width: 12px;
  height: 12px;
  border-radius: 50%;
  border: 2px solid rgba(255, 255, 255, 0.6);
  background: transparent;
  cursor: pointer;
  transition: all 0.3s ease;
  position: relative;
}

.indicator:hover {
  border-color: rgba(255, 255, 255, 0.9);
  transform: scale(1.2);
}

.indicator.active {
  background: rgba(255, 255, 255, 0.9);
  border-color: white;
  transform: scale(1.3);
}

.indicator.active::after {
  content: "";
  position: absolute;
  top: -5px;
  left: -5px;
  right: -5px;
  bottom: -5px;
  border: 1px solid rgba(255, 255, 255, 0.4);
  border-radius: 50%;
  animation: pulse 2s infinite;
}

/* === SEZIONE DESCRIZIONE AQUAFUN === */
.aquafun-description {
  padding: 100px 0;
  background: linear-gradient(135deg, #f8fdff 0%, #e8f4f8 100%);
  position: relative;
}

.aquafun-description::before {
  content: "";
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background: url('data:image/svg+xml,<svg xmlns="http://www.w3.org/2000/svg" viewBox="0 0 100 20" fill="rgba(26,122,168,0.05)"><circle cx="20" cy="10" r="3"/><circle cx="80" cy="15" r="2"/><circle cx="50" cy="5" r="1.5"/></svg>');
  background-repeat: repeat;
  opacity: 0.3;
}

.content-grid {
  display: grid;
  grid-template-columns: 2fr 1fr;
  gap: 60px;
  align-items: start;
  position: relative;
  z-index: 1;
}

.text-content h2 {
  font-size: 3rem;
  color: #0d4f73;
  margin-bottom: 25px;
  font-weight: 600;
  text-shadow: 1px 1px 2px rgba(0, 0, 0, 0.1);
}

.lead {
  font-size: 1.3rem;
  color: #2c5f7a;
  margin-bottom: 40px;
  line-height: 1.7;
  font-weight: 400;
}

/* Features List */
.features-list {
  display: flex;
  flex-direction: column;
  gap: 30px;
}

.feature-item {
  display: flex;
  align-items: flex-start;
  background: rgba(255, 255, 255, 0.8);
  border-radius: 15px;
  border-left: 5px solid #1a7aa8;
  box-shadow: 0 5px 15px rgba(0, 0, 0, 0.08);
  transition: all 0.4s ease;
  transform: translateY(20px);
  opacity: 0;
  overflow: hidden;
  width: auto;
}

.feature-item:hover {
  transform: translateY(-5px);
  box-shadow: 0 10px 25px rgba(0, 0, 0, 0.12);
  border-left-width: 8px;
}

.feature-item.animate-in {
  transform: translateY(0);
  opacity: 1;
}

.feature-icon {
  display: flex;
  font-size: 2.5rem;
  flex-shrink: 0;
  filter: drop-shadow(2px 2px 4px rgba(0, 0, 0, 0.1));
  margin-bottom: 0;
  margin: 10px auto;
  width: 100px;
  align-items: center;
  justify-content: center;
  padding: 10px;
  box-sizing: border-box;
}
.feature-text {
  display: flex;
  flex-direction: column;
  width: 100%;
  height: 100%;
  align-items: flex-start;
  justify-content: center;
  padding: 10px;
  box-sizing: border-box;
}

.feature-text h3 {
  font-size: 1.4rem;
  color: #0d4f73;
  margin-bottom: 8px;
  font-weight: 600;
}

.feature-text p {
  color: #4a6970;
  line-height: 1.6;
  font-size: 1rem;
}

/* Info Cards */
.info-cards {
  display: flex;
  flex-direction: column;
  gap: 25px;
}

.info-card {
  background: rgba(255, 255, 255, 0.95);
  padding: 30px;
  border-radius: 20px;
  box-shadow: 0 8px 20px rgba(0, 0, 0, 0.1);
  border: 1px solid rgba(26, 122, 168, 0.1);
  transition: all 0.4s ease;
  transform: translateX(30px);
  opacity: 0;
}

.info-card:hover {
  transform: translateY(-8px) scale(1.02);
  box-shadow: 0 15px 30px rgba(0, 0, 0, 0.15);
}

.info-card.animate-in {
  transform: translateX(0);
  opacity: 1;
}

.info-card.highlight {
  background: linear-gradient(135deg, #1a7aa8 0%, #0d4f73 100%);
  color: white;
  border: none;
}

.info-card h3 {
  font-size: 1.3rem;
  margin-bottom: 15px;
  font-weight: 600;
  color: #0d4f73;
}

.info-card.highlight h3 {
  color: white;
}

.info-card p,
.info-card li {
  line-height: 1.6;
  color: #4a6970;
}

.info-card.highlight p,
.info-card.highlight li {
  color: rgba(255, 255, 255, 0.9);
}

.info-card ul {
  list-style: none;
  padding: 0;
}

.info-card li {
  padding: 8px 0;
  position: relative;
  padding-left: 25px;
}

.info-card li::before {
  content: "✓";
  position: absolute;
  left: 0;
  color: #1a7aa8;
  font-weight: bold;
  font-size: 1.1rem;
}

.info-card.highlight li::before {
  color: #87ceeb;
}

.info-card small {
  display: block;
  margin-top: 15px;
  font-style: italic;
  opacity: 0.8;
  font-size: 0.9rem;
}

/* === SEZIONE CALL TO ACTION === */
.aquafun-cta {
  background: linear-gradient(135deg, #0d4f73 0%, #1a7aa8 100%);
  color: white;
  padding: 80px 0;
  text-align: center;
  position: relative;
  overflow: hidden;
}

.aquafun-cta::before {
  content: "";
  position: absolute;
  top: -50%;
  left: -50%;
  width: 200%;
  height: 200%;
  background: repeating-linear-gradient(
    45deg,
    transparent,
    transparent 20px,
    rgba(255, 255, 255, 0.03) 20px,
    rgba(255, 255, 255, 0.03) 40px
  );
  animation: movePattern 20s linear infinite;
}

.cta-content {
  position: relative;
  z-index: 1;
  max-width: 800px;
  margin: 0 auto;
}

.cta-content h2 {
  font-size: 2.8rem;
  margin-bottom: 20px;
  font-weight: 600;
  text-shadow: 2px 2px 4px rgba(0, 0, 0, 0.3);
}

.cta-content p {
  font-size: 1.2rem;
  margin-bottom: 40px;
  opacity: 0.95;
  line-height: 1.6;
}

.cta-buttons {
  display: flex;
  gap: 25px;
  justify-content: center;
  flex-wrap: wrap;
}

.btn {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  padding: 18px 35px;
  border-radius: 50px;
  text-decoration: none;
  font-weight: 600;
  font-size: 1.1rem;
  transition: all 0.4s ease;
  border: 2px solid transparent;
  position: relative;
  overflow: hidden;
}

.btn::before {
  content: "";
  position: absolute;
  top: 0;
  left: -100%;
  width: 100%;
  height: 100%;
  background: linear-gradient(
    90deg,
    transparent,
    rgba(255, 255, 255, 0.2),
    transparent
  );
  transition: left 0.6s ease;
}

.btn:hover::before {
  left: 100%;
}

.btn-primary {
  background: rgba(255, 255, 255, 0.15);
  color: white;
  border-color: rgba(255, 255, 255, 0.3);
  backdrop-filter: blur(10px);
}

.btn-primary:hover {
  background: rgba(255, 255, 255, 0.25);
  transform: translateY(-3px);
  box-shadow: 0 10px 20px rgba(0, 0, 0, 0.2);
}

.btn-secondary {
  background: white;
  color: #0d4f73;
  border-color: white;
}

.btn-secondary:hover {
  background: #f8f9fa;
  transform: translateY(-3px);
  box-shadow: 0 10px 20px rgba(0, 0, 0, 0.2);
}

/* === ANIMAZIONI === */
@keyframes fadeInUp {
  from {
    opacity: 0;
    transform: translateY(40px);
  }
  to {
    opacity: 1;
    transform: translateY(0);
  }
}

@keyframes pulse {
  0%,
  100% {
    opacity: 1;
    transform: scale(1);
  }
  50% {
    opacity: 0.7;
    transform: scale(1.1);
  }
}

@keyframes movePattern {
  0% {
    transform: translateX(-40px) translateY(-40px);
  }
  100% {
    transform: translateX(0) translateY(0);
  }
}

/* === RESPONSIVE === */
@media (max-width: 768px) {
  .nome_sezione h1 {
    font-size: 2.5rem;
  }

  .nome_sezione h2 {
    font-size: 1.8rem;
  }

  .tagline {
    font-size: 1.1rem;
  }

  .content-grid {
    grid-template-columns: 1fr;
    gap: 40px;
  }

  .text-content h2 {
    font-size: 2.2rem;
  }

  .lead {
    font-size: 1.1rem;
  }

  .feature-item {
    flex-direction: column;
    text-align: center;
    gap: 15px;
  }

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

  .btn {
    width: 100%;
    max-width: 300px;
    justify-content: center;
  }

  .aquafun-description {
    padding: 60px 0;
  }

  .aquafun-cta {
    padding: 60px 0;
  }

  .cta-content h2 {
    font-size: 2.2rem;
  }
}

.contatti {
  display: flex;
  flex-direction: row;
  width: 100%;
  min-height: 100vh;
  height: auto;
  align-items: flex-start;
  justify-content: center;
}
.mappa {
  display: flex;
  flex-direction: column;
  width: 50vw;
  min-height: 100vh;
  align-items: center;
  justify-content: center;
  background-color: #003c5f;
}
.mappa iframe {
  width: calc(100% - 2px);
  height: 100vh;
  padding-top: 70px;
  box-sizing: border-box;
}
.div_form {
  display: flex;
  flex-direction: column;
  width: 50vw;
  min-height: 100vh;
  height: auto;
}
.form-container {
  display: flex;
  flex-direction: column;
  padding: 130px;
  border-radius: 16px;
  width: 100%;
  animation: fadeIn 1s ease-in-out;
}
.form-container h2 {
  margin-bottom: 25px;
  text-align: center;
  color: #333;
}
.form-group {
  position: relative;
  margin-bottom: 25px;
}
.form-group input {
  width: 100%;
  padding: 12px 15px;
  border: none;
  border-bottom: 1px solid #ccc;
  outline: none;
  transition: 0.3s;
  background-color: transparent;
  margin-bottom: 20px;
}
.form-group label {
  position: absolute;
  top: -20px;
  left: 15px;
  padding: 0 5px;
  font-size: 0.85rem;
  color: #484848;
}
.form-group textarea {
  width: 100%;
  height: 160px;
  border: none;
  border-top: 0.3px solid #dfdfdf;
  border-bottom: 1px solid #ccc;
  background-color: transparent;
}
input:focus,
textarea:focus {
  outline: none;
  border-color: #667eea;
  box-shadow: 0 0 5px rgba(102, 126, 234, 0.5);
  padding: 12px 15px;
  font-size: 18px;
  font-weight: 200;
  resize: none;
}
button {
  width: 100%;
  padding: 12px;
  border: none;
  background: #667eea;
  color: white;
  font-size: 1rem;
  border-radius: 8px;
  cursor: pointer;
  transition: background 0.3s ease;
}
button:hover {
  background: #5a67d8;
}
.info_generiche {
  display: flex;
  flex-direction: column;
  width: 100%;
  height: auto;
  padding: 50px 0;
  align-items: center;
  justify-content: center;
}
.info_generiche p {
  width: 50%;
  min-width: 320px;
  padding: 30px 0;
}
.info_img_testo {
  display: flex;
  flex-direction: row;
  width: 100%;
  height: auto;
  align-items: center;
  justify-content: center;
  padding: 20px 0;
}
.info_img_testo .un_servizio {
  height: auto;
}
.info_img_testo .un_servizio svg {
  fill: #00385b;
}
.info_img_testo .un_servizio .nome_servizio {
  color: #003c5f;
}
/* Stili per le sezioni dello stabilimento balneare */
.servizi_extra,
.comfort_famiglie,
.atmosfera {
  background: linear-gradient(135deg, #f8fffe 0%, #e8f4f8 100%);
  padding: 2.5rem;
  margin: 2rem auto;
  border-radius: 20px;
  box-shadow: 0 8px 25px rgba(0, 123, 191, 0.08);
  position: relative;
  overflow: hidden;
  transition: all 0.3s ease;
  box-sizing: border-box;
  width: auto;
}
.servizi_extra {
  background: linear-gradient(135deg, #f8f8f8 0%, #ffffff 100%);
}

.comfort_atmosfera {
  display: flex;
  flex-direction: row;
  width: 100%;
  height: auto;
  align-items: center;
  justify-content: center;
}

.servizi_extra:hover,
.comfort_famiglie:hover,
.atmosfera:hover {
  transform: translateY(-5px);
  box-shadow: 0 15px 35px rgba(0, 123, 191, 0.15);
}

/* Decorazione ondulata per richiamare il mare */
.servizi_extra::before,
.comfort_famiglie::before,
.atmosfera::before {
  content: "";
  position: absolute;
  top: 0;
  right: 0;
  width: 100px;
  height: 100px;
  background: url('data:image/svg+xml,<svg xmlns="http://www.w3.org/2000/svg" viewBox="0 0 100 20" fill="%2300a8cc" opacity="0.1"><path d="M0,10 Q25,0 50,10 T100,10 V20 H0 Z"/></svg>')
    no-repeat;
  background-size: cover;
}

/* Stili per i titoli */
.servizi_extra h3,
.comfort_famiglie h3,
.atmosfera h3 {
  color: #006b85;
  font-size: 1.8rem;
  font-weight: 700;
  margin-bottom: 1.5rem;
  position: relative;
  display: inline-block;
}

.servizi_extra h3::after,
.comfort_famiglie h3::after,
.atmosfera h3::after {
  content: "";
  position: absolute;
  bottom: -5px;
  left: 0;
  width: 60px;
  height: 3px;
  background: linear-gradient(90deg, #00a8cc, #4dd0e1);
  border-radius: 2px;
}

/* Stili per i paragrafi */
.servizi_extra p,
.comfort_famiglie p,
.atmosfera p {
  color: #2c5f69;
  font-size: 1.1rem;
  line-height: 1.7;
  margin-bottom: 1.5rem;
  text-align: justify;
  padding: 10px;
  box-sizing: border-box;
}

/* Stili per la lista dei servizi */
.servizi_extra ul {
  list-style: none;
  padding: 0;
  margin: 0;
}

.servizi_extra li {
  background: rgba(255, 255, 255, 0.7);
  margin: 1rem 0;
  padding: 1.2rem 1.5rem;
  border-radius: 12px;
  box-shadow: 0 3px 10px rgba(0, 0, 0, 0.05);
  transition: all 0.3s ease;
  position: relative;
}

.servizi_extra li:hover {
  transform: translateX(10px);
  box-shadow: 0 5px 15px rgba(0, 0, 0, 0.1);
  background: rgba(255, 255, 255, 0.9);
}

.servizi_extra li::before {
  content: "🏖️";
  position: absolute;
  left: -15px;
  top: 50%;
  transform: translateY(-50%);
  background: #00a8cc;
  width: 30px;
  height: 30px;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 0.9rem;
  box-shadow: 0 2px 8px rgba(0, 168, 204, 0.3);
}

.servizi_extra li:nth-child(1)::before {
  content: "☀️";
}
.servizi_extra li:nth-child(2)::before {
  content: "🎈";
}
.servizi_extra li:nth-child(3)::before {
  content: "🎵";
}

.servizi_extra strong {
  color: #006b85;
  font-weight: 600;
  display: block;
  margin-bottom: 0.5rem;
  font-size: 1.1rem;
}

/* Varianti di colore per ogni sezione */
.comfort_famiglie {
  background: linear-gradient(135deg, #fff8e7 0%, #f0e6d2 100%);
  border-left-color: #ff6b35;
  display: flex;
  width: 40%;
  flex-direction: column;
}

.comfort_famiglie h3 {
  color: #d84315;
  padding: 10px;
}

.comfort_famiglie h3::after {
  background: linear-gradient(90deg, #ff6b35, #ffab40);
}

.comfort_famiglie p {
  color: #5d4037;
}

.atmosfera {
  background: linear-gradient(135deg, #f3e5f5 0%, #e8d5e8 100%);
  border-left-color: #8e24aa;
  display: flex;
  width: 40%;
  flex-direction: column;
}

.atmosfera h3 {
  color: #6a1b9a;
  padding: 10px;
}

.atmosfera h3::after {
  background: linear-gradient(90deg, #8e24aa, #ba68c8);
}

.atmosfera p {
  color: #4a148c;
}

/* Responsive design */
@media (max-width: 768px) {
  .servizi_extra,
  .comfort_famiglie,
  .atmosfera {
    padding: 1.5rem;
    margin: 1rem auto;
    border-radius: 15px;
  }

  .servizi_extra h3,
  .comfort_famiglie h3,
  .atmosfera h3 {
    font-size: 1.5rem;
  }

  .servizi_extra li {
    padding: 1rem;
    margin: 0.8rem 0;
  }

  .servizi_extra li:hover {
    transform: translateX(5px);
  }
  .comfort_atmosfera {
    flex-direction: column;
    margin: 20px auto;
  }
  .comfort_famiglie {
    width: 100%;
  }
  .atmosfera {
    width: 100%;
  }
}

@media (max-width: 480px) {
  .servizi_extra,
  .comfort_famiglie,
  .atmosfera {
    padding: 1rem;
    border-radius: 12px;
  }

  .servizi_extra h3,
  .comfort_famiglie h3,
  .atmosfera h3 {
    font-size: 1.3rem;
  }

  .servizi_extra p,
  .comfort_famiglie p,
  .atmosfera p {
    font-size: 1rem;
    text-align: left;
  }
}

.elenco_contatti {
  display: flex;
  flex-direction: column;
  width: 90%;
  margin: 20px auto;
}
.riga_contatto {
  display: flex;
  flex-direction: row;
  width: 100%;
  height: auto;
  padding: 5px 0;
}
.contatti_logo {
  display: flex;
  flex-direction: column;
  width: auto;
  height: auto;
  align-items: center;
  justify-content: center;
}
.contatti_logo img {
  height: 150px;
}

/* Sezione Info Generiche */
.info_generiche {
  padding: 3rem 1rem;
  background-color: #ffffff;
  text-align: center;
}

.info_generiche h3 {
  font-size: 2rem;
  color: #00334e;
}

.info_generiche h4 {
  font-size: 1.2rem;
  margin-bottom: 1.5rem;
  color: #007b8a;
}

.info_generiche p {
  max-width: 800px;
  margin: 0 auto 2rem;
  font-size: 1rem;
  line-height: 1.8;
  color: #333;
}

/* Immagini + Servizi */
.servizi {
  display: flex;
  flex-direction: row;
  width: 100%;
  height: auto;
  align-items: center;
  justify-content: center;
  padding: 20px 0 150px 0;
  background-image: linear-gradient(
    180deg,
    rgb(5, 111, 172),
    rgb(98, 165, 203)
  );
  flex-wrap: wrap;
}
.servizi .un_servizio {
  display: flex;
  flex-direction: column;
  width: 300px;
  height: 330px;
  align-items: center;
  justify-content: flex-start;
  text-align: center;
  padding: 10px;
  margin: 10px;
}
.servizi .un_servizio svg {
  width: 120px;
  height: 120px;
  fill: #ffffff;
}
.nome_servizio {
  display: flex;
  flex-direction: column;
  width: 100%;
  height: auto;
  align-items: center;
  justify-content: center;
  font-size: 30px;
  flex-wrap: wrap;
  font-family: "Andika", sans-serif;
  color: #ffffff;
  margin-bottom: 20px;
  line-height: 30px;
}
.intro_servizio {
  display: flex;
  flex-direction: row;
  width: 100%;
  height: auto;
  align-items: center;
  justify-content: center;
  color: #ffffff;
  font-size: 18px;
}
.spiagge {
  display: flex;
  flex-direction: column;
  width: 100%;
  height: auto;
  min-height: 50vh;
  background-color: #f1ebd9;
  position: relative;
}
.info_img_testo {
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
  gap: 2rem;
  margin-top: 2rem;
}

.un_servizio {
  flex: 1 1 300px;
  width: 300px;
  padding: 1rem;
  border-radius: 12px;
  box-shadow: 0 4px 10px rgba(0, 0, 0, 0.1);
  background-color: rgba(113, 180, 250, 0.3);
  text-align: center;
  display: flex;
  flex-direction: column;
  justify-content: center;
  align-items: center;
}
.un_servizio svg {
  width: 100px;
  height: 100px;
  margin-bottom: 1rem;
  fill: #ffffff;
  transition: transform 0.3s;
}
.un_servizio:hover svg {
  transform: scale(1.1);
}

@media (max-width: 768px) {
  .top_page {
    height: 60vh;
  }

  .nome_sezione h2 {
    font-size: 2rem;
  }

  .nome_sezione h3 {
    font-size: 1rem;
  }

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

/*  NOLEGGIO */
/* Container generale */
.container {
  width: 100%;
  margin: 0 auto;
  padding: 0 20px;
}

/* Sezione Hero */
.hero-section-risto {
  background: linear-gradient(135deg, #0d4f73 0%, #1a7aa8 100%);
  color: #f8f9fa;
  padding: 80px 0;
  text-align: center;
  position: relative;
  overflow: hidden;
  min-height: 60vh;
}
.hero-section-risto::before {
  content: "";
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  background: url('data:image/svg+xml,<svg xmlns="http://www.w3.org/2000/svg" viewBox="0 0 1000 100" fill="white" opacity="0.1"><polygon points="0,0 1000,100 1000,0"/></svg>');
  background-size: cover;
}
.hero-section-risto h1 {
  font-size: 3.5rem;
  font-weight: bold;
  margin-bottom: 20px;
  text-shadow: 2px 2px 4px rgba(0, 0, 0, 0.3);
  position: relative;
  z-index: 1;
  color: #ffffff;
  text-align: center;
}
.hero-subtitle {
  font-size: 1.3rem;
  margin-bottom: 30px;
  opacity: 0.95;
  max-width: 800px;
  margin-left: auto;
  margin-right: auto;
  position: relative;
  z-index: 1;
  color: #e8f4f8;
}
.hero-features {
  display: inline-block;
  background: rgba(255, 255, 255, 0.25);
  padding: 15px 30px;
  border-radius: 50px;
  backdrop-filter: blur(10px);
  position: relative;
  z-index: 1;
  border: 1px solid rgba(255, 255, 255, 0.2);
}
.hero-features span {
  font-size: 1.1rem;
  font-weight: 500;
  margin: 0 15px;
  display: inline-block;
  color: #ffffff;
}

/* Sezioni generali */
section {
  padding: 60px 0;
}

.section-title {
  font-size: 2.5rem;
  text-align: center;
  margin-bottom: 20px;
  color: #1e3c72;
  font-weight: bold;
}

.section-subtitle {
  font-size: 1.2rem;
  text-align: center;
  margin-bottom: 50px;
  color: #666;
  max-width: 600px;
  margin-left: auto;
  margin-right: auto;
}

/* Sezione Intro */
.intro-section {
  background: #f8f9fa;
}

.intro-content {
  max-width: 800px;
  margin: 0 auto;
  text-align: center;
}

.intro-content h2 {
  width: 100%;
  font-size: 2.2rem;
  margin-bottom: 30px;
  color: #1e3c72;
}

.intro-content p {
  font-size: 1.1rem;
  line-height: 1.8;
  margin-bottom: 20px;
  color: #444;
}
/* Contenitore generale della sezione */
.stabilimento {
  padding: 60px 20px;
  background-color: #f8f9fa;
  font-family: "Segoe UI", Tahoma, Geneva, Verdana, sans-serif;
}

/* Titolo principale */
.stabilimento h2 {
  text-align: center;
  font-size: 2.5rem;
  margin-bottom: 40px;
  color: #333;
}

/* Layout a griglia per le card */

/* Ogni card di servizio */
.servizio {
  background-color: #fff;
  border-radius: 12px;
  padding: 30px;
  box-shadow: 0 4px 20px rgba(0, 0, 0, 0.08);
  text-align: center;
  transition: transform 0.3s ease, box-shadow 0.3s ease;
}

/* Hover sulle card */
.servizio:hover {
  transform: translateY(-5px);
  box-shadow: 0 10px 30px rgba(0, 0, 0, 0.1);
}

/* Icona servizio */
.servizio i {
  font-size: 40px;
  color: #0077cc;
  margin-bottom: 20px;
  display: inline-block;
}

/* Titolo del servizio */
.servizio h3 {
  font-size: 1.5rem;
  margin-bottom: 15px;
  color: #222;
}

/* Descrizione del servizio */
.servizio p {
  font-size: 1rem;
  color: #555;
  line-height: 1.6;
}

/* Responsive per schermi piccoli */
@media (max-width: 500px) {
  .stabilimento h2 {
    font-size: 2rem;
  }

  .servizio {
    padding: 20px;
  }

  .servizio i {
    font-size: 32px;
  }

  .servizio h3 {
    font-size: 1.2rem;
  }
}

/* Griglia Barche */
.boats-section {
  background: white;
}

.boats-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(350px, 1fr));
  gap: 30px;
  margin-top: 40px;
}

.boat-card {
  background: white;
  border-radius: 15px;
  padding: 30px;
  box-shadow: 0 10px 30px rgba(0, 0, 0, 0.1);
  transition: transform 0.3s ease, box-shadow 0.3s ease;
  border: 2px solid #f0f0f0;
}

.boat-card:hover {
  transform: translateY(-5px);
  box-shadow: 0 20px 40px rgba(0, 0, 0, 0.15);
  border-color: #2a5298;
}

.boat-icon {
  font-size: 3rem;
  text-align: center;
  margin: auto;
  margin-bottom: 20px;
  width: 200px;
  height: 200px;
}
.boat-icon img {
  object-fit: cover;
  width: 200px;
  height: 200px;
  border-radius: 50%;
}

.boat-card h3 {
  font-size: 1.5rem;
  margin-bottom: 15px;
  color: #1e3c72;
  font-weight: bold;
}

.boat-card p {
  font-size: 1rem;
  line-height: 1.6;
  margin-bottom: 20px;
  color: #555;
}

.boat-card ul {
  list-style: none;
  padding: 0;
}

.boat-card li {
  padding: 8px 0;
  border-bottom: 1px solid #eee;
  color: #666;
  font-size: 0.95rem;
}

.boat-card li:last-child {
  border-bottom: none;
}

.boat-card li::before {
  content: "✓";
  color: #28a745;
  font-weight: bold;
  margin-right: 10px;
}

/* Sezione Sport da Traino */
.watersports-section {
  background: #f8f9fa;
}

.watersports-intro {
  max-width: 800px;
  margin: 0 auto 50px;
  text-align: center;
}

.watersports-intro p {
  font-size: 1.1rem;
  line-height: 1.8;
  color: #444;
}

.watersports-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
  gap: 25px;
  margin-top: 40px;
}

.sport-card {
  background: white;
  border-radius: 12px;
  padding: 25px;
  box-shadow: 0 8px 25px rgba(0, 0, 0, 0.1);
  transition: transform 0.3s ease;
  border-left: 4px solid #2a5298;
}

.sport-card:hover {
  transform: translateY(-3px);
}

.sport-icon {
  display: flex;
  font-size: 2.5rem;
  text-align: center;
  margin-bottom: 15px;
  width: 150px;
  height: 150px;
  border-radius: 50%;
  margin: auto;
  align-items: center;
  justify-content: center;
  overflow: hidden;
}
.sport-icon img {
  object-fit: cover;
  width: 150px;
  height: 150px;
}

.sport-card h3 {
  font-size: 1.3rem;
  margin-bottom: 15px;
  color: #1e3c72;
  font-weight: bold;
}

.sport-card p {
  font-size: 0.95rem;
  line-height: 1.6;
  margin-bottom: 20px;
  color: #555;
}

.sport-details {
  display: flex;
  justify-content: space-between;
  gap: 15px;
  flex-wrap: wrap;
}

.sport-details span {
  background: #e9ecef;
  padding: 5px 12px;
  border-radius: 20px;
  font-size: 0.85rem;
  color: #495057;
  font-weight: 500;
}

.difficulty {
  background: #fff3cd !important;
  color: #856404 !important;
}

.capacity {
  background: #d4edda !important;
  color: #155724 !important;
}

/* Sezione Servizi */
.services-section {
  background: white;
}

.services-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
  gap: 30px;
  margin-top: 40px;
}

.service-item {
  text-align: center;
  padding: 30px 20px;
  border-radius: 10px;
  transition: background 0.3s ease;
}

.service-item:hover {
  background: #f8f9fa;
}

.service-icon {
  font-size: 3rem;
  margin-bottom: 20px;
}

.service-item h3 {
  font-size: 1.3rem;
  margin-bottom: 15px;
  color: #1e3c72;
  font-weight: bold;
}

.service-item p {
  font-size: 1rem;
  line-height: 1.6;
  color: #666;
}

/* Sezione Prezzi */
.pricing-section {
  background: #f8f9fa;
}

.pricing-note {
  max-width: 800px;
  margin: 0 auto;
  background: white;
  padding: 30px;
  border-radius: 10px;
  box-shadow: 0 5px 15px rgba(0, 0, 0, 0.1);
}

.pricing-note p {
  font-size: 1rem;
  line-height: 1.6;
  margin-bottom: 15px;
  color: #444;
}

.pricing-note p:last-child {
  margin-bottom: 0;
  font-style: italic;
  color: #666;
}

/* Sezione Prenotazioni */
.booking-section {
  background: white;
}

.booking-content {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 50px;
  margin-top: 40px;
}

.booking-info h3,
.booking-cta h3 {
  font-size: 1.5rem;
  margin-bottom: 20px;
  color: #1e3c72;
  font-weight: bold;
}

.booking-info ul {
  list-style: none;
  padding: 0;
}

.booking-info li {
  padding: 12px 0;
  border-bottom: 1px solid #eee;
  font-size: 1rem;
  color: #555;
}

.booking-info li:last-child {
  border-bottom: none;
}

.booking-cta {
  text-align: center;
  padding: 30px;
  background: #f8f9fa;
  border-radius: 15px;
}

.booking-cta p {
  font-size: 1.1rem;
  line-height: 1.6;
  margin-bottom: 30px;
  color: #444;
}

.contact-buttons {
  display: flex;
  gap: 15px;
  justify-content: center;
  flex-wrap: wrap;
}

.btn-primary,
.btn-secondary {
  padding: 12px 25px;
  border-radius: 25px;
  text-decoration: none;
  font-weight: bold;
  font-size: 1rem;
  transition: all 0.3s ease;
  display: inline-block;
}

.btn-primary {
  background: #1e3c72;
  color: white;
}

.btn-primary:hover {
  background: #2a5298;
  transform: translateY(-2px);
}

.btn-secondary {
  background: white;
  color: #1e3c72;
  border: 2px solid #1e3c72;
}

.btn-secondary:hover {
  background: #1e3c72;
  color: white;
  transform: translateY(-2px);
}

/* Sezione FAQ */
.faq-section {
  background: #f8f9fa;
}

.faq-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
  gap: 25px;
  margin-top: 40px;
}

.faq-item {
  background: white;
  padding: 25px;
  border-radius: 10px;
  box-shadow: 0 5px 15px rgba(0, 0, 0, 0.1);
}

.faq-item h3 {
  font-size: 1.2rem;
  margin-bottom: 15px;
  color: #1e3c72;
  font-weight: bold;
}

.faq-item p {
  font-size: 1rem;
  line-height: 1.6;
  color: #555;
}

/* RISTORANTE */
/* Reset e Base */
* {
  margin: 0;
  padding: 0;
  box-sizing: border-box;
}

/* Container generale */
.container {
  max-width: 1200px;
  margin: 0 auto;
  padding: 0 20px;
}

/* Sezione Hero */
.hero-section {
  background: linear-gradient(135deg, #d4691a 0%, #e67e22 100%);
  color: white;
  padding: 80px 0;
  text-align: center;
  position: relative;
  overflow: hidden;
}

.hero-section::before {
  content: "";
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  background: url('data:image/svg+xml,<svg xmlns="http://www.w3.org/2000/svg" viewBox="0 0 1000 100" fill="white" opacity="0.1"><polygon points="0,0 1000,100 1000,0"/></svg>');
  background-size: cover;
}

.hero-section h1 {
  font-size: 3.5rem;
  font-weight: bold;
  margin-bottom: 20px;
  text-shadow: 2px 2px 4px rgba(0, 0, 0, 0.3);
  position: relative;
  z-index: 1;
}

.hero-subtitle {
  font-size: 1.3rem;
  margin-bottom: 30px;
  opacity: 0.9;
  max-width: 800px;
  margin-left: auto;
  margin-right: auto;
  position: relative;
  z-index: 1;
}

.hero-features {
  display: inline-block;
  background: rgba(255, 255, 255, 0.2);
  padding: 15px 30px;
  border-radius: 50px;
  backdrop-filter: blur(10px);
  position: relative;
  z-index: 1;
}

.hero-features span {
  font-size: 1.1rem;
  font-weight: 500;
  margin: 0 15px;
  display: inline-block;
}

/* Sezioni generali */
section {
  padding: 60px 0;
}

.section-title {
  font-size: 2.5rem;
  text-align: center;
  margin-bottom: 20px;
  color: #d4691a;
  font-weight: bold;
}

.section-subtitle {
  font-size: 1.2rem;
  text-align: center;
  margin-bottom: 50px;
  color: #666;
  max-width: 600px;
  margin-left: auto;
  margin-right: auto;
}

/* Sezione Intro */
.intro-section {
  background: #f8f9fa;
}

.intro-content {
  max-width: 800px;
  margin: 0 auto;
  text-align: center;
}

.intro-content h2 {
  font-size: 2.2rem;
  margin-bottom: 30px;
  color: #d4691a;
}

.intro-content p {
  font-size: 1.1rem;
  line-height: 1.8;
  margin-bottom: 20px;
  color: #444;
}

/* Sezione Cucina */
.cuisine-section {
  background: white;
}

.cuisine-intro {
  max-width: 800px;
  margin: 0 auto 50px;
  text-align: center;
}

.cuisine-intro p {
  font-size: 1.1rem;
  line-height: 1.8;
  color: #444;
}

.cuisine-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(350px, 1fr));
  gap: 30px;
  margin-top: 40px;
}

.cuisine-card {
  background: white;
  border-radius: 15px;
  padding: 30px;
  box-shadow: 0 10px 30px rgba(0, 0, 0, 0.1);
  transition: transform 0.3s ease, box-shadow 0.3s ease;
  border: 2px solid #f0f0f0;
}

.cuisine-card:hover {
  transform: translateY(-5px);
  box-shadow: 0 20px 40px rgba(0, 0, 0, 0.15);
  border-color: #226de6;
}

.cuisine-icon {
  font-size: 3rem;
  text-align: center;
  margin-bottom: 20px;
}

.cuisine-card h3 {
  font-size: 1.5rem;
  margin-bottom: 15px;
  color: #d4691a;
  font-weight: bold;
}

.cuisine-card p {
  font-size: 1rem;
  line-height: 1.6;
  margin-bottom: 20px;
  color: #555;
}

.cuisine-card ul {
  list-style: none;
  padding: 0;
}

.cuisine-card li {
  padding: 8px 0;
  border-bottom: 1px solid #eee;
  color: #666;
  font-size: 0.95rem;
}

.cuisine-card li:last-child {
  border-bottom: none;
}

.cuisine-card li::before {
  content: "🍴";
  margin-right: 10px;
}

/* Sezione Esperienze */
.experiences-section {
  background: #f8f9fa;
}

.experiences-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
  gap: 25px;
  margin-top: 40px;
}

.experience-card {
  background: white;
  border-radius: 12px;
  padding: 25px;
  box-shadow: 0 8px 25px rgba(0, 0, 0, 0.1);
  transition: transform 0.3s ease;
  border-left: 4px solid #e67e22;
}

.experience-card:hover {
  transform: translateY(-3px);
}

.experience-icon {
  display: flex;
  font-size: 2.5rem;
  text-align: center;
  margin-bottom: 15px;
  width: 150px;
  height: 150px;
  border-radius: 50%;
  margin: auto;
  align-items: center;
  justify-content: center;
  overflow: hidden;
}
.experience-icon img {
  object-fit: cover;
  width: 150px;
  height: 150px;
}

.experience-card h3 {
  font-size: 1.3rem;
  margin-bottom: 15px;
  color: #d4691a;
  font-weight: bold;
}

.experience-card p {
  font-size: 0.95rem;
  line-height: 1.6;
  margin-bottom: 20px;
  color: #555;
}

.experience-details {
  display: flex;
  justify-content: space-between;
  gap: 15px;
  flex-wrap: wrap;
}

.experience-details span {
  background: #e9ecef;
  padding: 5px 12px;
  border-radius: 20px;
  font-size: 0.85rem;
  color: #495057;
  font-weight: 500;
}

.time {
  background: #fff3cd !important;
  color: #856404 !important;
}

.season {
  background: #d4edda !important;
  color: #155724 !important;
}

/* Sezione Servizi */
.services-section {
  background: white;
}

.services-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
  gap: 30px;
  margin-top: 40px;
}

.service-item {
  text-align: center;
  padding: 30px 20px;
  border-radius: 10px;
  transition: background 0.3s ease;
}

.service-item:hover {
  background: #f8f9fa;
}

.service-icon {
  font-size: 3rem;
  margin-bottom: 20px;
}

.service-item h3 {
  font-size: 1.3rem;
  margin-bottom: 15px;
  color: #d4691a;
  font-weight: bold;
}

.service-item p {
  font-size: 1rem;
  line-height: 1.6;
  color: #666;
}

/* Sezione Stagionalità */
.seasonal-section {
  background: #f8f9fa;
}

.seasonal-content {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 50px;
  margin-top: 40px;
}

.seasonal-info h3,
.seasonal-highlights h3 {
  font-size: 1.5rem;
  margin-bottom: 20px;
  color: #d4691a;
  font-weight: bold;
}

.seasonal-info p {
  font-size: 1rem;
  line-height: 1.6;
  margin-bottom: 15px;
  color: #555;
}

.seasonal-items {
  display: flex;
  flex-direction: column;
  gap: 15px;
}

.seasonal-item {
  background: white;
  padding: 15px 20px;
  border-radius: 8px;
  box-shadow: 0 3px 10px rgba(0, 0, 0, 0.1);
  display: flex;
  justify-content: space-between;
  align-items: center;
}

.seasonal-item strong {
  color: #d4691a;
  font-size: 1rem;
  font-weight: bold;
}

.seasonal-item span {
  color: #666;
  font-size: 0.9rem;
}

/* Sezione Prenotazioni */
.booking-section {
  background: white;
}

.booking-content {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 50px;
  margin-top: 40px;
}

.booking-info h3,
.booking-cta h3 {
  font-size: 1.5rem;
  margin-bottom: 20px;
  color: #d4691a;
  font-weight: bold;
}

.booking-info ul {
  list-style: none;
  padding: 0;
}

.booking-info li {
  padding: 12px 0;
  border-bottom: 1px solid #eee;
  font-size: 1rem;
  color: #555;
}

.booking-info li:last-child {
  border-bottom: none;
}

.booking-cta {
  text-align: center;
  padding: 30px;
  background: #f8f9fa;
  border-radius: 15px;
}

.booking-cta p {
  font-size: 1.1rem;
  line-height: 1.6;
  margin-bottom: 30px;
  color: #444;
}

.contact-buttons {
  display: flex;
  gap: 15px;
  justify-content: center;
  flex-wrap: wrap;
}

.btn-primary,
.btn-secondary {
  padding: 12px 25px;
  border-radius: 25px;
  text-decoration: none;
  font-weight: bold;
  font-size: 1rem;
  transition: all 0.3s ease;
  display: inline-block;
}

.btn-primary {
  background: #d4691a;
  color: white;
}

.btn-primary:hover {
  background: #e67e22;
  transform: translateY(-2px);
}

.btn-secondary {
  background: white;
  color: #d4691a;
  border: 2px solid #d4691a;
}

.btn-secondary:hover {
  background: #d4691a;
  color: white;
  transform: translateY(-2px);
}

/* Sezione FAQ */
.faq-section {
  background: #f8f9fa;
}

.faq-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
  gap: 25px;
  margin-top: 40px;
}

.faq-item {
  background: white;
  padding: 25px;
  border-radius: 10px;
  box-shadow: 0 5px 15px rgba(0, 0, 0, 0.1);
}

.faq-item h3 {
  font-size: 1.2rem;
  margin-bottom: 15px;
  color: #d4691a;
  font-weight: bold;
}

.faq-item p {
  font-size: 1rem;
  line-height: 1.6;
  color: #555;
}
/* Reset e Base */
* {
  margin: 0;
  padding: 0;
  box-sizing: border-box;
}

/* Container generale */
.container {
  max-width: 1200px;
  margin: 0 auto;
  padding: 0 20px;
}

/* Sezione Hero */
.hero-section {
  background: linear-gradient(135deg, #1e3a8a 0%, #3b82f6 50%, #06b6d4 100%);
  color: white;
  padding: 80px 0;
  text-align: center;
  position: relative;
  overflow: hidden;
}

.hero-section::before {
  content: "";
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  background: url('data:image/svg+xml,<svg xmlns="http://www.w3.org/2000/svg" viewBox="0 0 1000 100" fill="white" opacity="0.1"><path d="M0,50 Q250,0 500,50 T1000,50 L1000,100 L0,100 Z"/></svg>');
  background-size: cover;
}

.hero-section h1 {
  font-size: 3.5rem;
  font-weight: bold;
  margin-bottom: 20px;
  text-shadow: 2px 2px 4px rgba(0, 0, 0, 0.3);
  position: relative;
  z-index: 1;
}

.hero-subtitle {
  font-size: 1.3rem;
  margin-bottom: 30px;
  opacity: 0.9;
  max-width: 800px;
  margin-left: auto;
  margin-right: auto;
  position: relative;
  z-index: 1;
}

.hero-features {
  display: inline-block;
  background: rgba(255, 255, 255, 0.2);
  padding: 15px 30px;
  border-radius: 50px;
  backdrop-filter: blur(10px);
  position: relative;
  z-index: 1;
}

.hero-features span {
  font-size: 1.1rem;
  font-weight: 500;
  margin: 0 15px;
  display: inline-block;
}

/* Sezioni generali */
section {
  padding: 60px 0;
}

.section-title {
  font-size: 2.5rem;
  text-align: center;
  margin-bottom: 20px;
  color: #1e40af;
  font-weight: bold;
}

.section-subtitle {
  font-size: 1.2rem;
  text-align: center;
  margin-bottom: 50px;
  color: #666;
  max-width: 600px;
  margin-left: auto;
  margin-right: auto;
}

/* Sezione Intro */
.intro-section {
  background: #f8fafc;
}

.intro-content {
  max-width: 800px;
  margin: 0 auto;
  text-align: center;
}

.intro-content h2 {
  font-size: 2.2rem;
  margin-bottom: 30px;
  color: #1e40af;
}

.intro-content p {
  font-size: 1.1rem;
  line-height: 1.8;
  margin-bottom: 20px;
  color: #444;
}

/* Sezione Destinazioni (cuisine) */
.cuisine-section {
  background: white;
}

.cuisine-intro {
  max-width: 800px;
  margin: 0 auto 50px;
  text-align: center;
}

.cuisine-intro p {
  font-size: 1.1rem;
  line-height: 1.8;
  color: #444;
}

.cuisine-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(350px, 1fr));
  gap: 30px;
  margin-top: 40px;
}

.cuisine-card {
  background: white;
  border-radius: 15px;
  padding: 30px;
  box-shadow: 0 10px 30px rgba(30, 64, 175, 0.1);
  transition: transform 0.3s ease, box-shadow 0.3s ease;
  border: 2px solid #e2e8f0;
}

.cuisine-card:hover {
  transform: translateY(-5px);
  box-shadow: 0 20px 40px rgba(30, 64, 175, 0.15);
  border-color: #3b82f6;
}

.cuisine-icon {
  font-size: 3rem;
  text-align: center;
  margin-bottom: 20px;
}

.cuisine-card h3 {
  font-size: 1.5rem;
  margin-bottom: 15px;
  color: #1e40af;
  font-weight: bold;
}

.cuisine-card p {
  font-size: 1rem;
  line-height: 1.6;
  margin-bottom: 20px;
  color: #555;
}

.cuisine-card ul {
  list-style: none;
  padding: 0;
}

.cuisine-card li {
  padding: 8px 0;
  border-bottom: 1px solid #e2e8f0;
  color: #666;
  font-size: 0.95rem;
}

.cuisine-card li:last-child {
  border-bottom: none;
}

.cuisine-card li::before {
  content: "🌊";
  margin-right: 10px;
}

/* Sezione Tipologie di Servizio (experiences) */
.experiences-section {
  background: #f8fafc;
}

.experiences-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
  gap: 25px;
  margin-top: 40px;
}

.experience-card {
  background: white;
  border-radius: 12px;
  padding: 25px;
  box-shadow: 0 8px 25px rgba(30, 64, 175, 0.1);
  transition: transform 0.3s ease;
  border-left: 4px solid #3b82f6;
}

.experience-card:hover {
  transform: translateY(-3px);
}

.experience-icon {
  font-size: 2.5rem;
  text-align: center;
  margin-bottom: 15px;
}

.experience-card h3 {
  font-size: 1.3rem;
  margin-bottom: 15px;
  color: #1e40af;
  font-weight: bold;
}

.experience-card p {
  font-size: 0.95rem;
  line-height: 1.6;
  margin-bottom: 20px;
  color: #555;
}

.experience-details {
  display: flex;
  justify-content: space-between;
  gap: 15px;
  flex-wrap: wrap;
}

.experience-details span {
  background: #e2e8f0;
  padding: 5px 12px;
  border-radius: 20px;
  font-size: 0.85rem;
  color: #475569;
  font-weight: 500;
}

.time {
  background: #dbeafe !important;
  color: #1e40af !important;
}

.season {
  background: #dcfdf7 !important;
  color: #065f46 !important;
}

/* Sezione Cosa Portare (services) */
.services-section {
  background: white;
}

.services-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
  gap: 30px;
  margin-top: 40px;
}

.service-item {
  text-align: center;
  padding: 30px 20px;
  border-radius: 10px;
  transition: background 0.3s ease;
}

.service-item:hover {
  background: #f8fafc;
}

.service-icon {
  font-size: 3rem;
  margin-bottom: 20px;
}

.service-item h3 {
  font-size: 1.3rem;
  margin-bottom: 15px;
  color: #1e40af;
  font-weight: bold;
}

.service-item p {
  font-size: 1rem;
  line-height: 1.6;
  color: #666;
}

/* Sezione Stagionalità */
.seasonal-section {
  background: #f8fafc;
}

.seasonal-content {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 50px;
  margin-top: 40px;
}

.seasonal-info h3,
.seasonal-highlights h3 {
  font-size: 1.5rem;
  margin-bottom: 20px;
  color: #1e40af;
  font-weight: bold;
}

.seasonal-info p {
  font-size: 1rem;
  line-height: 1.6;
  margin-bottom: 15px;
  color: #555;
}

.seasonal-items {
  display: flex;
  flex-direction: column;
  gap: 15px;
}

.seasonal-item {
  background: white;
  padding: 15px 20px;
  border-radius: 8px;
  box-shadow: 0 3px 10px rgba(30, 64, 175, 0.1);
  display: flex;
  justify-content: space-between;
  align-items: center;
}

.seasonal-item strong {
  color: #1e40af;
  font-size: 1rem;
  font-weight: bold;
}

.seasonal-item span {
  color: #666;
  font-size: 0.9rem;
}

/* Sezione Prenotazioni */
.booking-section {
  background: white;
}

.booking-content {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 50px;
  margin-top: 40px;
}

.booking-info h3,
.booking-cta h3 {
  font-size: 1.5rem;
  margin-bottom: 20px;
  color: #1e40af;
  font-weight: bold;
}

.booking-info ul {
  list-style: none;
  padding: 0;
}

.booking-info li {
  padding: 12px 0;
  border-bottom: 1px solid #e2e8f0;
  font-size: 1rem;
  color: #555;
}

.booking-info li:last-child {
  border-bottom: none;
}

.booking-cta {
  text-align: center;
  padding: 30px;
  background: #f8fafc;
  border-radius: 15px;
}

.booking-cta p {
  font-size: 1.1rem;
  line-height: 1.6;
  margin-bottom: 30px;
  color: #444;
}

.contact-buttons {
  display: flex;
  gap: 15px;
  justify-content: center;
  flex-wrap: wrap;
}

.btn-primary,
.btn-secondary {
  padding: 12px 25px;
  border-radius: 25px;
  text-decoration: none;
  font-weight: bold;
  font-size: 1rem;
  transition: all 0.3s ease;
  display: inline-block;
}

.btn-primary {
  background: linear-gradient(135deg, #1e40af 0%, #3b82f6 100%);
  color: white;
}

.btn-primary:hover {
  background: linear-gradient(135deg, #1e3a8a 0%, #2563eb 100%);
  transform: translateY(-2px);
  box-shadow: 0 5px 15px rgba(30, 64, 175, 0.3);
}

.btn-secondary {
  background: white;
  color: #1e40af;
  border: 2px solid #1e40af;
}

.btn-secondary:hover {
  background: #1e40af;
  color: white;
  transform: translateY(-2px);
  box-shadow: 0 5px 15px rgba(30, 64, 175, 0.3);
}

/* Sezione FAQ */
.faq-section {
  background: #f8fafc;
}

.faq-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
  gap: 25px;
  margin-top: 40px;
}

.faq-item {
  background: white;
  padding: 25px;
  border-radius: 10px;
  box-shadow: 0 5px 15px rgba(30, 64, 175, 0.1);
  transition: transform 0.3s ease;
}

.faq-item:hover {
  transform: translateY(-2px);
}

.faq-item h3 {
  font-size: 1.2rem;
  margin-bottom: 15px;
  color: #1e40af;
  font-weight: bold;
}

.faq-item p {
  font-size: 1rem;
  line-height: 1.6;
  color: #555;
}

/* Responsive Design */
@media (max-width: 768px) {
  .hero-section h1 {
    font-size: 2.5rem;
  }

  .hero-subtitle {
    font-size: 1.1rem;
  }
  .hero-features {
    border-radius: 15px;
  }

  .hero-features span {
    display: block;
    margin: 5px 0;
    font-size: 1.3rem;
  }

  .section-title {
    font-size: 2rem;
  }

  .cuisine-grid {
    grid-template-columns: 1fr;
    gap: 20px;
  }

  .experiences-grid {
    grid-template-columns: 1fr;
    gap: 20px;
  }

  .services-grid {
    grid-template-columns: repeat(auto-fit, minmax(200px, 1fr));
    gap: 20px;
  }

  .seasonal-content {
    grid-template-columns: 1fr;
    gap: 30px;
  }

  .booking-content {
    grid-template-columns: 1fr;
    gap: 30px;
  }

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

  .btn-primary,
  .btn-secondary {
    width: 100%;
    max-width: 250px;
    text-align: center;
  }

  .faq-grid {
    grid-template-columns: 1fr;
    gap: 20px;
  }
}

@media (max-width: 480px) {
  .container {
    padding: 0 15px;
  }

  section {
    padding: 40px 0;
  }

  .hero-section {
    padding: 60px 0;
  }

  .hero-section h1 {
    font-size: 2rem;
  }

  .cuisine-card,
  .experience-card,
  .faq-item {
    padding: 20px;
  }

  .seasonal-item {
    flex-direction: column;
    align-items: flex-start;
    gap: 5px;
  }
}

/* Animazioni aggiuntive */
@keyframes wave {
  0%,
  100% {
    transform: translateY(0px);
  }
  50% {
    transform: translateY(-10px);
  }
}

.hero-features {
  animation: wave 3s ease-in-out infinite;
}

/* Effetti di trasparenza per le sezioni */
.intro-section,
.experiences-section,
.seasonal-section,
.faq-section {
  background: linear-gradient(180deg, #f8fafc 0%, #f1f5f9 100%);
}

/* Effetti speciali per gli elementi marini */
.cuisine-icon,
.experience-icon,
.service-icon {
  transition: transform 0.3s ease;
}

.cuisine-card:hover .cuisine-icon,
.experience-card:hover .experience-icon,
.service-item:hover .service-icon {
  transform: scale(1.1);
}

@media (max-width: 480px) {
  .container {
    padding: 0 15px;
  }

  section {
    padding: 40px 0;
  }

  .hero-section {
    padding: 60px 0;
  }

  .boat-card,
  .sport-card {
    padding: 20px;
  }

  .booking-cta {
    padding: 20px;
  }
}

@keyframes fadeIn {
  from {
    opacity: 0;
    transform: translateY(30px);
  }
  to {
    opacity: 1;
    transform: translateY(0);
  }
}

@media screen and (max-width: 1024px) {
  .hero-section h1 {
    font-size: 2.5rem;
  }

  .hero-subtitle {
    font-size: 1.1rem;
  }

  .hero-features span {
    display: block;
    margin: 5px 0;
    text-align: left;
  }

  .section-title {
    font-size: 2rem;
  }

  .boats-grid,
  .watersports-grid {
    grid-template-columns: 1fr;
  }

  .booking-content {
    grid-template-columns: 1fr;
    gap: 30px;
  }

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

  .sport-details {
    justify-content: center;
  }
  .main_text_slider {
    width: 98vw;
  }
  .main_text_slider h1 {
    font-size: 9.5vw;
    align-items: center;
    justify-content: center;
    height: auto;
    line-height: 40px;
  }
  .main_text_slider h2 {
    font-size: 6vw;
    align-items: center;
    justify-content: center;
  }
  .slider_text h3 {
    font-size: 4vw;
  }
  section {
    width: 100%;
    height: auto;
    padding: 20px;
    box-sizing: border-box;
  }
  section h2 {
    width: 100%;
  }
  .testo_intro_home {
    width: 100%;
    max-width: 100%;
    line-height: 2rem;
  }
  .testo_immagini_spiagge {
    flex-direction: column;
  }
  .immagini_spiagge {
    width: 90%;
  }
  .titolo_spiagge {
    width: 90%;
    line-height: 2.4rem;
    margin: 20px 0;
  }
  .sottotitolo_spiagge {
    width: 90%;
  }
  .testo_spiagge {
    width: 90%;
    margin-top: 30px;
    padding: 20px 0;
  }
  .con_onde h2 {
    width: 90%;
  }
  .testo_intro_home {
    width: 90%;
  }
  .footer {
    flex-direction: column;
  }
  .info_generiche .info_img_testo {
    flex-direction: column;
  }
  .nome_sezione h2 {
    font-size: 50px;
    width: 90%;
  }
  .nome_sezione h3 {
    font-size: 20px;
    width: 90%;
  }
  .info_generiche h3 {
    text-align: center;
    width: 90%;
  }
  .info_generiche h4 {
    text-align: center;
    width: 90%;
  }
  .testo_spiagge p {
    font-size: 18px;
    width: 90%;
  }
  .contatti {
    flex-direction: column;
    height: auto;
  }
  .mappa {
    width: 100%;
    height: 90vh;
    padding-bottom: 0;
  }
  .mappa iframe {
    height: 100%;
    padding-top: 70px;
  }
  .div_form {
    width: 100%;
    height: auto;
  }
  .form-container {
    width: 100%;
    padding: 50px 5vw;
    height: auto;
  }
}
.beach-section {
  background: linear-gradient(135deg, #667eea 0%, #764ba2 100%);
  min-height: 100vh;
  padding: 80px 20px;
  position: relative;
  overflow: hidden;
}

.beach-section::before {
  content: "";
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  background: url('data:image/svg+xml,<svg xmlns="http://www.w3.org/2000/svg" viewBox="0 0 1440 320"><path fill="%23ffffff" fill-opacity="0.1" d="M0,96L48,112C96,128,192,160,288,160C384,160,480,128,576,112C672,96,768,96,864,112C960,128,1056,160,1152,160C1248,160,1344,128,1392,112L1440,96L1440,320L1392,320C1344,320,1248,320,1152,320C1056,320,960,320,864,320C768,320,672,320,576,320C480,320,384,320,288,320C192,320,96,320,48,320L0,320Z"></path></svg>')
    bottom center/cover no-repeat;
  animation: wave 6s ease-in-out infinite;
}

@keyframes wave {
  0%,
  100% {
    transform: translateY(0px);
  }

  50% {
    transform: translateY(-10px);
  }
}

@keyframes fadeInUp {
  from {
    opacity: 0;
    transform: translateY(30px);
  }

  to {
    opacity: 1;
    transform: translateY(0);
  }
}

@keyframes float {
  0%,
  100% {
    transform: translateY(0px);
  }

  50% {
    transform: translateY(-20px);
  }
}

@keyframes shimmer {
  0% {
    background-position: -200px 0;
  }

  100% {
    background-position: 200px 0;
  }
}

.container {
  max-width: 1200px;
  margin: 0 auto;
  position: relative;
  z-index: 2;
}

.hero-title {
  text-align: center;
  color: white;
  font-size: 3.5rem;
  font-weight: 300;
  width: 100%;
  margin-bottom: 20px;
  text-shadow: 0 4px 8px rgba(0, 0, 0, 0.3);
  animation: fadeInUp 1s ease-out;
  text-align: center;
  display: flex;
  align-items: center;
}

.hero-subtitle {
  text-align: center;
  color: rgba(255, 255, 255, 0.9);
  font-size: 1.3rem;
  margin-bottom: 60px;
  animation: fadeInUp 1s ease-out 0.3s both;
}

.features-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
  gap: 40px;
  margin-bottom: 80px;
}

.feature-card {
  background: rgba(255, 255, 255, 0.15);
  backdrop-filter: blur(10px);
  border: 1px solid rgba(255, 255, 255, 0.2);
  border-radius: 20px;
  padding: 40px 30px;
  text-align: center;
  transition: all 0.4s ease;
  animation: fadeInUp 1s ease-out 0.6s both;
  position: relative;
  overflow: hidden;
  height: auto;
}

.feature-card::before {
  content: "";
  position: absolute;
  top: -50%;
  left: -50%;
  width: 200%;
  height: 200%;
  background: linear-gradient(
    45deg,
    transparent,
    rgba(255, 255, 255, 0.1),
    transparent
  );
  transform: rotate(45deg);
  transition: all 0.5s;
  opacity: 0;
}

.feature-card:hover::before {
  animation: shimmer 1.5s ease-in-out;
  opacity: 1;
}

.feature-card:hover {
  transform: translateY(-10px) scale(1.02);
  background: rgba(255, 255, 255, 0.25);
  box-shadow: 0 20px 40px rgba(0, 0, 0, 0.2);
}

.feature-icon {
  font-size: 4rem;
  display: block;
  height: auto;
}

.feature-card:nth-child(2) .feature-icon {
  animation-delay: -1s;
}

.feature-card:nth-child(3) .feature-icon {
  animation-delay: -2s;
}

.feature-title {
  color: white;
  font-size: 1.8rem;
  font-weight: 600;
  margin-bottom: 15px;
  text-shadow: 0 2px 4px rgba(0, 0, 0, 0.3);
}

.feature-description {
  color: rgba(255, 255, 255, 0.9);
  font-size: 1.1rem;
  line-height: 1.6;
}

.cta-section {
  text-align: center;
  margin-top: 60px;
}

.cta-button {
  display: inline-block;
  background: linear-gradient(45deg, #ff6b6b, #feca57);
  color: white;
  padding: 18px 40px;
  font-size: 1.2rem;
  font-weight: 600;
  text-decoration: none;
  border-radius: 50px;
  transition: all 0.3s ease;
  box-shadow: 0 8px 25px rgba(255, 107, 107, 0.4);
  animation: fadeInUp 1s ease-out 0.9s both;
  position: relative;
  overflow: hidden;
}

.cta-button::before {
  content: "";
  position: absolute;
  top: 0;
  left: -100%;
  width: 100%;
  height: 100%;
  background: linear-gradient(
    90deg,
    transparent,
    rgba(255, 255, 255, 0.2),
    transparent
  );
  transition: left 0.5s;
}

.cta-button:hover::before {
  left: 100%;
}

.cta-button:hover {
  transform: translateY(-3px) scale(1.05);
  box-shadow: 0 15px 35px rgba(255, 107, 107, 0.6);
}

/* Responsive Design */
@media (max-width: 768px) {
  .hero-title {
    font-size: 2.5rem;
  }

  .hero-subtitle {
    font-size: 1.1rem;
  }

  .features-grid {
    grid-template-columns: 1fr;
    gap: 30px;
  }

  .feature-card {
    padding: 30px 20px;
  }

  .feature-icon {
    font-size: 3rem;
  }

  .feature-title {
    font-size: 1.5rem;
  }

  .beach-section {
    padding: 40px 15px;
  }
}

@media (max-width: 480px) {
  .hero-title {
    font-size: 2rem;
  }

  .cta-button {
    padding: 15px 30px;
    font-size: 1.1rem;
  }
}
