﻿@keyframes fadeInUp {
    from {
        opacity: 0;
        transform: translateY(40px);
    }
    to {
        opacity: 1;
        transform: translateY(0);
    }
}

.page-title-animate {
    animation: fadeInUp 0.8s cubic-bezier(0.23, 1, 0.32, 1) both;
}

.contact-row-animate {
    opacity: 0;
    animation: fadeInUp 0.5s cubic-bezier(0.23, 1, 0.32, 1) both;
}

.contact-row-animate.delay-1 { animation-delay: 0.2s; }
.contact-row-animate.delay-2 { animation-delay: 0.4s; }

.contact-card-rounded {
    border-radius: 2rem !important;
}

.contact-panel {
    border-radius: 2rem !important;
    background: #fff; /* fallback, nadpisywany przez style inline */
    box-shadow: 0 4px 24px 0 rgba(44,62,80,0.10);
    border: none;
    padding: 0;
    transition: box-shadow 0.2s;
    color: #222;
    overflow: hidden;
    position: relative;
}
body.dark-mode.contact-page .contact-panel {
    color: #e0e0e0;
}