/* ===== BODY ===== */
body {
    background: radial-gradient(circle at 30% 20%, #2a1250 0%, #140824 40%, #0b0e1a 100%);
    color: #f0f0f0;
    font-family: 'Segoe UI', sans-serif;
    overflow-x: hidden;
    position: relative;
}

/* ===== HERO ===== */
.hero-section {
    height: 100vh;
    display: flex;
    justify-content: center;
    align-items: center;
    text-align: center;
    position: relative;
    z-index: 1;
}

.hero-section h1 {
    font-size: 72px;
    color: #c49c29;
    font-family: Georgia, serif;
    text-shadow: 0 0 25px rgba(196,156,41,0.5);
    animation: glow 3s ease-in-out infinite alternate;
    margin-bottom: 15px;
}

@keyframes glow {
    from { text-shadow: 0 0 10px rgba(196,156,41,0.3); }
    to   { text-shadow: 0 0 35px rgba(196,156,41,0.8); }
}

/* ===== AUTORKI ===== */
.autorka-section {
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    gap: 100px;
    padding: 100px 10%;
    opacity: 0;
    transform: translateY(50px);
    transition: opacity 0.8s ease, transform 0.8s ease;
    z-index: 1;
}

.autorka-section.visible {
    opacity: 1;
    transform: translateY(0);
}

.autorka {
    display: flex;
    align-items: center;
    gap: 60px;
    transition: transform 0.4s ease, box-shadow 0.4s ease;
}

.autorka.reverse {
    flex-direction: row-reverse;
}

.autorka:hover {
    transform: translateY(-10px);
    box-shadow: 0 20px 50px rgba(196,156,41,0.2);
}

.autorka-zdjecie img {
    width: 300px;
    height: 400px;
    object-fit: cover;
    border-radius: 20px;
    box-shadow: 0 15px 40px rgba(0,0,0,0.6);
    transition: transform 0.5s ease, box-shadow 0.5s ease;
}

.autorka-zdjecie img:hover {
    transform: translateY(-10px) scale(1.03);
    box-shadow: 0 20px 50px rgba(196,156,41,0.3);
}

.autorka-tekst {
    max-width: 500px;
    text-align: left;
}

.autorka-tekst h2 {
    font-size: 36px;
    color: #c49c29;
    margin-bottom: 15px;
}

.autorka-tekst p {
    font-size: 18px;
    line-height: 1.7;
    color: #ddd;
}

/* ===== RESPONSYWNOŚĆ ===== */
@media(max-width: 900px){
    .autorka-section {
        flex-direction: column;
        text-align: center;
    }
    .autorka-zdjecie img {
        width: 80%;
        height: auto;
    }
    .autorka-tekst {
        max-width: 90%;
    }
}