@import url('https://fonts.googleapis.com/css2?family=Pacifico&display=swap');
@import url('https://fonts.googleapis.com/css2?family=Nunito:wght@600&display=swap');

* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
    font-family: 'Segoe UI', Tahoma, Geneva, Verdana, sans-serif;
}

:root {
    --primary-color: #4a6de5;
    --secondary-color: #ff6b6b;
    --accent-color: #4ecdc4;
    --dark-color: #2c3e50;
    --light-color: #f8f9fa;
    --text-color: #333;
    --transition: all 0.3s ease;
}

body {
    background-color: #f9f9f9;
    color: var(--text-color);
    line-height: 1.6;
}

/* Skip Navigation for Accessibility */
.skip-nav {
    position: absolute;
    top: -40px;
    left: 0;
    background: var(--primary-color);
    color: white;
    padding: 8px;
    text-decoration: none;
    z-index: 1001;
    transition: var(--transition);
}

.skip-nav:focus {
    top: 0;
}

/* Breadcrumb Navigation for SEO (nascosto visivamente) */
.breadcrumb {
    position: absolute;
    width: 1px;
    height: 1px;
    padding: 0;
    margin: -1px;
    overflow: hidden;
    clip: rect(0, 0, 0, 0);
    white-space: nowrap;
    border: 0;
}

/* Header Styles */
header {
    background: linear-gradient(135deg, var(--primary-color), var(--dark-color));
    color: white;
    padding: 1rem 0;
    position: sticky;
    top: 0;
    z-index: 1000;
    box-shadow: 0 2px 15px rgba(0, 0, 0, 0.1);
}

.header-container {
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 20px;
    display: flex;
    justify-content: space-between;
    align-items: center;
}

.logo {
    display: flex;
    align-items: center;
    gap: 10px;
    font-size: 1.8rem;
    font-weight: 700;
    text-decoration: none;
    color: white;
    transition: var(--transition);
}

.logo:hover {
    transform: scale(1.05);
}

.logo-icon {
    font-size: 2rem;
}

/* Navigation Menu */
.nav-menu {
    display: flex;
    list-style: none;
    gap: 2rem;
}

.nav-item {
    position: relative;
}

.nav-link {
    color: white;
    text-decoration: none;
    font-weight: 500;
    font-size: 1.1rem;
    padding: 0.5rem 0;
    position: relative;
    transition: var(--transition);
}

.nav-link:hover {
    color: var(--accent-color);
}

.nav-link::after {
    content: '';
    position: absolute;
    bottom: 0;
    left: 0;
    width: 0;
    height: 3px;
    background: var(--accent-color);
    transition: var(--transition);
}

.nav-link:hover::after {
    width: 100%;
}

/* Dropdown Menu */
.dropdown {
    position: absolute;
    top: 100%;
    left: 0;
    background: white;
    min-width: 200px;
    box-shadow: 0 5px 15px rgba(0, 0, 0, 0.1);
    border-radius: 8px;
    opacity: 0;
    visibility: hidden;
    transform: translateY(-10px);
    transition: var(--transition);
    z-index: 100;
    padding: 0.5rem 0;
}

.nav-item:hover .dropdown {
    opacity: 1;
    visibility: visible;
    transform: translateY(0);
}

.dropdown-item {
    padding: 12px 20px;
    display: block;
    color: var(--dark-color);
    text-decoration: none;
    transition: var(--transition);
    border-bottom: 1px solid #eee;
}

.dropdown-item:last-child {
    border-bottom: none;
}

.dropdown-item:hover {
    background: var(--accent-color);
    color: white;
    padding-left: 25px;
}

/* Mobile Menu Button */
.hamburger {
    display: none;
    cursor: pointer;
    width: 30px;
    height: 22px;
    flex-direction: column;
    justify-content: space-between;
    position: relative;
    z-index: 1001;
}

.hamburger span {
    display: block;
    height: 3px;
    width: 100%;
    background: white;
    border-radius: 3px;
    transition: var(--transition);
    position: relative;
}

