/* Dodatkowe style dla strony O mnie */

/* Hero Section - O mnie */
.hero-about {
    background: linear-gradient(135deg, #1e3a8a 0%, #3b82f6 100%);
    color: white;
    padding: 4rem 2rem;
    text-align: center;
    position: relative;
}

.hero-about h1 {
    font-size: 3rem;
    margin-bottom: 1rem;
    font-weight: 300;
}

.hero-about p {
    font-size: 1.2rem;
    opacity: 0.9;
    max-width: 600px;
    margin: 0 auto;
}

/* Main About Section */
.about-main {
    padding: 5rem 0;
    background: #f8f9fa;
}

.about-grid {
    display: grid;
    grid-template-columns: 1fr 2fr;
    gap: 4rem;
    align-items: start;
}

/* Profile Section */
.profile-section {
    background: white;
    border-radius: 20px;
    padding: 2rem;
    box-shadow: 0 15px 35px rgba(0,0,0,0.1);
    text-align: center;
    position: sticky;
    top: 100px;
}

.profile-image img {
    width: 200px;
    height: 200px;
    border-radius: 50%;
    object-fit: cover;
    margin-bottom: 1.5rem;
    box-shadow: 0 10px 25px rgba(0,0,0,0.15);
    transition: transform 0.3s ease;
}

.profile-image img:hover {
    transform: scale(1.05);
}

.profile-info h2 {
    font-size: 2rem;
    color: #1e3a8a;
    margin-bottom: 0.5rem;
}

.role {
    color: #6b7280;
    font-size: 1.1rem;
    margin-bottom: 2rem;
    font-style: italic;
}

.profile-stats {
    display: flex;
    justify-content: space-around;
    margin-top: 2rem;
    padding-top: 2rem;
    border-top: 1px solid #e5e7eb;
}

.stat {
    text-align: center;
}

.stat .number {
    display: block;
    font-size: 2rem;
    font-weight: bold;
    color: #3b82f6;
    line-height: 1;
}

.stat .label {
    font-size: 0.9rem;
    color: #6b7280;
    margin-top: 0.5rem;
}

/* Biography Section */
.biography-section {
    background: white;
    border-radius: 20px;
    padding: 2.5rem;
    box-shadow: 0 15px 35px rgba(0,0,0,0.1);
}

.biography-section h2 {
    font-size: 2.5rem;
    color: #1e3a8a;
    margin-bottom: 2rem;
    text-align: center;
}

/* Timeline */
.timeline {
    position: relative;
    padding-left: 2rem;
}

.timeline::before {
    content: '';
    position: absolute;
    left: 0;
    top: 0;
    bottom: 0;
    width: 2px;
    background: linear-gradient(to bottom, #3b82f6, #60a5fa);
}

.timeline-item {
    position: relative;
    margin-bottom: 3rem;
    padding-left: 2rem;
}

.timeline-item::before {
    content: '';
    position: absolute;
    left: -1.5rem;
    top: 0;
    width: 12px;
    height: 12px;
    background: #3b82f6;
    border-radius: 50%;
    border: 3px solid white;
    box-shadow: 0 0 0 3px #e5e7eb;
}

.timeline-year {
    position: absolute;
    left: -8rem;
    top: -5px;
    font-size: 1.2rem;
    font-weight: bold;
    color: #3b82f6;
    background: white;
    padding: 0.5rem 1rem;
    border-radius: 20px;
    box-shadow: 0 2px 10px rgba(0,0,0,0.1);
}

.timeline-content h3 {
    font-size: 1.3rem;
    color: #1e3a8a;
    margin-bottom: 0.5rem;
}

.timeline-content p {
    color: #4b5563;
    line-height: 1.7;
    font-size: 1rem;
}

/* Philosophy Section */
.philosophy-section {
    background: linear-gradient(135deg, #1e3a8a 0%, #3b82f6 100%);
    color: white;
    padding: 5rem 0;
}

.philosophy-content h2 {
    text-align: center;
    font-size: 2.5rem;
    margin-bottom: 3rem;
    font-weight: 300;
}

.philosophy-grid {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 2rem;
}

.philosophy-item {
    background: rgba(255,255,255,0.1);
    border-radius: 15px;
    padding: 2rem;
    text-align: center;
    transition: transform 0.3s ease, background 0.3s ease;
    backdrop-filter: blur(10px);
}

.philosophy-item:hover {
    transform: translateY(-10px);
    background: rgba(255,255,255,0.15);
}

.philosophy-icon {
    font-size: 3rem;
    margin-bottom: 1rem;
    display: block;
}

.philosophy-item h3 {
    font-size: 1.4rem;
    margin-bottom: 1rem;
    font-weight: 500;
}

.philosophy-item p {
    line-height: 1.7;
    opacity: 0.9;
}

/* Skills Section */
.skills-section {
    padding: 5rem 0;
    background: white;
}

.skills-section h2 {
    text-align: center;
    font-size: 2.5rem;
    color: #1e3a8a;
    margin-bottom: 3rem;
}

.skills-grid {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 3rem;
}

.skill-category {
    background: #f8f9fa;
    border-radius: 15px;
    padding: 2rem;
}

.skill-category h3 {
    font-size: 1.5rem;
    color: #1e3a8a;
    margin-bottom: 1.5rem;
    text-align: center;
}

.skill-item {
    margin-bottom: 1.5rem;
}

.skill-item span {
    display: block;
    margin-bottom: 0.5rem;
    color: #374151;
    font-weight: 500;
}

.skill-bar {
    height: 8px;
    background: #e5e7eb;
    border-radius: 10px;
    overflow: hidden;
}

.skill-progress {
    height: 100%;
    background: linear-gradient(90deg, #3b82f6, #60a5fa);
    border-radius: 10px;
    width: 0;
    transition: width 2s ease-in-out;
}

/* Personal Section */
.personal-section {
    padding: 5rem 0;
    background: #f8f9fa;
}

.personal-content {
    display: grid;
    grid-template-columns: 1.5fr 1fr;
    gap: 4rem;
    align-items: start;
}

.personal-text h2 {
    font-size: 2.5rem;
    color: #1e3a8a;
    margin-bottom: 2rem;
}

.personal-text p {
    font-size: 1.1rem;
    line-height: 1.8;
    color: #4b5563;
    margin-bottom: 1.5rem;
    text-align: justify;
}

.personal-text blockquote {
    background: white;
    border-left: 4px solid #3b82f6;
    padding: 1.5rem;
    margin: 2rem 0;
    border-radius: 0 10px 10px 0;
    font-style: italic;
    color: #1e3a8a;
    box-shadow: 0 5px 15px rgba(0,0,0,0.1);
}

.personal-text blockquote footer {
    margin-top: 1rem;
    font-size: 0.9rem;
    color: #6b7280;
}

.personal-gallery h3 {
    font-size: 1.8rem;
    color: #1e3a8a;
    margin-bottom: 1.5rem;
    text-align: center;
}

.inspiration-grid {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 1rem;
}

.inspiration-item {
    text-align: center;
    background: white;
    border-radius: 10px;
    padding: 1rem;
    box-shadow: 0 5px 15px rgba(0,0,0,0.1);
    transition: transform 0.3s ease;
}

.inspiration-item:hover {
    transform: translateY(-5px);
}

.inspiration-item img {
    width: 100%;
    height: 120px;
    object-fit: cover;
    border-radius: 8px;
    margin-bottom: 0.5rem;
}

.inspiration-item p {
    font-size: 0.9rem;
    color: #6b7280;
    margin: 0;
}

/* Contact CTA */
.contact-cta {
    background: linear-gradient(135deg, #1e3a8a 0%, #3b82f6 100%);
    color: white;
    padding: 4rem 0;
    text-align: center;
}

.cta-content h2 {
    font-size: 2.5rem;
    margin-bottom: 1rem;
    font-weight: 300;
}

.cta-content p {
    font-size: 1.2rem;
    margin-bottom: 2rem;
    opacity: 0.9;
}

.btn-contact {
    display: inline-block;
    padding: 15px 40px;
    background: white;
    color: #1e3a8a;
    text-decoration: none;
    border-radius: 30px;
    font-weight: 600;
    font-size: 1.1rem;
    transition: all 0.3s ease;
    box-shadow: 0 5px 15px rgba(0,0,0,0.2);
}

.btn-contact:hover {
    transform: translateY(-3px);
    box-shadow: 0 10px 25px rgba(0,0,0,0.3);
    background: #f8f9fa;
}

/* Responsive Design */
@media (max-width: 1024px) {
    .about-grid {
        grid-template-columns: 1fr;
        gap: 3rem;
    }
    
    .profile-section {
        position: static;
    }
    
    .philosophy-grid {
        grid-template-columns: 1fr;
    }
    
    .personal-content {
        grid-template-columns: 1fr;
        gap: 3rem;
    }
    
    .timeline-year {
        position: static;
        display: inline-block;
        margin-bottom: 0.5rem;
    }
    
    .timeline {
        padding-left: 1rem;
    }
    
    .timeline-item {
        padding-left: 1.5rem;
    }
}

@media (max-width: 768px) {
    .hero-about h1 {
        font-size: 2.5rem;
    }
    
    .skills-grid {
        grid-template-columns: 1fr;
        gap: 2rem;
    }
    
    .inspiration-grid {
        grid-template-columns: 1fr;
    }
    
    .profile-stats {
        flex-direction: column;
        gap: 1rem;
    }
    
    .timeline::before {
        left: 0.5rem;
    }
    
    .timeline-item::before {
        left: -0.5rem;
    }
    
    .biography-section,
    .profile-section {
        padding: 1.5rem;
    }
}

@media (max-width: 480px) {
    .hero-about {
        padding: 3rem 1rem;
    }
    
    .hero-about h1 {
        font-size: 2rem;
    }
    
    .profile-image img {
        width: 150px;
        height: 150px;
    }
    
    .philosophy-item {
        padding: 1.5rem;
    }
    
    .philosophy-icon {
        font-size: 2.5rem;
    }
    
    .container {
        padding: 0 1rem;
    }
}


/* Dodatkowe animacje */
@keyframes slideInUp {
    from {
        opacity: 0;
        transform: translateY(50px);
    }
    to {
        opacity: 1;
        transform: translateY(0);
    }
}

.timeline-item {
    animation: slideInUp 0.8s ease forwards;
}

/* Animacja dla inspiracji */
.inspiration-item {
    opacity: 0;
    transform: translateY(20px);
    animation: slideInUp 0.6s ease forwards;
}

.inspiration-item:nth-child(1) {
    animation-delay: 0.2s;
}
.inspiration-item:nth-child(2) {
    animation-delay: 0.4s;
}
.inspiration-item:nth-child(3) {
    animation-delay: 0.6s;
}
.inspiration-item:nth-child(4) {
    animation-delay: 0.8s;
}

/* Animacja dla skill bars */
.skill-progress {
    width: 0;
    animation: growSkill 2s ease forwards;
}

@keyframes growSkill {
    from {
        width: 0;
    }
    to {
        width: var(--skill-level, 80%);
    }
}

/* Uzupełnienie dla CTA przycisku */
.btn-contact:active {
    transform: translateY(0);
    box-shadow: 0 5px 15px rgba(0,0,0,0.2);
}

/* Blokada zaznaczania tekstu */
body, .no-select {
  -webkit-user-select: none;
  -moz-user-select: none;
  -ms-user-select: none;
  user-select: none;
}

/* Blokada przeciągania obrazów */
img {
  -webkit-user-drag: none;
  user-drag: none;
}

/* Opcjonalnie — jeśli chcesz, żeby obrazów nie dało się klikać */
.protected-img {
  pointer-events: none;
}

