@import url('https://fonts.googleapis.com/css2?family=Cormorant+Garamond:wght@400;600;700&display=swap');

/* ========================================================= */
/* FONT & BODY */
/* ========================================================= */

html, body {
  height: 100%;
  margin: 0;
}

body {
  background-image: url('index.jpg');
  background-size: cover;
  background-position: center;
  background-repeat: no-repeat;
  background-attachment: fixed;
  display: flex;
  flex-direction: column;
  font-family: 'Cormorant Garamond', serif;
}

/* ========================================================= */
/* HERO SECTION */
/* ========================================================= */

.content-wrapper {
  flex-grow: 1;
}

.hero-section {
  text-align: center;
  color: #fff;
  padding-top: 15vh;
}

.hero-section h1 {
  font-family: 'Cinzel Decorative', serif;
  font-weight: 700;
  color: #FF8C00;
  font-size: clamp(2.5rem, 6vw, 7rem);
  margin: 0 0 15px 0;
  line-height: 1.1;
  text-shadow: 2px 2px 8px rgba(0, 0, 0, 0.3);
}

.hero-section h2 {
  font-family: 'Cormorant Garamond', serif;
  color: #FFD966;
  font-size: clamp(1.2rem, 2vw, 2.5rem);
  font-weight: 400;
  margin-top: 10px;
  line-height: 1.3;
}

/* Linea decorativa sopra il sottotitolo */
.subtitle::before {
  content: "";
  display: block;
  width: 50px;
  height: 1px;
  background-color: #FFC302;
  margin: 0 auto 10px auto;
  box-shadow: 0 0 5px rgba(255, 217, 102, 0.5);
}

/* Anello decorativo */
.destiny-ring {
  color: #c2b67e;
  border: 1px solid #edece6;
  padding: 5px 20px;
  border-radius: 35px;
  box-shadow: 0 0 10px rgba(255, 217, 102, 0.7);
  display: inline-block;
}

/* ========================================================= */
/* CTA LAYOUT (3 AFFIANCATI + 1 SOTTO) */
/* ========================================================= */

.cta-all-banners-container {
  display: flex;
  justify-content: center;
  align-items: flex-start;
  gap: 20px;
  margin: 40px auto;
  max-width: 1200px;
  padding: 0 10px;
}

.center-stack-wrapper {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 0;
  margin: 0;
  padding: 0;
}

.rectangular-banner-wrapper {
  max-width: 350px;
  width: 100%;
  margin-bottom: 0;
}

.rectangular-banner-wrapper img {
  display: block;
  width: 100%;
  height: auto;
  border-radius: 8px;
}

/* ========================================================= */
/* CTA BUTTONS (899, 051, Svizzera) */
/* ========================================================= */

.cta-button-link,
.cta-swiss-link {
  text-decoration: none;
  display: inline-block;
}

.banner {
  max-width: 250px;
  width: 100%;
  height: auto;
  display: block;
  cursor: pointer;
  transition: transform 0.3s ease;
  flex-shrink: 1;
}

.banner:hover {
  transform: scale(1.05);
}

