/* ===== WEDDING FORM – LABEL LEFT, FIELDS CENTERED ===== */

.wpcf7 {
    max-width: 650px;
    margin: 90px auto !important;
    padding: 50px !important;
    background: #ffffff;
    border-radius: 18px;
    box-shadow: 0 25px 60px rgba(0,0,0,0.06);
    box-sizing: border-box;
    text-align: center;
}

/* Etykiety wyrównane do lewej */
.wpcf7 label {
    display: block;
    font-size: 14px;
    color: #666;
    margin-bottom: 4px;
    letter-spacing: 0.5px;
    text-align: left;
}

/* Pola formularza */
.wpcf7 input,
.wpcf7 textarea {
    width: 100%;
    padding: 13px 16px;
    margin-bottom: 12px;
    border: 1px solid #eee;
    border-radius: 10px;
    background: #fafafa;
    font-size: 15px;
    transition: 0.3s ease;
    box-sizing: border-box;
    text-align: left;
}

.wpcf7 textarea {
    min-height: 120px;
}

.wpcf7 input:focus,
.wpcf7 textarea:focus {
    background: #ffffff;
    border-color: #d4af7f;
    outline: none;
    box-shadow: 0 0 10px rgba(212,175,127,0.2);
}

/* Przycisk */
.wpcf7-submit {
    display: inline-block;
    margin-top: 18px;
    background: #caa45f !important;
    color: #ffffff !important;
    border: none;
    padding: 15px 50px;
    border-radius: 40px;
    font-size: 14px;
    letter-spacing: 1px;
    font-weight: 600;
    cursor: pointer;
    transition: 0.3s ease;
    box-shadow: 0 12px 30px rgba(202,164,95,0.4);
}

.wpcf7-submit:hover {
    background: #b9934d !important;
    transform: translateY(-3px);
    box-shadow: 0 15px 35px rgba(202,164,95,0.5);
}

/* Mobile */
@media (max-width: 768px) {
    .wpcf7 {
        margin: 50px 20px !important;
        padding: 30px !important;
    }
}


/* ===== SUBTELNA ANIMACJA POJAWIANIA (FADE LUX) ===== */

.fade-lux {
    opacity: 0;
    transform: translateY(30px);
    transition: opacity 1.4s ease, transform 1.4s ease;
}

.fade-lux.visible {
    opacity: 1;
    transform: translateY(0);
}


/* ===== OPCJA 3 – GOLD SHIMMER LUXURY EFFECT ===== */

.gold-shimmer {
    position: relative;
    opacity: 0;
    transform: translateY(25px);
    transition: all 1.5s ease;
}

.gold-shimmer.visible {
    opacity: 1;
    transform: translateY(0);
}

.gold-shimmer::after {
    content: '';
    position: absolute;
    top: 0;
    left: -100%;
    width: 60%;
    height: 100%;
    background: linear-gradient(
        120deg,
        transparent,
        rgba(212,175,127,0.25),
        transparent
    );
    transition: 2s;
}

.gold-shimmer.visible::after {
    left: 120%;
}