/* Główne style dla strony O mnie */

/* Importujemy style z głównego pliku */
@import 'style1.css';

/* Style dla sekcji hero */
.hero-about {
    height: 25vh;
    margin-top: 0;
    padding-top: 55px;
}

@media (min-width: 768px) {
    .hero-about {
        height: 25vh;
        margin-top: 0;
        padding-top: 60px;
    }
}

/* Style dla menu mobilnego */
.mobile-menu {
    position: absolute;
    top: 100%;
    right: 0;
    background: white;
    width: 200px;
    box-shadow: 0 4px 6px -1px rgba(0, 0, 0, 0.1);
    z-index: 1000;
}

@media (max-width: 768px) {
    .mobile-menu.show {
        display: block;
    }

    .hero-about {
        height: 22vh;
        margin-top: 0;
        padding-top: 90px;
    }
    
    nav .container {
        padding-top: 0.75rem;
        padding-bottom: 0.75rem;
    }

    .container {
        padding-left: 1rem;
        padding-right: 1rem;
    }

    h1 {
        font-size: 2.5rem;
    }

    h2 {
        font-size: 2rem;
    }

    .benefit-card {
        margin-bottom: 1.5rem;
    }
}

@media (max-width: 640px) {
    .hero-about {
        height: 20vh;
        padding-top: 90px;
    }

    h1 {
        font-size: 2rem;
    }

    h2 {
        font-size: 1.75rem;
    }

    .grid {
        grid-template-columns: 1fr;
    }
}

/* Animacje */
.transition {
    transition: all 0.3s ease;
}

/* Efekty hover dla linków */
a:hover {
    transition: all 0.3s ease;
}

/* Style dla kart */
.benefit-card {
    transition: all 0.3s ease;
    overflow: hidden;
    position: relative;
}

.benefit-card::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 4px;
    background-color: #ff0033;
    transform: translateX(-100%);
    transition: transform 0.5s ease;
}

.benefit-card:hover::before {
    transform: translateX(0);
}

.benefit-card:hover {
    transform: translateY(-8px);
    box-shadow: 0 10px 25px rgba(0, 0, 0, 0.1);
}

/* Responsywne obrazy */
img {
    max-width: 100%;
    height: auto;
}

/* Style dla liczników */
.counter {
    transition: all 0.3s ease;
}

.counter:hover {
    transform: scale(1.1);
}

/* Dodatkowe style dla sekcji z certyfikatami */
@media (max-width: 768px) {
    .hero-about {
        height: 35vh;
        margin-top: 0;
        padding-top: 90px;
    }
    
    nav .container {
        padding-top: 0.75rem;
        padding-bottom: 0.75rem;
    }

    .container {
        padding-left: 1rem;
        padding-right: 1rem;
    }

    h1 {
        font-size: 2.5rem;
    }

    h2 {
        font-size: 2rem;
    }

    .benefit-card {
        margin-bottom: 1.5rem;
    }
}

@media (max-width: 640px) {
    .hero-about {
        height: 30vh;
        padding-top: 90px;
    }

    h1 {
        font-size: 2rem;
    }

    h2 {
        font-size: 1.75rem;
    }

    .grid {
        grid-template-columns: 1fr;
    }
} 