/* Główne styles dla strony Metamorfozy */

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

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

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

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

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

.transformation-card img {
    transition: transform 0.5s ease;
}

.transformation-card:hover img {
    transform: scale(1.05);
}

/* Styles dla statystyk */
.transform-stat {
    transition: all 0.3s ease;
}

.transform-stat:hover {
    transform: translateY(-5px);
}

/* Styles 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;
}

/* Responsywność */
@media (max-width: 768px) {
    .hero-transformations {
        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;
    }

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

    .grid {
        gap: 1.5rem;
    }
}

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

    h1 {
        font-size: 2rem;
    }

    h2 {
        font-size: 1.75rem;
    }

    .transformation-card img {
        height: 200px;
    }
}

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

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

/* Styles dla przycisków */
.btn {
    transition: all 0.3s ease;
}

/* Styles dla sekcji CTA */
.max-w-4xl {
    margin-left: auto;
    margin-right: auto;
}

/* Styles dla znaczników metamorfoz */
.transformation-card .absolute {
    transition: all 0.3s ease;
}

.transformation-card:hover .absolute {
    transform: scale(1.1);
} 