/* Mūsų Istorija Page Styling */

/* Hero Section */
.page-musu-istorija .hero-section {
    background-color: var(--color-primary, #f8f9fa);
    padding: var(--spacing-xl, 5rem) 0;
    text-align: center;
    margin: auto !important;
    max-width: 1200px;
}

.page-musu-istorija .has-background-right {
    background-repeat: no-repeat;
}

.page-musu-istorija .hero-section h1 {
    font-size: 3rem;
    font-weight: 700;
    color: var(--color-text, #2d3436);
    margin: 0;
    max-width: 800px;
    margin-left: auto;
    margin-right: auto;
}

.page-musu-istorija .push-to-background {
    position: absolute;
    top: 50px;
    right: 200px;
    max-width: 30%;
}

/* Content Section */
.page-musu-istorija .section-1 {
    padding: var(--spacing-xl, 5rem) 0;
    background-color: var(--color-white, #ffffff);
}

.page-musu-istorija .section-1 h2 {
    font-size: 2rem;
    font-weight: 600;
    color: var(--color-text, #2d3436);
    margin-bottom: var(--spacing-md, 1.5rem);
    max-width: 800px;
    margin-left: auto;
    margin-right: auto;
    text-align: center;
}

.page-musu-istorija .section-1 p {
    font-size: 1.125rem;
    line-height: 1.8;
    color: var(--color-text-light, #636e72);
    margin-bottom: var(--spacing-md, 1.5rem);
    max-width: 800px;
    margin-left: auto;
    margin-right: auto;
}

.page-musu-istorija .section-1 p:last-child {
    margin-bottom: 0;
}

/* Fade animations */
.page-musu-istorija .hero-section h1 {
    opacity: 0;
    transform: translateY(-20px);
    animation: fadeInDown 0.8s ease forwards;
    animation-delay: 0.2s;
}

.page-musu-istorija .section-1 h2 {
    opacity: 0;
    transform: translateY(20px);
    animation: fadeInUp 0.8s ease forwards;
    animation-delay: 0.4s;
}

.page-musu-istorija .section-1 p:nth-of-type(1) {
    opacity: 0;
    transform: translateY(20px);
    animation: fadeInUp 0.8s ease forwards;
    animation-delay: 0.6s;
}

.page-musu-istorija .section-1 p:nth-of-type(2) {
    opacity: 0;
    transform: translateY(20px);
    animation: fadeInUp 0.8s ease forwards;
    animation-delay: 0.8s;
}

@keyframes fadeInDown {
    to {
        opacity: 1;
        transform: translateY(0);
    }
}

@keyframes fadeInUp {
    to {
        opacity: 1;
        transform: translateY(0);
    }
}

/* Mobile Responsive */
@media (max-width: 768px) {
    .page-musu-istorija .hero-section {
        padding: var(--spacing-lg, 3rem) var(--spacing-sm, 1rem);
    }

    .page-musu-istorija .hero-section h1 {
        font-size: 2rem;
    }

    .page-musu-istorija .section-1 {
        padding: var(--spacing-lg, 3rem) var(--spacing-sm, 1rem);
    }

    .page-musu-istorija .section-1 h2 {
        font-size: 1.5rem;
    }

    .page-musu-istorija .section-1 p {
        font-size: 1rem;
    }

    .page-musu-istorija .push-to-background {
        bottom: 50px;
        right: 20px;
        max-width: 50%;
        top: unset;
    }
}