
.zungu {
    font-size: 2.5rem;
    color: #d6aa32;
    margin-bottom: 80px;
    margin-top: 120px;
    font-weight: 200;
    letter-spacing: 1px;
    font-family: "Gilda Display", serif;
  }
  .zungu h4::after {
    content: "";
    display: block;
    width: 200px;
    height: 50px;
    margin: 0 auto;
    background-image: url(../images/decoro.svg);
    background-size: contain;
    background-repeat: no-repeat;
    background-position: center;
    margin-top: 20px;
}
.content h2::after {
    content: "";
    display: block;
    width: 200px;
    height: 50px;
    margin: 0 auto;
    background-image: url(../images/decoro.svg);
    background-size: contain;
    background-repeat: no-repeat;
    background-position: center;
    margin-top: 20px;
}

.dove-section {
            max-width: 1450px;
            margin: 0 auto;
            padding: 80px 20px;
        }

        .main-content {
            display: grid;
            grid-template-columns: 1fr 1fr;
            gap: 60px;
            margin-bottom: 80px;
            align-items: center;
            opacity: 0;
            transform: translateX(-150px);
            transition: all 1s ease;
        }

        .main-content.animate {
            opacity: 1;
            transform: translateX(0);
        }

        .image-container {
            position: relative;
            height: 100%;
            overflow: hidden;
            box-shadow: 0 20px 40px rgba(0,0,0,0.1);
        }

        .main-image {
            width: 100%;
            height: 100%;
            object-fit: cover;
            transition: transform 0.6s ease;
        }

        .main-image:hover {
            transform: scale(1.05);
        }

        .content {
            padding: 20px 0;
        }

        .content h2 {
            font-size: 2.5rem;
            color: #2c3e35;
            margin-bottom: 30px;
            font-weight: 300;
            letter-spacing: 1px;
             font-family: "Gilda Display", serif;
        }

        .content p {
            color: #6b7c70;
            font-size: 1.1rem;
            line-height: 1.8;
            margin-bottom: 20px;
            text-align: justify;
             font-family: "Gilda Display", serif;
        }

        .gallery-grid {
            display: grid;
            grid-template-columns: repeat(3, 1fr);
            gap: 30px;
            margin-top: 40px;
        }

        .gallery-item {
            background: white;
            overflow: hidden;
            box-shadow: 0 15px 35px rgba(0,0,0,0.08);
            transition: all 0.4s ease;
            position: relative;
            opacity: 0;
            transform: translateY(80px);
        }

        .gallery-item.animate {
            opacity: 1;
            transform: translateY(0);
        }

        .gallery-item:nth-child(1).animate {
            transition-delay: 0.2s;
        }

        .gallery-item:nth-child(2).animate {
            transition-delay: 0.5s;
        }

        .gallery-item:nth-child(3).animate {
            transition-delay: 0.9s;
        }

        .gallery-item:hover {
            transform: translateY(-10px);
            box-shadow: 0 25px 50px rgba(0,0,0,0.15);
        }

        .gallery-item img {
            width: 100%;
            height: 250px;
            object-fit: cover;
            transition: transform 0.4s ease;
        }

        .gallery-item:hover img {
            transform: scale(1.1);
        }

        .gallery-content {
            padding: 30px 25px;
        }

        .gallery-content h3 {
            font-size: 1.6rem;
            color: #2c3e35;
            margin-bottom: 22px !important;
            font-family: "Gilda Display", serif;
            font-weight: 500;
        }

        .gallery-content p {
            color: #7a8a7f;
            font-size: 0.95rem;
            line-height: 1.6;
            text-align: justify;
        }
 .gallery-content a {
            color: #b49a50;
            font-size: 0.95rem;
            text-decoration: none;
            font-weight: 400;
        }
        .overlay {
            position: absolute;
            top: 0;
            left: 0;
            right: 0;
            bottom: 0;
            background: linear-gradient(135deg, rgba(44,62,53,0.8), rgba(107,124,112,0.6));
            opacity: 0;
            transition: opacity 0.4s ease;
            display: flex;
            align-items: center;
            justify-content: center;
        }

        .gallery-item:hover .overlay {
            opacity: 1;
        }

        .overlay-text {
            color: white;
            font-size: 1.1rem;
            font-weight: 300;
            text-align: center;
            transform: translateY(20px);
            transition: transform 0.4s ease;
        }

        .gallery-item:hover .overlay-text {
            transform: translateY(0);
        }
@media (max-width: 1024px) {
                 
            .gallery-grid {
                grid-template-columns: repeat(2, 1fr);
                gap: 20px;
            }
            
           .main-content {

    grid-template-columns: 1fr;
 
}
        }

        @media (max-width: 768px) {

.zungu {
            font-size: 1.5rem;
            color: #2c3e35;
            margin-bottom: 20px;
            margin-top: 40px;
            font-weight: 40;
            letter-spacing: 1px;
            font-family: "Gilda Display", serif;
        }

            .content p {
       font-size: 1rem;
 
}
            .main-content {
                grid-template-columns: 1fr;
                gap: 40px;
                margin-bottom: 10px;
            }
            
            .gallery-grid {
                grid-template-columns: 1fr;
                gap: 20px;
            }
            
            .content h2 {
                font-size: 2rem;
            }
            
            .dove-section {
                padding: 60px 15px;
            }
        }

        @media (max-width: 480px) {
            .gallery-grid {
                grid-template-columns: 1fr;
            }
            
            .content h2 {
                font-size: 1.8rem;
            }
        }



