/* ========================================
   OSIAGNIECIA PAGE STYLES
   ======================================== */

/* Hero Section */
.top-asystent-hero .osiagniecia-hero-section {
    width: 100%;
    height: 400px;
    position: relative;
    overflow: visible;
    display: flex;
    align-items: center;
    justify-content: center;
    margin-top: 0;
}

.top-asystent-hero .osiagniecia-hero-background {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    z-index: 1;
}

.top-asystent-hero .osiagniecia-hero-image {
    width: 100%;
    height: 100%;
    object-fit: cover;
    object-position: center;
}

.top-asystent-hero .osiagniecia-hero-content {
    position: relative;
    z-index: 2;
    text-align: center;
}

.top-asystent-hero .osiagniecia-hero-title {
    font-family: 'Playfair Display', serif;
    font-size: clamp(3rem, 6vw, 5rem);
    font-weight: 900;
    color: #ffffff;
    margin: 0;
    line-height: 1.2;
    text-shadow: 0 2px 10px rgba(0, 0, 0, 0.3);
}

.top-asystent-hero .osiagniecia-page-section {
    width: 100%;
    background: #ffffff;
    padding: 80px 0;
    min-height: calc(100vh - 200px);
    position: relative;
    z-index: 5;
}

.top-asystent-hero .osiagniecia-page-container {
    max-width: 1400px;
    margin: 0 auto;
    padding: 0 40px;
}

.top-asystent-hero .osiagniecia-content-container {
    max-width: 1140px;
    margin: 0 auto;
    padding: 0 40px;
}

/* Intro Section: Centered */
.top-asystent-hero .osiagniecia-intro-section {
    text-align: center;
    margin-bottom: 100px;
}

.top-asystent-hero .osiagniecia-page-subtitle {
    font-family: 'Playfair Display', serif;
    font-size: clamp(2rem, 4vw, 3rem);
    font-weight: 700;
    color: #111111;
    margin: 0 0 30px;
    line-height: 1.3;
}

.top-asystent-hero .osiagniecia-page-intro {
    font-family: 'Montserrat', sans-serif;
    font-size: clamp(0.9rem, 1.3vw, 1rem);
    font-weight: 300;
    color: rgba(0, 0, 0, 0.7);
    line-height: 1.7;
    margin: 0 0 20px;
    max-width: 900px;
    margin-left: auto;
    margin-right: auto;
}

.top-asystent-hero .osiagniecia-page-intro:last-child {
    margin-bottom: 0;
}

/* Certificate Section: Image Left, Text Right */
.top-asystent-hero .osiagniecia-cert-section {
    display: grid;
    grid-template-columns: 1fr 1.2fr;
    gap: 60px;
    align-items: center;
    margin: 80px 0;
}

.top-asystent-hero .osiagniecia-cert-reverse {
    grid-template-columns: 1.2fr 1fr;
}

.top-asystent-hero .osiagniecia-cert-reverse .osiagniecia-cert-content {
    order: -1;
}

.top-asystent-hero .osiagniecia-cert-image {
    width: 85%;
    aspect-ratio: 1;
    overflow: hidden;
    border-radius: 8px;
    margin: 0 auto;
}

.top-asystent-hero .osiagniecia-cert-img {
    width: 100%;
    height: 100%;
    object-fit: contain;
    background: #f9f9f9;
}

.top-asystent-hero .osiagniecia-cert-content {
    display: flex;
    flex-direction: column;
    justify-content: center;
}

.top-asystent-hero .osiagniecia-cert-title {
    font-family: 'Playfair Display', serif;
    font-size: clamp(1.8rem, 3.5vw, 2.5rem);
    font-weight: 700;
    color: #111111;
    margin: 0 0 20px;
    line-height: 1.3;
}

.top-asystent-hero .osiagniecia-cert-text {
    font-family: 'Montserrat', sans-serif;
    font-size: clamp(0.9rem, 1.3vw, 1rem);
    font-weight: 300;
    color: rgba(0, 0, 0, 0.7);
    line-height: 1.7;
    margin: 0 0 15px;
}

.top-asystent-hero .osiagniecia-cert-text:last-child {
    margin-bottom: 0;
}

/* Gallery Section */
.top-asystent-hero .osiagniecia-gallery-section {
    margin-top: 100px;
}

.top-asystent-hero .osiagniecia-gallery-title {
    font-family: 'Playfair Display', serif;
    font-size: clamp(2.5rem, 5vw, 3.5rem);
    font-weight: 700;
    color: #111111;
    text-align: center;
    margin: 0 0 50px;
}

.top-asystent-hero .osiagniecia-gallery-grid {
    display: grid;
    grid-template-columns: repeat(auto-fill, minmax(320px, 1fr));
    gap: 30px;
}

