BlackMount

<!DOCTYPE html>
<html lang="it">
<head>
    <meta charset="UTF-8">
    <meta name="viewport" content="width=device-width, initial-scale=1.0">
    <title>Alessia & Ugo | 11 Aprile 2026</title>
    <link rel="preconnect" href="https://fonts.googleapis.com">
    <link rel="preconnect" href="https://fonts.gstatic.com" crossorigin>
    <link href="https://fonts.googleapis.com/css2?family=Cormorant+Garamond:wght@300;400;500&family=Montserrat:wght@300;400&display=swap" rel="stylesheet">
    <style>
        * {
            margin: 0;
            padding: 0;
            box-sizing: border-box;
        }

        body {
            font-family: 'Montserrat', sans-serif;
            background-color: #ffffff;
            color: #4a4a4a;
            line-height: 1.6;
            overflow-x: hidden;
        }

        .container {
            max-width: 1200px;
            margin: 0 auto;
        }

        header {
            text-align: center;
            padding: 80px 20px 60px;
            animation: fadeIn 1.5s ease-in;
        }

        .names {
            font-family: 'Cormorant Garamond', serif;
            font-size: clamp(3rem, 8vw, 5rem);
            font-weight: 300;
            color: #6b5b4d;
            letter-spacing: 3px;
            margin-bottom: 20px;
        }

        .ampersand {
            font-style: italic;
            font-size: 0.8em;
            opacity: 0.7;
            margin: 0 15px;
        }

        .divider {
            width: 100px;
            height: 1px;
            background: linear-gradient(to right, transparent, #c9b8a8, transparent);
            margin: 30px auto;
        }

        .date {
            font-family: 'Cormorant Garamond', serif;
            font-size: clamp(1.3rem, 4vw, 2rem);
            color: #8b7968;
            letter-spacing: 4px;
            font-weight: 400;
        }

        .hero-image {
            width: 100%;
            height: 60vh;
            min-height: 400px;
            background-size: cover;
            background-position: center;
            position: relative;
            overflow: hidden;
        }

        .hero-image::after {
            content: '';
            position: absolute;
            bottom: 0;
            left: 0;
            right: 0;
            height: 100px;
            background: linear-gradient(to top, #ffffff, transparent);
        }

        .content-wrapper {
            max-width: 900px;
            margin: 0 auto;
            padding: 0 20px;
        }

        .intro-text {
            text-align: center;
            padding: 60px 20px 40px;
            animation: fadeIn 2s ease-in;
        }

        .intro-text p {
            font-family: 'Cormorant Garamond', serif;
            font-size: clamp(1.2rem, 3vw, 1.6rem);
            color: #6b5b4d;
            line-height: 1.8;
            font-weight: 300;
        }

        .info-section {
            text-align: center;
            padding: 40px 20px;
            animation: fadeIn 2s ease-in;
        }

        .info-title {
            font-family: 'Cormorant Garamond', serif;
            font-size: clamp(1.8rem, 4vw, 2.5rem);
            color: #6b5b4d;
            margin-bottom: 20px;
            font-weight: 400;
        }

        .info-details {
            font-size: clamp(1.05rem, 2.5vw, 1.2rem);
            color: #7a7a7a;
            line-height: 1.9;
            margin-bottom: 10px;
        }

        .venue {
            font-weight: 400;
            color: #6b5b4d;
            margin-top: 15px;
            font-size: clamp(1.1rem, 3vw, 1.3rem);
        }

        .location-note {
            font-size: 1rem;
            color: #999;
            font-style: italic;
            margin-top: 8px;
        }

        .image-grid {
            display: grid;
            grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
            gap: 20px;
            padding: 60px 20px;
            max-width: 1200px;
            margin: 0 auto;
        }

        .grid-item {
            position: relative;
            overflow: hidden;
            border-radius: 8px;
            aspect-ratio: 4/3;
            box-shadow: 0 4px 20px rgba(0,0,0,0.08);
            transition: transform 0.4s ease, box-shadow 0.4s ease;
        }

        .grid-item:hover {
            transform: translateY(-5px);
            box-shadow: 0 8px 30px rgba(0,0,0,0.12);
        }

        .grid-item img {
            width: 100%;
            height: 100%;
            object-fit: cover;
            transition: transform 0.6s ease;
        }

        .grid-item:hover img {
            transform: scale(1.05);
        }

        .cta-section {
            text-align: center;
            padding: 80px 20px;
            background: linear-gradient(to bottom, #ffffff, #fafaf8);
            animation: fadeIn 2.5s ease-in;
        }

        .cta-text {
            font-family: 'Cormorant Garamond', serif;
            font-size: clamp(1.3rem, 3vw, 1.7rem);
            color: #6b5b4d;
            margin-bottom: 40px;
            line-height: 1.7;
        }

        .whatsapp-btn {
            display: inline-block;
            padding: 20px 60px;
            background-color: #6b5b4d;
            color: #ffffff;
            text-decoration: none;
            font-size: 1.05rem;
            letter-spacing: 2px;
            border-radius: 50px;
            transition: all 0.3s ease;
            font-weight: 400;
            box-shadow: 0 4px 20px rgba(107, 91, 77, 0.25);
        }

        .whatsapp-btn:hover {
            background-color: #8b7968;
            transform: translateY(-3px);
            box-shadow: 0 8px 30px rgba(107, 91, 77, 0.35);
        }

        .whatsapp-btn:active {
            transform: translateY(0);
        }

        footer {
            text-align: center;
            padding: 50px 20px 40px;
            font-size: 0.9rem;
            color: #aaa;
            border-top: 1px solid #f0f0f0;
            margin-top: 40px;
        }

        .ornament {
            font-size: 1.8rem;
            color: #c9b8a8;
            margin: 30px 0;
            opacity: 0.6;
        }

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

        @media (max-width: 768px) {
            .hero-image {
                height: 50vh;
                min-height: 350px;
            }

            .image-grid {
                grid-template-columns: 1fr;
                gap: 15px;
                padding: 40px 15px;
            }

            header {
                padding: 60px 20px 40px;
            }

            .divider {
                width: 80px;
            }

            .whatsapp-btn {
                padding: 18px 45px;
                font-size: 1rem;
            }
        }

        /* WordPress optimization */
        .wp-block {
            max-width: 100%;
        }
    </style>
</head>
<body>
    <header>
        <h1 class="names">
            Alessia <span class="ampersand">&</span> Ugo
        </h1>
        <div class="divider"></div>
        <p class="date">11 APRILE 2026</p>
    </header>

    <div class="hero-image" style="background-image: url('https://blackmount.it/wp-content/uploads/2026/01/hands-of-loving-couple-holding-a-wedding-bouquet-o-2025-01-09-03-15-46-utc-scaled.jpg');"></div>

    <div class="content-wrapper">
        <div class="intro-text">
            <p>
                Con grande gioia vi invitiamo a celebrare insieme a noi<br>
                il giorno più importante delle nostre vite.
            </p>
        </div>

        <div class="info-section">
            <div class="ornament">✦</div>
            <h2 class="info-title">Cerimonia</h2>
            <p class="info-details">Sabato 11 Aprile 2026</p>
            <p class="info-details">Ore 11:30</p>
            <p class="info-details venue">Castello del Solacium</p>
            <p class="location-note">Castello Federiciano, Siracusa</p>
            <div class="ornament">✦</div>
        </div>
    </div>

    <div class="image-grid">
        <div class="grid-item">
            <img src="https://blackmount.it/wp-content/uploads/2026/01/bride-and-groom-with-guests-at-wedding-reception-o-2024-10-18-08-43-38-utc-scaled.jpg" alt="Celebration">
        </div>
        <div class="grid-item">
            <img src="https://blackmount.it/wp-content/uploads/2026/01/candles-on-the-table-2025-03-06-03-20-36-utc-scaled.jpg" alt="Details">
        </div>
        <div class="grid-item">
            <img src="https://blackmount.it/wp-content/uploads/2026/01/an-elderly-grandmother-celebrating-birthday-with-f-2024-10-18-08-55-12-utc-scaled.jpg" alt="Family">
        </div>
    </div>

    <div class="cta-section">
        <p class="cta-text">
            La vostra presenza è il regalo più grande.<br>
            Vi preghiamo di confermare la partecipazione entro il 28 febbraio 2026.
        </p>
        <a href="https://wa.me/393291732883?text=Ciao%2C%20confermo%20la%20mia%20presenza%20al%20matrimonio%20di%20Alessia%20e%20Ugo%20l'11%20aprile%202026" 
           class="whatsapp-btn" 
           target="_blank" 
           rel="noopener noreferrer">
            CONFERMA PRESENZA
        </a>
    </div>

    <footer>
        <p>Con affetto e gratitudine,<br>Alessia e Ugo</p>
    </footer>
</body>
</html>