/* CSS dla podstrony Olgi - olga-page.css */
/* Dostosowany do palety: Granatowy, Złoty, Błękit, Różowy */

/* Hero Section */
.hero-profile {
    background: var(--gradient-primary);
    min-height: 85vh;
    display: flex;
    align-items: center;
    color: white;
    position: relative;
    overflow: hidden;
    padding: 40px 0;
}

.hero-profile::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: url("https://image.ibb.co/de6JzG/bitmap_1_1.png");
    background-size: cover;
    background-position: center;
    opacity: 0.3;
    z-index: 1;
}

.hero-profile .container {
    position: relative;
    z-index: 2;
}

/* Profile Image */
.profile-image {
    width: 100%;
    max-width: 350px;
    height: 350px;
    border-radius: 20px;
    object-fit: cover;
    border: 4px solid var(--primary-gold);
    box-shadow: var(--shadow-strong);
    margin-bottom: 30px;
    transition: all 0.3s ease;
}

.profile-image:hover {
    transform: scale(1.02);
    border-color: var(--accent-pink);
    box-shadow: var(--shadow-medium);
}

/* Profile Title & Subtitle */
.profile-title {
    font-family: 'Playfair Display', serif;
    font-size: clamp(2.5rem, 5vw, 3.5rem);
    font-weight: 500;
    margin-bottom: 15px;
    letter-spacing: -0.5px;
    line-height: 1.2;
}

.profile-subtitle {
    font-size: clamp(1.1rem, 3vw, 1.4rem);
    opacity: 0.9;
    margin-bottom: 30px;
    font-weight: 400;
    line-height: 1.5;
}

/* Credentials */
.credentials {
    background: rgba(255,255,255,0.15);
    backdrop-filter: blur(10px);
    border-radius: 20px;
    padding: 25px;
    margin-top: 30px;
    border: 1px solid rgba(255,255,255,0.2);
    box-shadow: var(--shadow-soft);
}

.credentials h4 {
    color: white;
    margin-bottom: 15px;
    font-weight: 600;
    font-family: 'Playfair Display', serif;
}

.credential-item {
    color: rgba(255,255,255,0.9);
    margin-bottom: 8px;
    font-size: 1.25rem;
    line-height: 1.5;
}

/* Back Button */
.back-button {
    position: absolute;
    top: 30px;
    left: 30px;
    background: rgba(255,255,255,0.2);
    color: white;
    padding: 12px 25px;
    border-radius: 25px;
    text-decoration: none;
    backdrop-filter: blur(10px);
    border: 1px solid rgba(255,255,255,0.3);
    transition: all 0.3s ease;
    z-index: 3;
    font-weight: 500;
    font-size: 14px;
}

.back-button:hover {
    background: rgba(255,255,255,0.3);
    color: white;
    text-decoration: none;
    transform: translateY(-2px);
    box-shadow: var(--shadow-soft);
}

/* Expertise Section */
.expertise-section {
    padding: 90px 0;
    background: transparent;
}

.expertise-card {
    background: rgba(255, 255, 255, 0.95);
    backdrop-filter: blur(5px);
    border-radius: 20px;
    padding: 35px;
    box-shadow: var(--shadow-soft);
    margin-bottom: 30px;
    transition: all 0.4s cubic-bezier(0.25, 0.46, 0.45, 0.94);
    border: 1px solid var(--border-soft);
    border-left: 4px solid var(--accent-pink);
    position: relative;
    overflow: hidden;
}

.expertise-card::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    height: 4px;
    background: var(--gradient-pink);
    opacity: 0;
    transition: opacity 0.3s ease;
}

.expertise-card:hover::before {
    opacity: 1;
}

.expertise-card:hover {
    transform: translateY(-8px);
    box-shadow: var(--shadow-strong);
    border-left-color: var(--primary-gold);
}

.expertise-icon {
    font-size: 3rem;
    color: var(--accent-pink);
    margin-bottom: 20px;
    transition: all 0.3s ease;
    display: block;
}

.expertise-card:hover .expertise-icon {
    color: var(--primary-gold);
    transform: scale(1.1);
}

.expertise-card h3 {
    font-family: 'Playfair Display', serif;
    color: var(--text-dark);
    font-size: 22px;
    font-weight: 500;
    margin-bottom: 15px;
    letter-spacing: 0.3px;
}

