/* ============================================================
   DEEPROOTS.CSS — Stile della pagina del ritiro
   "Deep Roots, Open Hearts" (Belluno, 24-27 Ottobre 2026).
   Estratto dal file HTML per separare contenuto e stile e
   permettere la cache del browser. Vedi MINIGUIDA_AMMINISTRAZIONE.md
   ============================================================ */

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

        body {
            background-color: #fefaf5;
            font-family: 'Inter', sans-serif;
            color: #2c241a;
            line-height: 1.5;
            scroll-behavior: smooth;
        }

        .container {
            max-width: 1280px;
            margin: 0 auto;
            padding: 0 24px;
        }

        /* Typography */
        h1, h2, h3, .logo-text, .quote-text, .section-title {
            font-family: 'Cormorant Garamond', serif;
            font-weight: 500;
            letter-spacing: -0.01em;
        }

        h1 {
            font-size: 3.2rem;
            line-height: 1.2;
            margin-bottom: 1rem;
            font-weight: 600;
        }

        h2 {
            font-size: 2.2rem;
            margin-bottom: 1.2rem;
            border-left: 4px solid #b87c4f;
            padding-left: 1rem;
        }

        h3 {
            font-size: 1.6rem;
            margin-bottom: 0.75rem;
            font-weight: 600;
        }

        h4 {
            font-family: 'Inter', sans-serif;
            font-size: 1.15rem;
            font-weight: 700;
            color: #9b623b;
            margin: 22px 0 6px;
        }

        .section {
            padding: 70px 0;
            border-bottom: 1px solid #e6ddd2;
        }

        .section:last-child {
            border-bottom: none;
        }

        /* Buttons */
        .btn {
            display: inline-block;
            background-color: #b87c4f;
            color: white;
            padding: 12px 32px;
            border-radius: 40px;
            text-decoration: none;
            font-weight: 600;
            font-size: 1rem;
            transition: all 0.3s ease;
            box-shadow: 0 2px 6px rgba(0,0,0,0.05);
            border: none;
            cursor: pointer;
        }

        .btn:hover {
            background-color: #9b623b;
            transform: translateY(-2px);
            box-shadow: 0 10px 20px rgba(0,0,0,0.1);
        }

        .btn-outline {
            background: transparent;
            border: 1.5px solid #b87c4f;
            color: #b87c4f;
        }

        .btn-outline:hover {
            background: #b87c4f;
            color: white;
        }

        /* Header */
        .hero {
            display: flex;
            flex-wrap: wrap;
            align-items: center;
            gap: 40px;
            padding: 40px 0 60px;
        }

        .hero-content {
            flex: 1.2;
        }

        .hero-badge {
            font-size: 1.2rem;
            text-transform: uppercase;
            letter-spacing: 3px;
            color: #b87c4f;
            font-weight: 700;
            margin-bottom: 1rem;
        }

        .hero-dates {
            font-size: 1.2rem;
            font-weight: 500;
            margin: 1rem 0 1.5rem;
            color: #5a3e2a;
        }

        .hero-image-area {
            flex: 1;
            border-radius: 28px;
            overflow: hidden;
            box-shadow: 0 20px 35px -12px rgba(0,0,0,0.2);
            height: 400px;
        }

        .hero-img {
            width: 100%;
            height: 100%;
            object-fit: cover;
            transition: transform 0.5s ease;
        }

        /* image grid */
        .image-grid {
            display: grid;
            grid-template-columns: repeat(auto-fit, minmax(240px, 1fr));
            gap: 24px;
            margin-top: 32px;
        }

        .img-card {
            border-radius: 24px;
            overflow: hidden;
            box-shadow: 0 8px 20px rgba(0,0,0,0.08);
            transition: all 0.3s;
            background: #fff6ef;
        }

        .img-card img {
            width: 100%;
            height: 220px;
            object-fit: cover;
            display: block;
            transition: transform 0.4s ease;
        }

        .img-card:hover img {
            transform: scale(1.02);
        }

        .caption {
            padding: 12px 16px;
            font-size: 0.85rem;
            color: #6f5a48;
            background: white;
            font-style: italic;
        }

        .two-col {
            display: flex;
            flex-wrap: wrap;
            gap: 40px;
            margin: 30px 0;
        }

        .col {
            flex: 1;
        }

        /* quote / block */
        .quote-block {
            background: #f3ede7;
            padding: 36px 32px;
            border-radius: 32px;
            margin: 40px 0;
            font-family: 'Cormorant Garamond', serif;
            font-size: 1.4rem;
            font-style: italic;
            color: #3e2c1c;
            border-left: 8px solid #b87c4f;
        }

        .teacher-card {
            display: flex;
            flex-wrap: wrap;
            gap: 28px;
            background: #fff9f4;
            border-radius: 28px;
            padding: 28px;
            margin: 30px 0;
            align-items: center;
        }

        .teacher-img-placeholder {
            width: 130px;
            height: 130px;
            background: #ddcebe;
            border-radius: 50%;
            display: flex;
            align-items: center;
            justify-content: center;
            font-size: 3rem;
            color: #a57048;
        }

        .info-list {
            list-style: none;
            margin: 20px 0;
        }

        .info-list li {
            margin-bottom: 12px;
            display: flex;
            align-items: center;
            gap: 12px;
        }

        .info-list i {
            width: 28px;
            color: #b87c4f;
            font-size: 1.2rem;
        }

        .price-card {
            background: white;
            border-radius: 32px;
            padding: 32px;
            box-shadow: 0 15px 30px rgba(0,0,0,0.05);
            border: 1px solid #efe3d8;
        }

        .price-number {
            font-size: 2.8rem;
            font-weight: 700;
            color: #b87c4f;
            font-family: 'Inter', sans-serif;
        }

        .small-note {
            font-size: 0.85rem;
            color: #7f6a58;
            margin-top: 12px;
        }

        /* Programma: giorni */
        .day-block {
            margin-bottom: 34px;
        }

        .day-block h4.day-title {
            font-family: 'Cormorant Garamond', serif;
            font-size: 1.5rem;
            font-weight: 600;
            color: #2c241a;
            border-bottom: 2px solid #e6ddd2;
            padding-bottom: 8px;
            margin-bottom: 14px;
        }

        .schedule-item {
            display: flex;
            gap: 16px;
            padding: 10px 0;
            border-bottom: 1px dashed #e6ddd2;
        }

        .schedule-item:last-child {
            border-bottom: none;
        }

        .schedule-time {
            flex: 0 0 100px;
            font-weight: 700;
            color: #b87c4f;
            font-size: 0.95rem;
        }

        .schedule-text strong {
            display: block;
            margin-bottom: 2px;
        }

        .schedule-text p {
            font-size: 0.92rem;
            color: #5a4a3a;
        }

        footer {
            background: #2c241a;
            color: #e9dfd3;
            padding: 48px 0 32px;
            margin-top: 20px;
        }

        .footer-inner {
            display: flex;
            flex-wrap: wrap;
            justify-content: space-between;
            align-items: center;
            gap: 20px;
        }

        .contact-email {
            font-size: 1.2rem;
            font-weight: 500;
        }

        .contact-email a {
            color: #e9b185;
            text-decoration: none;
        }

        /* Overlay locandina: nuovo messaggio Prossimamente a Belluno */
        #locandina-overlay {
            position: fixed;
            top: 0;
            left: 0;
            width: 100%;
            height: 100%;
            background-color: rgba(0, 0, 0, 0.85);
            display: flex;
            justify-content: center;
            align-items: center;
            z-index: 9999;
            cursor: pointer;
            transition: opacity 0.5s ease;
        }
        
        #locandina-overlay img {
            max-width: 90%;
            max-height: 90%;
            width: auto;
            height: auto;
            border-radius: 24px;
            box-shadow: 0 20px 40px rgba(0,0,0,0.3);
            animation: fadeInScale 0.4s ease-out;
        }
        
        @keyframes fadeInScale {
            from {
                opacity: 0;
                transform: scale(0.95);
            }
            to {
                opacity: 1;
                transform: scale(1);
            }
        }
        
        #locandina-overlay.hide {
            opacity: 0;
            pointer-events: none;
        }

        @media (max-width: 800px) {
            h1 { font-size: 2.4rem; }
            h2 { font-size: 1.8rem; }
            .hero { flex-direction: column; }
            .hero-image-area { height: 300px; width: 100%; }
            .section { padding: 50px 0; }
            .schedule-item { flex-direction: column; gap: 4px; }
            .schedule-time { flex: none; }
        }
    