:root {
    --color-primary: #2d1b4e;
    --color-gold: #d4af37;
    --color-cream: #faf8f3;
    --color-text: #1a1a1a;
    --color-text-light: #5a5a5a;
    --font-display: 'Playfair Display', serif;
    --font-body: 'Source Sans 3', sans-serif;
}

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

body {
    font-family: var(--font-body);
    line-height: 1.7;
    color: var(--color-text);
    background: var(--color-cream);
    position: relative;
}

body::before {
    content: '';
    position: fixed;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background:
        radial-gradient(circle at 20% 50%, rgba(212, 175, 55, 0.08) 0%, transparent 50%),
        radial-gradient(circle at 80% 80%, rgba(45, 27, 78, 0.05) 0%, transparent 50%);
    pointer-events: none;
    z-index: 0;
}

main {
    max-width: 1000px;
    margin: 0 auto;
    padding: 4rem 2rem;
    position: relative;
    z-index: 1;
}

.hero {
    text-align: center;
    margin-bottom: 5rem;
    animation: fadeIn 1.2s ease-out;
}

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

.hero h1 {
    font-family: var(--font-display);
    font-size: clamp(2.5rem, 6vw, 4.5rem);
    font-weight: 700;
    margin-bottom: 1.5rem;
    color: var(--color-primary);
    letter-spacing: -0.02em;
    line-height: 1.1;
}

.subtitle {
    font-size: clamp(1.1rem, 2.5vw, 1.4rem);
    color: var(--color-text-light);
    max-width: 700px;
    margin: 0 auto;
    font-weight: 300;
    line-height: 1.6;
}

.cta {
    display: flex;
    flex-direction: column;
    gap: 1.5rem;
    margin-bottom: 5rem;
    animation: fadeIn 1.2s ease-out 0.3s backwards;
}

.btn {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 0.75rem;
    text-align: center;
    text-decoration: none;
    padding: 1.25rem 2rem;
    border-radius: 2px;
    font-weight: 600;
    font-family: var(--font-body);
    transition: all 0.4s cubic-bezier(0.4, 0, 0.2, 1);
    position: relative;
    overflow: hidden;
    font-size: 1rem;
    letter-spacing: 0.5px;
}

.btn svg {
    flex-shrink: 0;
    transition: transform 0.4s cubic-bezier(0.4, 0, 0.2, 1);
}

.btn::before {
    content: '';
    position: absolute;
    top: 0;
    left: -100%;
    width: 100%;
    height: 100%;
    background: linear-gradient(90deg, transparent, rgba(255,255,255,0.2), transparent);
    transition: left 0.6s;
}

.btn:hover::before {
    left: 100%;
}

.btn:hover svg {
    transform: scale(1.1);
}

.btn-primary {
    background: #25D366;
    color: white;
    box-shadow: 0 4px 20px rgba(37, 211, 102, 0.3);
}

.btn-primary:hover {
    box-shadow: 0 6px 30px rgba(37, 211, 102, 0.4);
    transform: translateY(-2px);
}

.btn-secondary {
    background: #0088cc;
    color: white;
    box-shadow: 0 4px 20px rgba(0, 136, 204, 0.3);
}

.btn-secondary:hover {
    box-shadow: 0 6px 30px rgba(0, 136, 204, 0.4);
    transform: translateY(-2px);
}

.btn-tertiary {
    background: var(--color-primary);
    color: var(--color-gold);
    box-shadow: 0 4px 20px rgba(45, 27, 78, 0.3);
    border: 1px solid var(--color-gold);
}

.btn-tertiary:hover {
    box-shadow: 0 6px 30px rgba(212, 175, 55, 0.4);
    transform: translateY(-2px);
}

.timeline-preview {
    margin-bottom: 5rem;
    background: white;
    border-radius: 0;
    padding: 3rem 2.5rem;
    box-shadow: 0 10px 40px rgba(0,0,0,0.08);
    border-top: 3px solid var(--color-gold);
    position: relative;
    animation: fadeIn 1.2s ease-out 0.6s backwards;
}

.timeline-preview::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 3px;
    height: 100%;
    background: linear-gradient(180deg, var(--color-gold), transparent);
}

.timeline-preview h2 {
    text-align: center;
    margin-bottom: 2.5rem;
    color: var(--color-primary);
    font-family: var(--font-display);
    font-weight: 600;
    font-size: clamp(1.8rem, 4vw, 2.5rem);
    letter-spacing: -0.01em;
}

.events {
    display: flex;
    flex-direction: column;
    gap: 1rem;
}

.event {
    display: flex;
    gap: 1.5rem;
    padding: 1.25rem 1.5rem;
    background: linear-gradient(135deg, #ffffff 0%, #fdfcfa 100%);
    border-radius: 0;
    border-left: 2px solid var(--color-gold);
    box-shadow: 0 2px 8px rgba(0,0,0,0.04);
    transition: all 0.3s ease;
}

.event:hover {
    box-shadow: 0 4px 16px rgba(212, 175, 55, 0.15);
    border-left-width: 4px;
}

.event .time {
    font-weight: 600;
    color: var(--color-gold);
    min-width: 120px;
    font-family: var(--font-body);
    font-size: 0.95rem;
}

.event .title {
    color: var(--color-text);
    font-family: var(--font-display);
    font-weight: 400;
    font-size: 1.05rem;
}

.info {
    text-align: center;
    padding: 3rem 2.5rem;
    background: white;
    border-radius: 0;
    box-shadow: 0 10px 40px rgba(0,0,0,0.08);
    border-bottom: 3px solid var(--color-gold);
    animation: fadeIn 1.2s ease-out 0.9s backwards;
}

.info h2 {
    margin-bottom: 3rem;
    color: var(--color-primary);
    font-family: var(--font-display);
    font-weight: 600;
    font-size: clamp(1.8rem, 4vw, 2.5rem);
    letter-spacing: -0.01em;
}

.info-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(220px, 1fr));
    gap: 3rem;
    text-align: center;
    align-items: start;
}

.info-item {
    display: flex;
    flex-direction: column;
    align-items: center;
}

.info-icon {
    font-size: 3.5rem;
    margin-bottom: 1rem;
    height: 3.5rem;
    display: flex;
    align-items: center;
    justify-content: center;
    filter: drop-shadow(0 4px 8px rgba(212, 175, 55, 0.2));
}

.info-item h3 {
    font-size: 1.2rem;
    margin-bottom: 0.75rem;
    color: var(--color-primary);
    font-family: var(--font-display);
    font-weight: 600;
}

.info-item p {
    color: var(--color-text-light);
    font-size: 1rem;
    line-height: 1.6;
}

footer {
    text-align: center;
    padding: 3rem 1rem;
    margin-top: 5rem;
    color: var(--color-text-light);
    border-top: 1px solid rgba(212, 175, 55, 0.2);
}

footer a {
    color: var(--color-text);
    text-decoration: none;
    margin: 0 1.5rem;
    transition: color 0.3s;
    font-weight: 400;
}

footer a:hover {
    color: var(--color-gold);
}

@media (max-width: 600px) {
    main {
        padding: 2rem 1rem;
    }

    .hero {
        margin-bottom: 3rem;
    }

    .hero h1 {
        font-size: 1.5rem;
    }

    .subtitle {
        font-size: 1rem;
    }

    .event {
        flex-direction: column;
        gap: 0.5rem;
    }

    .event .time {
        min-width: auto;
    }

    .info-grid {
        grid-template-columns: 1fr;
        gap: 2rem;
    }

    .timeline-preview,
    .info {
        padding: 2rem 1.5rem;
    }
}