.hamburger.active span:nth-child(1) {
    transform: translateY(9px) rotate(45deg);
}

.hamburger.active span:nth-child(2) {
    opacity: 0;
}

.hamburger.active span:nth-child(3) {
    transform: translateY(-9px) rotate(-45deg);
}

/* Mobile Menu */
.mobile-menu {
    position: fixed;
    top: 0;
    left: -100%;
    width: 85%;
    height: 100vh;
    background: white;
    padding: 2rem;
    box-shadow: 5px 0 15px rgba(0, 0, 0, 0.1);
    transition: left 0.3s ease, transform 0.3s ease;
    z-index: 1000;
    overflow-y: auto;
    transform: translateX(0);
}

.mobile-menu.active {
    left: 0;
    transform: translateX(0);
}

.mobile-menu-header {
    display: flex;
    justify-content: space-between;
    align-items: center;
    margin-bottom: 2rem;
    padding-bottom: 1rem;
    border-bottom: 2px solid var(--primary-color);
}

.mobile-close {
    font-size: 2rem;
    cursor: pointer;
    color: var(--dark-color);
}

.mobile-nav {
    list-style: none;
}

.mobile-nav-item {
    margin-bottom: 1.5rem;
    position: relative;
}

.mobile-nav-link {
    display: block;
    color: var(--dark-color);
    text-decoration: none;
    font-size: 1.3rem;
    font-weight: 500;
    padding: 0.5rem 0;
    position: relative;
    transition: var(--transition);
}

.mobile-nav-link:hover {
    color: var(--primary-color);
    transform: translateX(5px);
}

.mobile-dropdown-toggle {
    background: none;
    border: none;
    color: var(--primary-color);
    cursor: pointer;
    font-size: 1.2rem;
    margin-left: 10px;
    transition: var(--transition);
}

.mobile-dropdown-toggle:hover {
    transform: rotate(90deg);
}

.mobile-dropdown {
    list-style: none;
    margin-top: 1rem;
    padding-left: 1.5rem;
    max-height: 0;
    overflow: hidden;
    transition: max-height 0.3s ease;
}

.mobile-dropdown.active {
    max-height: 500px;
}

.mobile-dropdown-item {
    margin-bottom: 0.8rem;
}

.mobile-dropdown-link {
    color: var(--secondary-color);
    text-decoration: none;
    transition: var(--transition);
    font-size: 1.1rem;
}

.mobile-dropdown-link:hover {
    color: var(--primary-color);
    text-decoration: underline;
}

/* Overlay */
.overlay {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: rgba(0, 0, 0, 0.5);
    opacity: 0;
    visibility: hidden;
    transition: opacity 0.3s ease, visibility 0.3s ease;
    z-index: 999;
}

.overlay.active {
    opacity: 1;
    visibility: visible;
}

/* Body when menu is open */
body.menu-open {
    overflow: hidden;
    position: fixed;
    width: 100%;
    height: 100vh;
    top: 0;
    left: 0;
    right: 0;
}

