@import url("https://fonts.googleapis.com/css2?family=Playfair+Display:wght@400;700&family=Inter:wght@300;400;500&display=swap");

:root {
    --yellow: #ffd60a;
    --lilac: #b5a7d6;
    --dark-lilac: #8b7ba8;
    --cream: #fefef8;
    --text: #2a2a2a;
}

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

@keyframes fade-in {
    from {
        opacity: 0;
    }
    to {
        opacity: 1;
    }
}

@keyframes pulse {
    0%,
    100% {
        opacity: 1;
    }
    50% {
        opacity: 0.7;
    }
}

@keyframes glow {
    0%,
    100% {
        box-shadow: 0 12px 48px rgba(0, 0, 0, 0.08);
    }
    50% {
        box-shadow: 0 12px 48px rgba(139, 123, 168, 0.15);
    }
}

@keyframes shimmer {
    0% {
        background-position: -1000px 0;
    }
    100% {
        background-position: 1000px 0;
    }
}

body {
    font-family:
        "Inter",
        -apple-system,
        BlinkMacSystemFont,
        "Segoe UI",
        sans-serif;
    background: linear-gradient(135deg, var(--cream) 0%, #f5f0ff 100%);
    min-height: 100vh;
    display: flex;
    align-items: center;
    justify-content: center;
    color: var(--text);
    padding: 20px;
}

main {
    max-width: 500px;
    width: 100%;
    padding: 50px 30px;
    display: flex;
    flex-direction: column;
    gap: 28px;
    align-items: center;
    justify-content: center;
    background: white;
    border-radius: 12px;
    box-shadow: 0 12px 48px rgba(0, 0, 0, 0.08);
    animation: fade-in 1s ease-out;
    border: 1px solid rgba(181, 167, 214, 0.2);
}

h1 {
    font-family: "Playfair Display", serif;
    font-size: 3.5rem;
    font-weight: 700;
    text-align: center;
    line-height: 1.1;
    letter-spacing: -0.02em;
    color: var(--dark-lilac);
    animation: fade-in 1s ease-out 0.1s both;
}

.date {
    font-size: 1.3rem;
    font-weight: 500;
    color: var(--lilac);
    text-align: center;
    letter-spacing: 2px;
    animation: fade-in 1s ease-out 0.2s both;
}

p {
    font-size: 1rem;
    font-weight: 400;
    color: #666;
    text-align: center;
    letter-spacing: 0.5px;
    line-height: 1.6;
    animation: fade-in 1s ease-out 0.3s both;
    max-width: 90%;
}

.map {
    width: 100%;
    aspect-ratio: 1 / 0.75;
    border-radius: 12px;
    overflow: hidden;
    box-shadow: 0 8px 24px rgba(181, 167, 214, 0.3);
    animation:
        fade-in 1s ease-out 0.3s both,
        glow 3s ease-in-out 1s infinite;
    transition:
        transform 0.3s ease,
        box-shadow 0.3s ease;
}

.map:hover {
    transform: translateY(-4px);
    box-shadow: 0 12px 32px rgba(181, 167, 214, 0.25);
}

.map iframe {
    width: 100%;
    height: 100%;
    border: none;
}

@media (max-width: 600px) {
    main {
        padding: 40px 24px;
        gap: 24px;
    }

    h1 {
        font-size: 2.5rem;
    }

    p {
        font-size: 0.95rem;
    }

    .date {
        font-size: 1.1rem;
    }

    .map {
        aspect-ratio: 1 / 0.8;
    }

    .cta-button {
        padding: 12px 28px;
        font-size: 0.95rem;
    }
}

.cta-button {
    padding: 14px 32px;
    background: linear-gradient(135deg, var(--dark-lilac), var(--lilac));
    color: white;
    border: none;
    border-radius: 8px;
    font-size: 1rem;
    font-weight: 500;
    cursor: pointer;
    text-decoration: none;
    display: inline-block;
    transition: all 0.3s ease;
    animation:
        fade-in 1s ease-out 0.4s both,
        pulse 2s ease-in-out 1.4s infinite;
    letter-spacing: 0.5px;
    box-shadow: 0 6px 20px rgba(139, 123, 168, 0.3);
}

.cta-button:hover {
    transform: translateY(-2px);
    box-shadow: 0 8px 28px rgba(139, 123, 168, 0.4);
}

.cta-button:active {
    transform: translateY(0);
}

.decorative-line {
    width: 40px;
    height: 2px;
    background: linear-gradient(90deg, transparent, var(--lilac), transparent);
    animation: fade-in 1s ease-out 0.15s both;
}

.coming-soon {
    font-size: 0.9rem;
    font-weight: 400;
    color: var(--lilac);
    text-align: center;
    letter-spacing: 1px;
    font-style: italic;
    animation: fade-in 1s ease-out 0.5s both;
}
