/* ── Wydarzenia (Events) page ── */

/* ---- Intro block ---- */
.wyd-intro {
    text-align: center;
    max-width: 640px;
    margin: 0 auto 72px;
    animation: wydFadeUp 0.75s ease both;
}

.wyd-ornament {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 18px;
    margin-bottom: 32px;
    color: #c48330;
    opacity: 0.75;
}

.wyd-ornament::before,
.wyd-ornament::after {
    content: '';
    display: block;
    width: 44px;
    height: 1px;
    background: #c48330;
}

.wyd-ornament-diamond {
    width: 7px;
    height: 7px;
    background: #c48330;
    transform: rotate(45deg);
    flex-shrink: 0;
}

.wyd-heading {
    font-family: 'Prata', serif;
    font-size: 34px;
    line-height: 1.3;
    color: #603825;
    margin-bottom: 26px;
    letter-spacing: 0.2px;
}

.wyd-lead {
    font-family: 'Lora', serif;
    font-size: 17px;
    line-height: 1.85;
    color: #7a5c4a;
    margin: 0;
}

/* ---- Event type cards ---- */
.wyd-types {
    display: flex;
    gap: 28px;
    justify-content: center;
    max-width: 860px;
    margin: 0 auto 80px;
    animation: wydFadeUp 0.75s ease 0.14s both;
}

.wyd-type-card {
    flex: 1;
    background: #fff;
    border: 1px solid #e8d5c0;
    border-top: 2px solid #c48330;
    padding: 42px 28px 38px;
    text-align: center;
    transition: box-shadow 0.35s ease, transform 0.35s ease;
}

.wyd-type-card:hover {
    box-shadow: 0 12px 36px rgba(96, 56, 37, 0.11);
    transform: translateY(-5px);
}

.wyd-type-icon {
    width: 54px;
    height: 54px;
    border: 1.5px solid #c48330;
    border-radius: 50%;
    margin: 0 auto 24px;
    display: flex;
    align-items: center;
    justify-content: center;
    font-family: 'Prata', serif;
    font-size: 20px;
    color: #c48330;
    transition: background 0.3s, color 0.3s;
}

.wyd-type-card:hover .wyd-type-icon {
    background: #c48330;
    color: #fff;
}

.wyd-type-title {
    font-family: 'Prata', serif;
    font-size: 16px;
    color: #603825;
    margin-bottom: 14px;
    letter-spacing: 0.3px;
}

.wyd-type-text {
    font-family: 'Lora', serif;
    font-size: 14px;
    line-height: 1.8;
    color: #7a5c4a;
    margin: 0;
}

/* ---- Facebook invitation card ---- */
.wyd-fb-invite {
    max-width: 600px;
    margin: 0 auto;
    text-align: center;
    background: #f7eadb;
    padding: 54px 64px 50px;
    animation: wydFadeUp 0.75s ease 0.28s both;
    position: relative;
}

.wyd-fb-invite::before,
.wyd-fb-invite::after {
    content: '';
    display: block;
    position: absolute;
    left: 50%;
    transform: translateX(-50%);
    width: 44px;
    height: 1px;
    background: #c48330;
    opacity: 0.6;
}

.wyd-fb-invite::before { top: 24px; }
.wyd-fb-invite::after  { bottom: 24px; }

.wyd-fb-label-top {
    font-family: 'Montserrat', sans-serif;
    font-size: 10px;
    letter-spacing: 3.5px;
    text-transform: uppercase;
    color: #c48330;
    margin-bottom: 22px;
}

.wyd-fb-text {
    font-family: 'Lora', serif;
    font-size: 19px;
    line-height: 1.78;
    color: #603825;
    margin-bottom: 38px;
}

.wyd-fb-text em {
    font-style: italic;
    color: #c48330;
}

.wyd-fb-button {
    display: inline-flex;
    align-items: center;
    gap: 13px;
    background: #603825;
    color: #f4c47e !important;
    text-decoration: none !important;
    padding: 15px 36px;
    font-family: 'Montserrat', sans-serif;
    font-size: 11px;
    font-weight: 600;
    letter-spacing: 2px;
    text-transform: uppercase;
    transition: background 0.3s ease, color 0.3s ease;
    border: 1px solid transparent;
}

.wyd-fb-button:hover {
    background: transparent;
    border-color: #603825;
    color: #603825 !important;
    text-decoration: none !important;
}

.wyd-fb-button-icon {
    font-family: Georgia, 'Times New Roman', serif;
    font-size: 17px;
    font-weight: 700;
    line-height: 1;
    flex-shrink: 0;
}

/* ---- Animation ---- */
@keyframes wydFadeUp {
    from { opacity: 0; transform: translateY(22px); }
    to   { opacity: 1; transform: translateY(0); }
}

/* ---- Responsive ---- */
@media (max-width: 768px) {
    .wyd-types {
        flex-direction: column;
        max-width: 420px;
    }
    .wyd-fb-invite {
        padding: 44px 28px 40px;
    }
    .wyd-heading {
        font-size: 26px;
    }
}