.expertise-card p {
    color: var(--text-medium);
    line-height: 1.6;
    margin-bottom: 20px;
}

.expertise-card ul {
    list-style: none;
    padding-left: 0;
    margin: 0;
}

.expertise-card li {
    position: relative;
    margin-bottom: 8px;
    padding-left: 25px;
    color: var(--text-medium);
    font-size: 14px;
}

.expertise-card li::before {
    content: "✓";
    position: absolute;
    left: 0;
    top: 0;
    width: 18px;
    height: 18px;
    background: var(--gradient-pink);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 10px;
    color: white;
    font-weight: bold;
}

/* About Section */
.about-section {
    padding: 90px 0;
    background: transparent;
}

/* Timeline */
.timeline {
    position: relative;
    padding-left: 30px;
}

.timeline::before {
    content: '';
    position: absolute;
    left: 15px;
    top: 0;
    bottom: 0;
    width: 3px;
    background: var(--gradient-pink);
    border-radius: 2px;
}

.timeline-item {
    position: relative;
    margin-bottom: 40px;
    padding-left: 40px;
}

.timeline-item::before {
    content: '';
    position: absolute;
    left: -8px;
    top: 0;
    width: 16px;
    height: 16px;
    border-radius: 50%;
    background: var(--accent-pink);
    border: 3px solid white;
    box-shadow: var(--shadow-soft);
}

.timeline-year {
    color: var(--primary-gold);
    font-weight: 600;
    font-size: 1.1rem;
    font-family: 'Playfair Display', serif;
}

.timeline-content h4 {
    color: var(--text-dark);
    margin-bottom: 10px;
    font-family: 'Playfair Display', serif;
    font-weight: 500;
}

.timeline-content p {
    color: var(--text-medium);
    line-height: 1.6;
    margin: 0;
}

/* Approach Boxes */
.approach-box {
    background: rgba(255, 255, 255, 0.9);
    backdrop-filter: blur(5px);
    padding: 30px;
    border-radius: 20px;
    margin-bottom: 20px;
    border: 1px solid var(--border-soft);
    border-left: 4px solid var(--accent-blue);
    box-shadow: var(--shadow-soft);
    transition: all 0.3s ease;
}

.approach-box:hover {
    transform: translateY(-3px);
    box-shadow: var(--shadow-medium);
    border-left-color: var(--accent-pink);
}

.approach-box h4 {
    color: var(--primary-navy);
    margin-bottom: 15px;
    font-family: 'Playfair Display', serif;
    font-weight: 500;
    font-size: 18px;
}

.approach-box p {
    color: var(--text-medium);
    line-height: 1.6;
    margin: 0;
}

/* Stats Box */
.stats-box {
    background: var(--gradient-primary);
    padding: 30px;
    border-radius: 20px;
    color: white;
    text-align: center;
    box-shadow: var(--shadow-medium);
}

.stats-box h4 {
    color: white;
    margin-bottom: 20px;
    font-family: 'Playfair Display', serif;
    font-weight: 500;
}

.stats-container {
    display: flex;
    justify-content: space-around;
    flex-wrap: wrap;
    gap: 15px;
}

.stat-item {
    text-align: center;
    min-width: 80px;
}

.stat-number {
    font-size: 2rem;
    font-weight: 600;
    margin-bottom: 5px;
    display: block;
    color: var(--primary-gold);
}

.stat-label {
    font-size: 0.9rem;
    opacity: 0.9;
}

/* Contact CTA */
.contact-cta {
    background: var(--gradient-warm);
    padding: 80px 0;
    color: white;
    text-align: center;
    position: relative;
}

.contact-cta::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: url("https://image.ibb.co/de6JzG/bitmap_1_1.png");
    background-size: cover;
    background-position: center;
    opacity: 0.2;
    z-index: 1;
}

.contact-cta .container {
    position: relative;
    z-index: 2;
}

.contact-cta h2 {
    font-family: 'Playfair Display', serif;
    font-size: clamp(2rem, 4vw, 2.5rem);
    margin-bottom: 20px;
    font-weight: 500;
    letter-spacing: -0.5px;
}

.contact-cta p {
    font-size: 1.2rem;
    margin-bottom: 40px;
    opacity: 0.9;
    line-height: 1.5;
}

