/* CSS for page: Valtys */

.page-valtys {
    max-width: 1200px;
    margin: 0 auto !important;
    width: 100%;
}

.page-valtys .section-1 {
    padding: var(--spacing-lg) 0;
}

.page-valtys .section-1 h2 {
    text-align: center;
    margin-bottom: var(--spacing-lg);
}
/* Mūsų Istorija Page Styling */

/* Hero Section */
.page-valtys .hero-section {
    background-color: var(--color-primary, #f8f9fa);
    padding: var(--spacing-xl, 5rem) 0;
    text-align: center;
    margin: auto !important;
    max-width: 1200px;
}

.page-valtys .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;
}

/* Content Section */
.page-valtys .section-1 {
    padding: var(--spacing-xl, 5rem) 0;
    background-color: var(--color-white, #ffffff);
}

.page-valtys .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-valtys .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-valtys .section-1 p:last-child {
    margin-bottom: 0;
}

/* Fade animations */
.page-valtys .hero-section h1 {
    opacity: 0;
    transform: translateY(-20px);
    animation: fadeInDown 0.8s ease forwards;
    animation-delay: 0.2s;
}

.page-valtys .section-1 h2 {
    opacity: 0;
    transform: translateY(20px);
    animation: fadeInUp 0.8s ease forwards;
    animation-delay: 0.4s;
}

.page-valtys .section-1 p:nth-of-type(1) {
    opacity: 0;
    transform: translateY(20px);
    animation: fadeInUp 0.8s ease forwards;
    animation-delay: 0.6s;
}

.page-valtys .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-valtys .hero-section {
        padding: var(--spacing-lg, 3rem) var(--spacing-sm, 1rem);
    }

    .page-valtys .hero-section h1 {
        font-size: 2rem;
    }

    .page-valtys .section-1 {
        padding: var(--spacing-lg, 3rem) var(--spacing-sm, 1rem);
    }

    .page-valtys .section-1 h2 {
        font-size: 1.5rem;
    }

    .page-valtys .section-1 p {
        font-size: 1rem;
    }
}