/* Hero Section */
/*
.hero {
    #background: linear-gradient(rgba(0, 0, 0, 0.5), rgba(0, 0, 0, 0.5)), url('https://placehold.co/1200x600/4a6de5/ffffff?text=Esplora+il+Mondo') no-repeat center center/cover;
    #background: linear-gradient(rgba(0, 0, 0, 0.5), rgba(0, 0, 0, 0.5)), #4a6de5 no-repeat center center/cover;
    height: 20vh;
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: center;
    text-align: center;
    color: white;
    color: black;
    padding: 0 20px;
}

.hero h1 {
    font-size: 3.5rem;
    margin-bottom: 1rem;
    text-shadow: 2px 2px 4px rgba(0, 0, 0, 0.5);
}

.hero p {
    font-size: 1.5rem;
    max-width: 800px;
    margin-bottom: 2rem;
}
*/

  /* @import url('https://fonts.googleapis.com/css2?family=Pacifico&display=swap'); */

  .hero {
    background: linear-gradient(135deg, #a8edea 0%, #fed6e3 100%); /* sfondo fresco e vacanziero */
    text-align: center;
    padding: 3rem 1rem;
    border: 5px solid #ffffffaa; /* cornice semi-trasparente */
    border-radius: 20px; /* angoli arrotondati */
    max-width: 700px;
    margin: 2rem auto;
    box-shadow: 0 8px 20px rgba(0, 0, 0, 0.15);
  }

  .hero h2 {
    font-family: 'Pacifico', cursive; /* font allegro e distintivo */
    font-size: 2.2rem;
    color: #ff6f61; /* tono vivace */
    margin-bottom: 0.5rem;
  }

  .hero p {
    font-family: 'Pacifico', cursive;
    font-size: 1.3rem;
    color: #333;
    background: rgba(255, 255, 255, 0.6); /* piccolo riquadro traslucido */
    display: inline-block;
    padding: 0.5rem 1rem;
    border-radius: 12px;
  }


/* Button Styles */
.btn {
    display: inline-block;
    background: var(--secondary-color);
    color: white;
    padding: 12px 30px;
    border-radius: 30px;
    text-decoration: none;
    font-weight: 600;
    font-size: 1.1rem;
    transition: var(--transition);
    box-shadow: 0 4px 15px rgba(255, 107, 107, 0.3);
}

.btn:hover {
    background: #ff5252;
    transform: translateY(-3px);
    box-shadow: 0 6px 20px rgba(255, 107, 107, 0.4);
}

/* Content Section */
.content {
    max-width: 1200px;
    margin: 4rem auto;
    padding: 0 20px;
}

.section-title {
    text-align: center;
    font-size: 2.5rem;
    margin-bottom: 3rem;
    color: var(--dark-color);
    position: relative;
}

.section-title::after {
    content: '';
    position: absolute;
    bottom: -10px;
    left: 50%;
    transform: translateX(-50%);
    width: 80px;
    height: 4px;
    background: var(--accent-color);
    border-radius: 2px;
}

/* Cards */
.cards {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: 2rem;
}

.card {
    background: white;
    border-radius: 15px;
    overflow: hidden;
    box-shadow: 0 5px 15px rgba(0, 0, 0, 0.1);
    transition: var(--transition);
}

.card:hover {
    transform: translateY(-10px);
    box-shadow: 0 15px 30px rgba(0, 0, 0, 0.15);
}

.card-img {
    height: 200px;
    background-size: cover;
    background-position: center;
}

.card-content {
    padding: 1.5rem;
}

.card-title {
    font-size: 1.5rem;
    margin-bottom: 0.5rem;
    color: var(--dark-color);
}

.card-text {
    color: #666;
    margin-bottom: 1rem;
}

.card-link {
    display: inline-block;
    color: var(--primary-color);
    text-decoration: none;
    font-weight: 600;
    transition: var(--transition);
}

.card-link:hover {
    color: var(--accent-color);
    padding-left: 5px;
}

/* Itinerary Section */
.itinerary {
    margin-bottom: 4rem;
}

.day-card {
    background: white;
    border-radius: 15px;
    overflow: hidden;
    box-shadow: 0 5px 15px rgba(0, 0, 0, 0.1);
    transition: var(--transition);
    margin-bottom: 2rem;
    display: flex;
    flex-direction: column;
}

.day-card:hover {
    transform: translateY(-5px);
    box-shadow: 0 10px 25px rgba(0, 0, 0, 0.15);
}

.day-header {
    background: var(--primary-color);
    color: white;
    padding: 1.5rem;
    display: flex;
    align-items: center;
    gap: 15px;
}

/* Stile base per .day-number */
.day-number {
    display: inline-block;
    color: white;
    font-weight: bold;
    font-size: 0.9rem;
    padding: 0.4rem 0.8rem;
    border-radius: 12px;
    min-width: auto;
    text-align: center;
    white-space: nowrap;
    margin-right: 0.5rem;
    box-shadow: 0 2px 4px rgba(0,0,0,0.1);
}

/* 🎨 Colori diversi per ogni giorno */
.day-number.giorno-1 { background-color: #2c47a3; } /* Blu scuro (default) */
.day-number.giorno-2 { background-color: #e63946; } /* Rosso */
.day-number.giorno-3 { background-color: #2a9d8f; } /* Verde acqua */
.day-number.giorno-4 { background-color: #f4a261; } /* Arancione */
.day-number.giorno-5 { background-color: #264653; } /* Verde scuro */
.day-number.giorno-6 { background-color: #9d4edd; } /* Viola */
.day-number.giorno-7 { background-color: #e76f51; } /* Terracotta */

/* Fallback per giorni oltre il 7° */
.day-number[class^="giorno-"] {
    background-color: #6a4c93; /* Viola scuro di default */
}

.day-title {
    font-size: 1.5rem;
    font-weight: 600;
}

.day-content {
    padding: 2rem;
    display: grid;
    grid-template-columns: 1fr 2fr;
    gap: 2rem;
}

.map-image {
  aspect-ratio: 16/9;          
  background-size: contain;    
  background-repeat: no-repeat;
  background-position: center;
  margin: 0 auto;              
  width: 80%;
  height: auto;
}

.day-image {
    height: 300px;
    background-size: cover;
    background-position: center;
    border-radius: 10px;
}

.day-details {
    display: flex;
    flex-direction: column;
    justify-content: space-between;
}

/*
.day-description {
    margin-bottom: 1.5rem;
    font-size: 1.1rem;
    line-height: 1.7;
}
*/

.highlights {
    list-style: none;
    margin-bottom: 1.5rem;
}

.highlight {
    padding: 8px 0;
    border-bottom: 1px dashed #eee;
    display: flex;
    align-items: center;
    gap: 10px;
}

.highlight:last-child {
    border-bottom: none;
}

.highlight-icon {
    color: var(--accent-color);
    font-weight: bold;
}

.tips {
    background: #f8f9fa;
    padding: 1.5rem;
    border-radius: 10px;
    border-left: 4px solid var(--secondary-color);
}

.tips-title {
    font-weight: 600;
    margin-bottom: 1rem;
    color: var(--dark-color);
    display: flex;
    align-items: center;
    gap: 10px;
}

.tip-item {
    margin-bottom: 0.5rem;
    padding-left: 1.5rem;
    position: relative;
}

.tip-item:before {
    content: '•';
    color: var(--secondary-color);
    font-weight: bold;
    position: absolute;
    left: 0;
}

/*  SEZIONE - DOVE ABBIAMO DORMITO */
.sleep-collapsible {
  background-color: #fff0b3;
  color: #3E8DA8;
  display: flex;
  justify-content:space-between;
  border-radius: 5px;
  width: 40%;
  cursor: pointer;
  padding: 18px;
  margin: 0 0 0 1%;
  border: none;
  text-align: left;
  outline: none;
  font-size: 15px;
}

.sleep-active, .sleep-collapsible:hover {
  background-color: #c00f22;
  color: white;
  transition: 0.5s;
}

.sleep-collapsible-content {
  border-radius: 5px;
  padding: 0 18px;
  display: none;
  overflow: hidden;
  /* background-color: #f1f1f1; */
  background-color: #fff0b3;
  line-height: 1.8;
  text-align: justify;
  margin: 0 1% 0 1%;
}
.sleep-content {
    padding: 2rem;
    display: grid;
    grid-template-columns: 1fr 9fr;
    gap: 2rem;
    background-color: #fff0b3;    
}

.sleep-image {
    height: 100px;
    width:  100px;
    
    background-size: cover;
    background-position: center;
    border-radius: 10px;
}

.sleep-details {
    display: flex;
    flex-direction: column;
    justify-content: space-between;
}

.sleep-description {
    #margin-bottom: 1.5rem;
    font-size: 1.1rem;
    line-height: 1.7;
}
/*  SEZIONE - DOVE ABBIAMO DORMITO */

/*  SEZIONE CARTOLINA  */
.containersezioni{border-radius: 15px; width: 100%;display: block;margin-bottom: 5%}
.bckGrigioChiaro{background: #f1f1f1}
.containerJstf, .containerNoJstf{display: block;width: 90%; height: auto;}
.containerJstf{display: flex;justify-content: space-around;}
.etichetta, .etichettaObliqua{padding: 2%; border-radius: 255px 15px 225px 15px/15px 225px 15px 255px; border:solid 5px #c00f22;}
.etichetta{width: 40%;margin: 0 0 3% 0;line-height: 4.0;}
.etichettaObliqua{width: 30%;height: 10%;margin-top: 5%;transform: rotate(10deg);}
.bckGiallo{background: #fff0b3}
.rigaetichetta{display: flex; justify-content: space-between}
.fontrosseb{font-weight: bold;color: #c00f22;}
/*  SEZIONE CARTOLINA  */



/* Responsive Design */
/* Responsive adjustments for hero text */
@media (max-width: 992px) {
    .hero h1 {
        font-size: 3rem;
    }
    .hero p {
        font-size: 1.3rem;
    }
    .day-content {
        grid-template-columns: 1fr;
        gap: 1.5rem;
    }
    .day-image {
        height: 250px;
    }
}

@media (max-width: 768px) {
    .hamburger {
        display: flex;
    }
    
    .nav-menu {
        display: none;
    }
    
    .hero h1 {
        font-size: 2.5rem;
    }
    
    .hero p {
        font-size: 1.2rem;
    }
    
    .section-title {
        font-size: 2rem;
    }
    
    .day-content {
        padding: 1.5rem;
    }
    
    .mobile-menu {
        width: 90%;
    }
}

@media (max-width: 576px) {
    .hero h1 {
        font-size: 2rem;
    }
    
    .hero p {
        font-size: 1.1rem;
    }
    
    .section-title {
        font-size: 1.8rem;
    }
    
    .day-header {
        flex-direction: column;
        text-align: center;
        gap: 10px;
    }
    .collapsible{width: 90%;}
    .sleep-collapsible{width: 98%;}
    .sleep-content {display: block;background-color: #fff0b3;padding: 0}
    .sleep-description {font-size: 1rem;line-height: 1;}   
    
    .containersezioni{border-radius: 5px; width: 100% !important;display: inline-block;overflow: auto;margin-bottom: 5%; margin-left: 1%;}
    .containerJstf{}
    .containerJstfCell{display:inline;}
    .containerNoJstf{width: 100%;height: auto; }
    .etichettaObliqua{width: 80%; margin: 10% 0 0 10%}
    .etichetta{width: 90%; margin-top: 10%;margin-left: 5%;line-height: 2.0;}
    .day-image {height: auto; background-size: cover; background-position: center; border-radius: 10px;}    
}

/* Footer */
footer {
    background: var(--dark-color);
    color: white;
    padding: 3rem 0;
    margin-top: 4rem;
}

.footer-container {
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 20px;
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
    gap: 2rem;
}

.footer-col h3 {
    font-size: 1.3rem;
    margin-bottom: 1.5rem;
    position: relative;
    padding-bottom: 0.5rem;
}

.footer-col h3::after {
    content: '';
    position: absolute;
    bottom: 0;
    left: 0;
    width: 50px;
    height: 3px;
    background: var(--accent-color);
}

.footer-links {
    list-style: none;
}

.footer-link {
    display: block;
    color: #ddd;
    text-decoration: none;
    margin-bottom: 0.8rem;
    transition: var(--transition);
}

.footer-link:hover {
    color: var(--accent-color);
    transform: translateX(5px);
}

.social-links {
    display: flex;
    gap: 1rem;
    margin-top: 1rem;
}

.social-link {
    display: flex;
    align-items: center;
    justify-content: center;
    width: 40px;
    height: 40px;
    background: rgba(255, 255, 255, 0.1);
    border-radius: 50%;
    color: white;
    text-decoration: none;
    transition: var(--transition);
}

.social-link:hover {
    background: var(--accent-color);
    transform: translateY(-3px);
}

.copyright {
    text-align: center;
    padding: 2rem 0 0;
    margin-top: 2rem;
    border-top: 1px solid rgba(255, 255, 255, 0.1);
    font-size: 0.9rem;
    color: #aaa;
}

.hotel-toggle {
    margin: 1.5rem 0;
}

.hotel-button {
    background-color: #2c47a3;
    color: white;
    border: none;
    padding: 0.6rem 1rem;
    border-radius: 8px;
    cursor: pointer;
    font-weight: bold;
    font-size: 0.95rem;
    transition: background-color 0.2s;
}

.hotel-button:hover {
    background-color: #1e337a;
}

.hotel-content {
    display: none;
    margin-top: 0.8rem;
    padding: 1rem;
    background-color: #f8f9fa;
    border-radius: 8px;
    border-left: 4px solid #2c47a3;
}

.hotel-content.open {
    display: block;
}

.hotel-content a {
    display: inline-block;
    margin-top: 0.8rem;
    color: #2c47a3;
    text-decoration: none;
    font-weight: bold;
}

.hotel-content a:hover {
    text-decoration: underline;
}

/*   @import url('https://fonts.googleapis.com/css2?family=Nunito:wght@600&display=swap'); */

/* CARTOLINA */
  .cartolina {
    font-family: 'Nunito', sans-serif;
    background: linear-gradient(135deg, #fdfcfb 0%, #e2d1c3 100%);
    border: 8px solid #fff;
    border-radius: 20px;
    box-shadow: 0 10px 25px rgba(0, 0, 0, 0.15);
    padding: 2rem;
    max-width: 500px;
    margin: 2rem auto;
    text-align: left;
    position: relative;
  }

  .cartolina::before {
    content: "✈️";
    font-size: 3rem;
    position: absolute;
    top: -25px;
    right: -25px;
    transform: rotate(-15deg);
    opacity: 0.8;
  }

  .cartolina h3 {
    color: #3c6e71;
    font-size: 1.6rem;
    margin-bottom: 1rem;
    text-align: center;
  }

  .cartolina ul {
    list-style: none;
    padding: 0;
    margin: 0 0 1rem;
  }

  .cartolina li {
    margin: 0.5rem 0;
    padding-left: 0.5rem;
  }

  .cartolina .consiglio {
    background: rgba(255, 255, 255, 0.7);
    border-left: 5px solid #3c6e71;
    padding: 0.8rem 1rem;
    border-radius: 10px;
  }

/* SPESE */
  .nota-container {
      max-width: 900px;
      width: 100%;
      background: #fdfaf5; /* carta antica */
      padding: 40px;
      border-radius: 8px;
  
      /* Effetto bordi "consumati" */
      box-shadow:
          0 10px 30px rgba(0,0,0,0.15),        /* ombra lunga — rialzo */
          inset 0 0 10px rgba(0,0,0,0.03);     /* leggera ombra interna — carta viva */
  
      /* Bordo irregolare simulato con ombra interna frastagliata */
      background-image:
          radial-gradient(circle at 5% 10%, transparent 5px, #fdfaf5 6px),
          radial-gradient(circle at 95% 10%, transparent 5px, #fdfaf5 6px),
          radial-gradient(circle at 5% 90%, transparent 5px, #fdfaf5 6px),
          radial-gradient(circle at 95% 90%, transparent 5px, #fdfaf5 6px);
      background-size: 100% 100%;
      background-repeat: no-repeat;
  
      position: relative;
      transform: rotate(-0.5deg); /* leggera inclinazione — naturale */
      transition: transform 0.3s;
  }
  
  .nota-container:hover {
      transform: rotate(0);
  }
  
  .section-title {
      text-align: center;
      font-size: 2rem;
      color: #5c4a33;
      margin-bottom: 1.5rem;
      font-weight: normal;
      letter-spacing: 1px;
  }
  
  .intro {
      text-align: center;
      margin-bottom: 2.5rem;
      font-style: italic;
      color: #555;
  }
  
  .spese-grid {
      display: grid;
      grid-template-columns: repeat(auto-fit, minmax(220px, 1fr));
      gap: 20px;
      margin: 2rem 0;
  }
  
  .spesa-item {
      background: #fcf9f3;
      padding: 25px 20px;
      border-radius: 10px;
      text-align: center;
      border: 1px solid #e9e0d0;
      transition: transform 0.2s;
  }
  
  .spesa-item:hover {
      transform: translateY(-3px);
      box-shadow: 0 4px 8px rgba(0,0,0,0.08);
  }
  
  .spesa-item h3 {
      font-size: 1.3rem;
      margin: 0 0 15px;
      color: #5c4a33;
      font-weight: 600;
  }
  
  .spesa-item p {
      font-size: 1.6rem;
      font-weight: bold;
      color: #8b5e3c;
      margin: 0;
      font-family: 'Georgia', serif;
  }
  
  .total-box {
      text-align: center;
      font-size: 1.8rem;
      font-weight: bold;
      color: #8b5e3c;
      padding: 15px;
      background: #fcf9f3;
      border-radius: 10px;
      border: 1px dashed #d0c0a0;
      margin: 2rem 0;
  }
  
  /* Effetto angoli leggermente strappati (opzionale, più avanzato) */
  .nota-container::before {
      content: "";
      position: absolute;
      top: -2px; left: -2px; right: -2px; bottom: -2px;
      background: linear-gradient(135deg, transparent 48%, rgba(0,0,0,0.05) 50%, transparent 52%);
      background-size: 20px 20px;
      pointer-events: none;
      z-index: -1;
      border-radius: 10px;
  }
  
  @media (max-width: 768px) {
      body { padding: 20px; }
      .nota-container { padding: 25px; transform: none; }
      .section-title { font-size: 1.6rem; }
  }
/* SPESE */

/* CHISIAMO */
    .hero-section {
        text-align: center;
        margin: 3rem 0 4rem;
    }

    .hero-section h1 {
        font-size: 2.5rem;
        color: #2c47a3;
        margin-bottom: 1rem;
    }

    .subtitle {
        font-size: 1.2rem;
        color: #555;
        max-width: 700px;
        margin: 0 auto;
    }

    .about-grid {
        display: grid;
        grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
        gap: 2rem;
        margin: 3rem 0;
    }

    .about-card {
        background: white;
        padding: 2rem;
        border-radius: 12px;
        box-shadow: 0 6px 16px rgba(0, 0, 0, 0.05);
        transition: all 0.3s ease;
        border: 1px solid #eee;
    }

    .about-card:hover {
        transform: translateY(-5px);
        box-shadow: 0 12px 24px rgba(0, 0, 0, 0.1);
    }

    .about-icon {
        font-size: 2.5rem;
        margin-bottom: 1rem;
        display: block;
        text-align: center;
    }

    .about-card h2 {
        color: #2c47a3;
        font-size: 1.4rem;
        margin: 0 0 1rem 0;
        text-align: center;
    }

    .about-card p {
        line-height: 1.7;
        color: #444;
        margin-bottom: 1rem;
    }

    .checklist {
        list-style: none;
        padding: 0;
        margin: 1.5rem 0 0 0;
    }
    
    .checklist li {
        padding: 0.5rem 0;
        color: #444;
    }
    
    .checklist-item {
        display: flex;
        align-items: flex-start;
        gap: 0.75rem; /* Spazio tra icona e contenuto */
    }
    
    .checklist-icon {
        flex-shrink: 0;
        color: #4a6de5;
        font-weight: bold;
        font-size: 1.1rem;
        line-height: 1.4; /* Allinea verticalmente con la prima riga del titolo */
    }
    
    .checklist-content {
        flex: 1;
        min-width: 0; /* Permette il wrapping corretto */
    }
    
    .checklist-title {
        font-weight: 600;
        margin: 0 0 0.3rem 0;
        color: inherit;
    }
    
    .checklist-desc {
        margin: 0;
        color: #666;
        font-size: 0.95rem;
        line-height: 1.6;
        padding-left: 0; /* Nessun indentazione extra — allineato con checklist-title */
    }

    .notchecklist {
        list-style: none;
        padding: 0;
        margin: 1.5rem 0 0 0;
    }

    .notchecklist li {
        padding: 0.5rem 0;
        color: #444;
        display: flex;
        align-items: center;
    }

    .notchecklist li:before {
        content: "❌";
        color: #4a6de5;
        font-weight: bold;
        margin-right: 0.75rem;
        font-size: 1.1rem;
    }
    .cta-section {
        text-align: center;
        margin-top: 2.5rem;
        padding: 2rem;
        background: #f0f7ff;
        border-radius: 12px;
        border: 1px dashed #4a6de5;
    }
    .cta-section p {
        font-size: 1.1rem;
        margin: 0;
        color: #2c47a3;
    }
    .cta-section a:not(.cta-button) {
        color: #2c47a3;
        font-weight: bold;
    }
    .cta-button {
        display: inline-block;
        padding: 0.75rem 2rem;
        background: var(--primary-color);
        color: white;
        border-radius: 8px;
        text-decoration: none;
        font-weight: 600;
        transition: background-color 0.2s;
        box-shadow: 0 3px 6px rgba(0,0,0,0.1);
    }

    .cta-button:hover {
        background-color: #3a5bc2;
        text-decoration: none;
    }



/* COMBO DOVE SIAMO STATI */
.dove-siamo-stati {
  margin: 1.5rem 0;
  text-align: center;
}
.combo-details {
  display: inline-block;
  text-align: left;
}
.combo-summary {
  background: #f8f9fa;
  padding: 0.75rem 1.25rem;
  border: 1px solid #ddd;
  border-radius: 8px;
  font-weight: 600;
  cursor: pointer;
  outline: none;
  list-style: none;
}
.combo-summary::marker,
.combo-summary::-webkit-details-marker {
  display: none;
}
.combo-summary:hover {
  background: #e9ecef;
}
.combo-content {
  margin-top: 0.5rem;
  padding: 0.75rem;
  border: 1px solid #ddd;
  border-top: none;
  border-radius: 0 0 8px 8px;
  background: white;
}
.combo-list {
  list-style: none;
  padding: 0;
  margin: 0;
  columns: 2;
  column-gap: 1.5rem;
}
.combo-list li {
  break-inside: avoid;
  margin-bottom: 0.5rem;
}
.combo-list a {
  text-decoration: none;
  color: #0d6efd;
  font-weight: 500;
}
.combo-list a:hover {
  text-decoration: underline;
}

/* BTN TORNA SU*/
.back-to-top-btn {
  position: fixed;
  bottom: 20px;
  right: 20px;
  width: 48px;
  height: 48px;
  background-color: #0d6efd;
  color: white;
  border: none;
  border-radius: 6px;
  display: flex;
  align-items: center;
  justify-content: center;
  cursor: pointer;
  box-shadow: 0 2px 6px rgba(0,0,0,0.15);
  opacity: 0;
  visibility: hidden;
  transition: opacity 0.3s ease, visibility 0.3s ease, transform 0.2s ease, box-shadow 0.2s ease;
  z-index: 1000;
}

.back-to-top-btn.visible {
  opacity: 1;
  visibility: visible;
}

.back-to-top-btn:hover {
  background-color: #0b5ed7;
  transform: translateY(-2px);
  box-shadow: 0 4px 8px rgba(0,0,0,0.2);
}

.back-to-top-btn:active {
  transform: translateY(0);
  box-shadow: 0 2px 4px rgba(0,0,0,0.15);
}

.image-label {
    position: absolute;
    bottom: 12px;
    left: 12px;
    background: rgba(0, 0, 0, 0.6);
    color: white;
    padding: 6px 12px;
    border-radius: 6px;
    font-size: 0.95rem;
    font-weight: 600;
    backdrop-filter: blur(2px);
    -webkit-backdrop-filter: blur(2px);
    z-index: 2;
}

.day-image {
    position: relative;
}