.cta-button {
    background: white;
    color: var(--primary-navy);
    padding: 15px 30px;
    border-radius: 50px;
    text-decoration: none;
    font-weight: 600;
    display: inline-block;
    margin: 10px;
    transition: all 0.4s cubic-bezier(0.25, 0.46, 0.45, 0.94);
    box-shadow: var(--shadow-soft);
    border: 2px solid transparent;
}

.cta-button:hover {
    color: var(--primary-navy);
    text-decoration: none;
    transform: translateY(-3px);
    box-shadow: var(--shadow-medium);
    border-color: white;
    background: rgba(255,255,255,0.95);
}

.cta-button--outline {
    background: transparent;
    color: white;
    border: 2px solid white;
}

.cta-button--outline:hover {
    background: white;
    color: var(--primary-navy);
}

/* Expertise Card Variants */
.expertise-card--navy {
    border-left-color: var(--primary-navy);
}

.expertise-card--navy .expertise-icon {
    color: var(--primary-navy);
}

.expertise-card--navy:hover .expertise-icon {
    color: var(--accent-pink);
}

.expertise-card--gold {
    border-left-color: var(--primary-gold);
}

.expertise-card--gold .expertise-icon {
    color: var(--primary-gold);
}

.expertise-card--gold:hover .expertise-icon {
    color: var(--accent-pink);
}

.expertise-card--blue {
    border-left-color: var(--accent-blue);
}

.expertise-card--blue .expertise-icon {
    color: var(--accent-blue);
}

.expertise-card--blue:hover .expertise-icon {
    color: var(--primary-gold);
}

/* Quote Section */
.quote-section {
    background: rgba(255, 255, 255, 0.9);
    backdrop-filter: blur(5px);
    padding: 50px;
    border-radius: 25px;
    margin: 40px 0;
    border-left: 5px solid var(--accent-pink);
    box-shadow: var(--shadow-soft);
    position: relative;
}

.quote-section::before {
    content: '"';
    position: absolute;
    top: -10px;
    left: 30px;
    font-size: 4rem;
    color: var(--accent-pink);
    font-family: 'Playfair Display', serif;
    opacity: 0.3;
}

.quote-text {
    font-size: 1.2rem;
    color: var(--text-dark);
    font-style: italic;
    line-height: 1.6;
    margin-bottom: 20px;
    text-align: center;
}

.quote-author {
    text-align: center;
    color: var(--primary-gold);
    font-weight: 600;
    font-family: 'Playfair Display', serif;
}

/* Responsive Design */
@media (max-width: 768px) {
    .hero-profile {
        min-height: 70vh;
        padding: 80px 0 60px;
    }

    .profile-image {
        width: 100%;
        max-width: 280px;
        height: 280px;
        margin-bottom: 40px;
    }

    .timeline {
        padding-left: 20px;
    }

    .timeline-item {
        padding-left: 30px;
    }

    .expertise-card {
        padding: 25px;
    }

    .stats-container {
        flex-direction: column;
        align-items: center;
    }

    .stat-item {
        margin: 10px 0;
    }

    .approach-box {
        padding: 20px;
    }

    .back-button {
        top: 20px;
        left: 20px;
        padding: 10px 20px;
        font-size: 13px;
    }

    .contact-cta {
        padding: 60px 0;
    }

    .cta-button {
        display: block;
        margin: 10px auto;
        max-width: 280px;
    }

    .quote-section {
        padding: 30px;
        margin: 30px 0;
    }

    .quote-section::before {
        font-size: 3rem;
        top: -5px;
        left: 20px;
    }

    .quote-text {
        font-size: 1.1rem;
    }
}

@media (max-width: 480px) {
    .expertise-card {
        padding: 20px;
    }

    .timeline::before {
        left: 10px;
    }

    .timeline-item::before {
        left: -5px;
    }

    .profile-image {
        width: 100%;
        max-width: 220px;
        height: 220px;
        margin-bottom: 30px;
    }

    .credentials {
        padding: 20px;
    }

    .expertise-icon {
        font-size: 2.5rem;
    }

    .back-button {
        padding: 8px 16px;
        font-size: 12px;
    }

    .quote-section {
        padding: 25px;
        border-left-width: 3px;
    }

    .quote-section::before {
        font-size: 2.5rem;
        left: 15px;
    }

    .quote-text {
        font-size: 1rem;
    }

    .stat-number {
        font-size: 1.5rem;
    }

    .hero-profile {
        padding: 60px 0 40px;
    }
}