/* === PULSANTE 899 === */
.cta-button-design {
  background: linear-gradient(90deg, #007BFF, #00C6FF);
  color: #fff;
  border-radius: 25px;
  padding: 25px 20px;
  text-align: center;
   flex-shrink: 0;
  font-weight: bold;
  font-size: 1.2em;
  line-height: 1.3em;
  margin-left: -80px;
  min-width: 250px;
  box-shadow: 0 5px 15px rgba(0, 0, 0, 0.3);
  transition: transform 0.2s ease-in-out, box-shadow 0.2s ease-in-out;
}

.cta-button-design:hover {
  transform: scale(1.05);
  box-shadow: 0 8px 20px rgba(0, 0, 0, 0.4);
}

.cta-button-design .cta-subtext {
  display: block;
  font-size: 1.5em;
  margin-top: 5px;
  font-weight: 700;
}

/* === PULSANTE 051 === */
.cta-button-design-2 {
  background: linear-gradient(90deg, #F9A825, #FF8F00);
  color: #fff;
  border-radius: 25px;
  padding: 25px 20px;
 margin-left: -10px;
  text-align: center;
margin-top: 20px;
  font-weight: bold;
  font-size: 1.2em;
  line-height: 1.3em;
  box-shadow: 0 5px 15px rgba(0, 0, 0, 0.3);
  transition: transform 0.2s ease-in-out, box-shadow 0.2s ease-in-out;
}

.cta-button-design-2:hover {
  transform: scale(1.05);
  box-shadow: 0 8px 20px rgba(0, 0, 0, 0.4);
}

.cta-button-design-2 .cta-subtext {
  display: block;
  font-size: 1.5em;
  margin-top: 5px;
  font-weight: 700;
}

.cta-button-design-2 .cta-subinfo {
  display: block;
  font-size: 0.8em;
  margin-top: 3px;
}
.cta-button-design-2 .cta-message {
isplay: block;
  font-size: 0.8em;
  margin-top: 3px;
}	
		
/* === PULSANTE SVIZZERA === */
.cta-swiss-design {
  max-width: 300px;
  width: 100%;
  height: auto;
  display: block;
  cursor: pointer;
  transition: transform 0.3s ease;
  background-color: #fff;
  color: #ff0000;
  padding: 15px 10px;
  border-radius: 50px;
  text-align: center;
  box-shadow: 0 0 15px rgba(255, 0, 0, 0.7);
}

.cta-swiss-design:hover {
  transform: scale(1.05);
}

.swiss-title {
  display: block;
  font-weight: 700;
  color: #ff0000;
  margin-bottom: 5px;
}

.swiss-number {
  display: block;
  font-size: 2rem;
  font-weight: 900;
  color: #ff0000;
  margin-top: 10px;
  margin-bottom: 5px;
  line-height: 1;
}

.swiss-cost {
  display: block;
  font-size: 0.8rem;
  font-weight: 500;
  color: #333;
}

/* Bandiera Svizzera */
.swiss-flag-container {
  width: 30px;
  height: 30px;
  background-color: #ff0000;
  border-radius: 4px;
  margin: 5px auto;
  position: relative;
  display: block;
}

.swiss-horizontal-bar {
  position: absolute;
  top: 50%;
  left: 15%;
  width: 70%;
  height: 30%;
  background-color: white;
  transform: translateY(-50%);
}

.swiss-vertical-bar {
  position: absolute;
  left: 50%;
  top: 15%;
  height: 70%;
  width: 30%;
  background-color: white;
  transform: translateX(-50%);
}

/* ========================================================= */
/* FOOTER */
/* ========================================================= */

.main-footer {
  background-color: #1a1a1a;
  color: #fff;
  padding: 40px 20px;
  text-align: center;
}

.legal-footer {
  background-color: #111;
  color: #ccc;
  font-size: 12px;
  line-height: 1.5;
  padding: 20px;
  text-align: center;
}

.legal-footer p {
  margin: 5px 0;
}

.warning {
  color: #ff4d4d;
  font-weight: bold;
}

.disclaimer {
  text-transform: uppercase;
  font-weight: bold;
}

.tariffe {
  font-size: 11px;
  color: #eee;
}

.info {
  font-size: 11px;
  font-style: italic;
}

/* ========================================================= */
/* RESPONSIVE */
/* ========================================================= */

@media (max-width: 1000px) {
  .cta-all-banners-container {
    flex-direction: column;
    align-items: center;
    gap: 20px;
    margin: 20px auto;
  }
/* Riga ~301: RESPONSIVE */

@media (max-width: 1000px) {
  /* ... altre regole esistenti ... */

  /* AGGIUNGI QUESTO BLOCCO per azzerare i margini sui dispositivi mobili */
  .cta-button-design,
  .cta-button-design-2 {
    margin: 0 auto 20px auto; /* Imposta margini e centra orizzontalmente */
  }

  .center-stack-wrapper {
    gap: 20px;
  }

  .banner, .rectangular-banner-wrapper {
    max-width: 85%;
    min-width: 260px;
  }
}
  .center-stack-wrapper {
    gap: 20px;
  }

  .banner, .rectangular-banner-wrapper {
    max-width: 85%;
    min-width: 260px;
  }
}