.top-asystent-hero .osiagniecia-gallery-item {
    background: #ffffff;
    border-radius: 8px;
    overflow: hidden;
    box-shadow: 0 4px 15px rgba(0, 0, 0, 0.08);
    transition: all 0.4s cubic-bezier(0.25, 0.46, 0.45, 0.94);
    opacity: 0;
    transform: translateY(30px);
    display: flex;
    flex-direction: column;
}

.top-asystent-hero .osiagniecia-gallery-item.animate-in {
    opacity: 1;
    transform: translateY(0);
    transition: opacity 0.6s ease-out, transform 0.6s ease-out;
}

.top-asystent-hero .osiagniecia-gallery-item:hover {
    transform: translateY(-8px);
    box-shadow: 0 12px 30px rgba(0, 0, 0, 0.15);
}

.top-asystent-hero .osiagniecia-gallery-image {
    width: 100%;
    aspect-ratio: 4 / 3;
    overflow: hidden;
    background: #f0f0f0;
    position: relative;
    display: flex;
    align-items: center;
    justify-content: center;
}

.top-asystent-hero .osiagniecia-gallery-image img {
    width: 100%;
    height: 100%;
    object-fit: contain;
    display: block;
    transition: transform 0.6s cubic-bezier(0.25, 0.46, 0.45, 0.94);
    background: #ffffff;
}

.top-asystent-hero .osiagniecia-gallery-item:hover .osiagniecia-gallery-image img {
    transform: scale(1.05);
}

/* Partners Section */
.top-asystent-hero .osiagniecia-partners-section {
    margin-top: 100px;
    text-align: center;
}

.top-asystent-hero .osiagniecia-partners-title {
    font-family: 'Playfair Display', serif;
    font-size: clamp(2rem, 4vw, 2.5rem);
    font-weight: 700;
    color: #111111;
    margin: 0 0 25px;
    line-height: 1.3;
}

.top-asystent-hero .osiagniecia-partners-text {
    font-family: 'Montserrat', sans-serif;
    font-size: clamp(0.9rem, 1.3vw, 1rem);
    font-weight: 300;
    color: rgba(0, 0, 0, 0.7);
    line-height: 1.7;
    margin: 0;
    max-width: 800px;
    margin-left: auto;
    margin-right: auto;
}

/* Responsive */
@media (max-width: 1024px) {
    .top-asystent-hero .osiagniecia-gallery-grid {
        grid-template-columns: repeat(auto-fill, minmax(280px, 1fr));
        gap: 25px;
    }
}

@media (max-width: 768px) {
    .top-asystent-hero .osiagniecia-hero-section {
        height: 400px;
    }
    
    .top-asystent-hero .osiagniecia-hero-title {
        font-size: clamp(2rem, 8vw, 3.5rem);
    }
    
    .top-asystent-hero .osiagniecia-page-section {
        padding: 60px 0 40px;
    }
    
    .top-asystent-hero .osiagniecia-page-container {
        padding: 0 24px;
    }
    
    .top-asystent-hero .osiagniecia-content-container {
        padding: 0 24px;
    }
    
    .top-asystent-hero .osiagniecia-intro-section {
        margin-bottom: 60px;
    }
    
    .top-asystent-hero .osiagniecia-cert-section {
        grid-template-columns: 1fr;
        gap: 40px;
        margin: 60px 0;
    }
    
    .top-asystent-hero .osiagniecia-cert-reverse {
        grid-template-columns: 1fr;
    }
    
    .top-asystent-hero .osiagniecia-cert-reverse .osiagniecia-cert-content {
        order: 0;
    }
    
    .top-asystent-hero .osiagniecia-cert-image {
        order: -1;
    }
    
    .top-asystent-hero .osiagniecia-gallery-section {
        margin-top: 60px;
    }
    
    .top-asystent-hero .osiagniecia-gallery-grid {
        grid-template-columns: repeat(auto-fill, minmax(250px, 1fr));
        gap: 20px;
    }
    
    .top-asystent-hero .osiagniecia-partners-section {
        margin-top: 60px;
    }
}

@media (max-width: 480px) {
    .top-asystent-hero .osiagniecia-page-section {
        padding: 60px 0 30px;
    }
    
    .top-asystent-hero .osiagniecia-page-container {
        padding: 0 20px;
    }
    
    .top-asystent-hero .osiagniecia-content-container {
        padding: 0 20px;
    }
    
    .top-asystent-hero .osiagniecia-gallery-grid {
        grid-template-columns: 1fr;
        gap: 20px;
    }
    
    .top-asystent-hero .osiagniecia-page-intro {
        font-size: 0.95rem;
        line-height: 1.7;
    }
}


