/* Główne style dla strony Oferta */

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

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

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

@media (max-width: 768px) {
    .hero-offer {
        height: 22vh;
        margin-top: 0;
        padding-top: 90px;
    }
}

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

/* Style dla kart cenowych */
.pricing-card {
    transition: all 0.3s ease;
    overflow: hidden;
    position: relative;
    min-height: 400px;
    display: flex;
    flex-direction: column;
}

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

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

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

/* Style dla listy w kartach */
.pricing-card ul li {
    margin-bottom: 0.75rem;
}

.pricing-card ul li:last-child {
    margin-bottom: 0;
}

.pricing-card svg {
    flex-shrink: 0;
}

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

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

    .grid {
        gap: 1.5rem;
    }
}

@media (max-width: 640px) {
    h1 {
        font-size: 2rem;
    }

    h2 {
        font-size: 1.75rem;
    }

    .pricing-card {
        padding: 1.5rem;
    }
}

/* Style dla przycisków */
.pricing-card a {
    width: 100%;
    text-align: center;
}

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

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

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

/* Style dla sekcji "Pierwsza wizyta" */
.max-w-4xl {
    margin-left: auto;
    margin-right: auto;
}

/* Dodatkowe style dla ikon w kartach */
.pricing-card svg {
    display: inline-block;
    vertical-align: middle;
}

/* Style dla cen */
.text-4xl.font-bold.text-red-600 {
    margin-bottom: 0.5rem;
}

.text-sm.text-gray-500 {
    margin-top: -0.25rem;
} 