.gallery-container {
            max-width: 1200px;
            margin: 0 auto;
            background: white;
            overflow: hidden;
                    }

        .gallery-header {
            padding: 10px;
            text-align: center;
            color: rgb(151, 120, 16);
        }

        .gallery-header h1 {
            font-size: 2.5rem;
            margin-bottom: 10px;
            font-weight: 300;
        }

        .gallery-header p {
            font-size: 1.1rem;
            opacity: 0.9;
        }

        /* DESKTOP GALLERY - Griglia normale */
        .gallery {
            display: grid;
            grid-template-columns: repeat(auto-fit, minmax(400px, 1fr));
            gap: 20px;
            padding: 10px;
        }

        .gallery img {
            width: 100%;
            height: 200px;
            object-fit: cover;
            cursor: pointer;
            transition: transform 0.3s ease, box-shadow 0.3s ease;
        }

        .gallery img:hover {
            transform: translateY(-5px);
            box-shadow: 0 15px 30px rgba(0,0,0,0.2);
        }

        /* MOBILE SLIDER */
        .mobile-slider {
            display: none;
            position: relative;
            overflow: hidden;
        }

        .gallery-track {
            display: flex;
            transition: transform 0.3s ease;
        }

        .gallery-track img {
            width: 100%;
            height: 300px;
            object-fit: cover;
            flex-shrink: 0;
        }

        .mobile-nav {
            position: absolute;
            top: 50%;
            transform: translateY(-50%);
            background: rgba(0,0,0,0.7);
            color: white;
            border: none;
            width: 50px;
            height: 50px;
            cursor: pointer;
            display: flex;
            align-items: center;
            justify-content: center;
            font-size: 1.2rem;
            z-index: 10;
            transition: all 0.3s ease;
        }

        .mobile-nav:hover {
            background: rgba(0,0,0,0.9);
            transform: translateY(-50%) scale(1.1);
        }

        .mobile-nav:active {
            transform: translateY(-50%) scale(0.95);
        }

        #mobilePrev {
            left: 10px;
        }

        #mobileNext {
            right: 10px;
        }

        .mobile-counter {
            position: absolute;
            bottom: 15px;
            left: 50%;
            transform: translateX(-50%);
            background: rgba(0,0,0,0.7);
            color: white;
            padding: 8px 15px;
            font-size: 0.9rem;
            z-index: 10;
        }

        /* LIGHTBOX */
        .lightbox {
            display: none;
            position: fixed;
            top: 0;
            left: 0;
            width: 100%;
            height: 100%;
           background: #7f681ec7;
            z-index: 1000;
            justify-content: center;
            align-items: center;
        }

        .lightbox.open {
            display: flex;
        }

        .lightbox img {
            max-width: 90%;
            max-height: 90%;
            object-fit: contain;
            border-radius: 10px;
        }

        .lightbox-btn {
            position: absolute;
            background: rgba(255,255,255,0.2);
            color: white;
            border: 2px solid rgba(255,255,255,0.3);
            width: 60px;
            height: 60px;
            border-radius: 50%;
            cursor: pointer;
            display: flex;
            align-items: center;
            justify-content: center;
            font-size: 1.5rem;
            transition: all 0.3s ease;
            backdrop-filter: blur(10px);
        }

        .lightbox-btn:hover {
            background: rgba(255,255,255,0.3);
            transform: scale(1.1);
        }

        #lightboxClose {
            top: 30px;
            right: 30px;
        }

        #lightboxPrev {
            left: 30px;
            top: 50%;
            transform: translateY(-50%);
        }

        #lightboxNext {
            right: 30px;
            top: 50%;
            transform: translateY(-50%);
        }

        /* RESPONSIVE */
        @media (max-width: 768px) {
           
            .gallery-header {
                padding: 20px;
            }

            .gallery-header h1 {
                font-size: 2rem;
            }

            /* Nascondi griglia desktop */
            .gallery {
                display: none;
            }

            /* Mostra slider mobile */
            .mobile-slider {
                display: block;
            }

            .lightbox-btn {
                width: 50px;
                height: 50px;
                font-size: 1.2rem;
            }

            #lightboxClose {
                top: 20px;
                right: 20px;
            }

            #lightboxPrev {
                left: 20px;
            }

            #lightboxNext {
                right: 20px;
            }
        }

        @media (max-width: 480px) {
            .gallery-header h1 {
                font-size: 1.5rem;
            }

            .gallery-header p {
                font-size: 1rem;
            }

            .mobile-nav {
                width: 40px;
                height: 40px;
                font-size: 1rem;
                display: none;
            }

            .gallery-track img {
                height: 250px;
            }
        }