/* Reset i podstawowe style */
* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

:root {
    /* Kolorystyka medyczna z przyjaznym wydźwiękiem */
    --primary-color: #FF6B35;
    --primary-dark: #D84315;
    --primary-light: #FFF3E0;
    --secondary-color: #FFC107;
    --accent-color: #FF9800;
    
    --text-dark: #263238;
    --text-medium: #546E7A;
    --text-light: #78909C;
    
    --background-white: #FFFFFF;
    --background-light: #FFF8F0;
    --background-accent: #FFF9C4;
    
    --border-color: #CFD8DC;
    --shadow-sm: 0 2px 4px rgba(0, 0, 0, 0.08);
    --shadow-md: 0 4px 12px rgba(0, 0, 0, 0.12);
    --shadow-lg: 0 8px 24px rgba(0, 0, 0, 0.15);
    
    --transition: all 0.3s ease;
    --border-radius: 12px;
    
    --font-family: 'Inter', -apple-system, BlinkMacSystemFont, 'Segoe UI', Roboto, Oxygen, Ubuntu, sans-serif;
}

html {
    scroll-behavior: smooth;
}

body {
    font-family: var(--font-family);
    color: var(--text-dark);
    line-height: 1.6;
    background-color: var(--background-white);
}

.container {
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 20px;
}

/* Offset dla scroll aby nie zakrywać zawartości nawigacją */
section {
    scroll-margin-top: 80px;
}

/* Nawigacja */
.navbar {
    position: fixed;
    top: 0;
    width: 100%;
    background-color: var(--background-white);
    box-shadow: var(--shadow-sm);
    z-index: 1000;
    transition: var(--transition);
}

.navbar.scrolled {
    box-shadow: var(--shadow-md);
}

.navbar .container {
    display: flex;
    justify-content: flex-end;
    align-items: center;
    padding: 1rem 20px;
}

.nav-brand h2 {
    color: var(--primary-color);
    font-size: 1.5rem;
    font-weight: 600;
}

.nav-toggle {
    display: none;
    flex-direction: column;
    gap: 4px;
    background: none;
    border: none;
    cursor: pointer;
    padding: 8px;
}

.nav-toggle span {
    width: 25px;
    height: 3px;
    background-color: var(--text-dark);
    transition: var(--transition);
    border-radius: 2px;
}

.nav-menu {
    display: flex;
    list-style: none;
    gap: 2rem;
}

.nav-link {
    text-decoration: none;
    color: var(--text-medium);
    font-weight: 500;
    transition: var(--transition);
    position: relative;
    padding: 0.5rem 0;
}

.nav-link::after {
    content: '';
    position: absolute;
    bottom: 0;
    left: 0;
    width: 0;
    height: 2px;
    background-color: var(--primary-color);
    transition: var(--transition);
}

.nav-link:hover {
    color: var(--primary-color);
}

.nav-link:hover::after {
    width: 100%;
}

/* Hero Section */
.hero {
    position: relative;
    width: 100%;
    display: flex;
    align-items: center;
    justify-content: center;
    text-align: center;
    background: url('img/banner_desktop.jpg') center center no-repeat;
    background-size: cover;
    padding-top: 0;
    margin-top: 70px;
    aspect-ratio: 1525 / 444;
    min-height: 250px;
}

.hero::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: rgba(255, 255, 255, 0.3);
    z-index: 0;
}

.hero-content {
    position: relative;
    z-index: 1;
    animation: fadeInUp 1s ease-out;
}

.hero-title {
    font-size: 3.5rem;
    font-weight: 700;
    color: var(--text-dark);
    margin-bottom: 1rem;
    font-family: 'Dancing Script', cursive;
}

.hero-subtitle {
    font-size: 1.5rem;
    color: var(--text-medium);
    margin-bottom: 2rem;
    font-weight: 400;
    font-family: 'Dancing Script', cursive;
}

.btn {
    display: inline-block;
    padding: 1rem 2.5rem;
    text-decoration: none;
    border-radius: var(--border-radius);
    font-weight: 600;
    transition: var(--transition);
    cursor: pointer;
    border: none;
    font-size: 1rem;
}

.btn-primary {
    background-color: var(--primary-color);
    color: white;
    box-shadow: var(--shadow-md);
}

.btn-primary:hover {
    background-color: var(--primary-dark);
    transform: translateY(-2px);
    box-shadow: var(--shadow-lg);
}

/* Section Titles */
.section-title {
    font-size: 2.5rem;
    font-weight: 700;
    color: var(--text-dark);
    text-align: center;
    margin-bottom: 3rem;
    position: relative;
    padding-bottom: 1rem;
}

.section-title::after {
    content: '';
    position: absolute;
    bottom: 0;
    left: 50%;
    transform: translateX(-50%);
    width: 80px;
    height: 4px;
    background: linear-gradient(90deg, var(--primary-color), var(--secondary-color));
    border-radius: 2px;
}

/* O mnie Section */
.about {
    padding: 5rem 0;
    padding-top: 6rem;
    background-color: var(--background-white);
}

.about-content {
    max-width: 900px;
    margin: 0 auto;
    text-align: justify;
}

.about-image .image-placeholder {
    width: 100%;
    aspect-ratio: 1;
    background: linear-gradient(135deg, var(--primary-light), var(--background-accent));
    border-radius: var(--border-radius);
    display: flex;
    align-items: center;
    justify-content: center;
    box-shadow: var(--shadow-md);
}

.about-image img {
    width: 100%;
    height: auto;
    border-radius: var(--border-radius);
    box-shadow: var(--shadow-md);
    object-fit: contain;
}

.about-image svg {
    width: 50%;
    height: 50%;
    color: var(--primary-color);
    opacity: 0.6;
}

.about-text p {
    margin-bottom: 1.2rem;
    color: var(--text-medium);
    font-size: 1.05rem;
    line-height: 1.8;
}

.credentials {
    margin-top: 2rem;
    display: flex;
    flex-direction: column;
    gap: 1rem;
}

.credential-item {
    display: flex;
    align-items: center;
    gap: 1rem;
    padding: 1rem;
    background-color: var(--primary-light);
    border-radius: 8px;
    transition: var(--transition);
}

.credential-item:hover {
    transform: translateX(10px);
    box-shadow: var(--shadow-sm);
}

.credential-icon {
    font-size: 1.5rem;
    color: var(--secondary-color);
    font-weight: bold;
}

/* Oferta Section */
.offer {
    padding: 5rem 0;
    padding-top: 6rem;
    background-color: var(--background-light);
}

.offer-grid {
    display: flex;
    flex-wrap: wrap;
    justify-content: center;
    gap: 2rem;
    margin-bottom: 4rem;
}

.offer-card {
    background-color: var(--background-white);
    border-radius: var(--border-radius);
    overflow: hidden;
    box-shadow: var(--shadow-sm);
    transition: var(--transition);
    width: 100%;
    max-width: 350px;
    flex: 0 1 350px;
}

.offer-card:hover {
    transform: translateY(-8px);
    box-shadow: var(--shadow-lg);
}

.offer-image .image-placeholder {
    width: 100%;
    height: 200px;
    background: linear-gradient(135deg, var(--primary-light), var(--accent-color));
    display: flex;
    align-items: center;
    justify-content: center;
}

.offer-image svg {
    width: 60px;
    height: 60px;
    color: var(--primary-color);
    opacity: 0.7;
}

.offer-content {
    padding: 1.5rem;
}

.offer-content h3 {
    color: var(--text-dark);
    font-size: 1.3rem;
    margin-bottom: 1rem;
    font-weight: 600;
}

.offer-content p {
    color: var(--text-medium);
    line-height: 1.7;
}

/* Cennik */
.pricing {
    display: flex;
    justify-content: center;
}

.pricing-card {
    background: linear-gradient(135deg, var(--primary-color), var(--primary-dark));
    color: white;
    padding: 3rem 4rem;
    border-radius: var(--border-radius);
    text-align: center;
    box-shadow: var(--shadow-lg);
    max-width: 500px;
    width: 100%;
}

.pricing-card h3 {
    font-size: 1.8rem;
    margin-bottom: 1.5rem;
    font-weight: 600;
}

.price {
    margin-bottom: 2rem;
}

.price-amount {
    font-size: 3.5rem;
    font-weight: 700;
    display: block;
}

.price-period {
    font-size: 1.2rem;
    opacity: 0.9;
}

.pricing-details {
    list-style: none;
    text-align: left;
}

.pricing-details li {
    padding: 0.8rem 0;
    border-bottom: 1px solid rgba(255, 255, 255, 0.2);
    display: flex;
    align-items: center;
    gap: 0.5rem;
}

.pricing-details li:last-child {
    border-bottom: none;
}

.pricing-details li::before {
    content: '✓';
    font-weight: bold;
    font-size: 1.2rem;
}

/* Cennik Section */
.pricing-section {
    padding: 5rem 0;
    padding-top: 6rem;
    background-color: var(--background-white);
}

.pricing-grid {
    display: flex;
    flex-wrap: wrap;
    justify-content: center;
    gap: 2rem;
    margin-bottom: 3rem;
}

.pricing-item {
    background-color: var(--background-light);
    padding: 2rem;
    border-radius: var(--border-radius);
    box-shadow: var(--shadow-sm);
    transition: var(--transition);
    border-top: 4px solid var(--primary-color);
    width: 100%;
    max-width: 320px;
    flex: 0 1 320px;
}

.pricing-item:hover {
    transform: translateY(-5px);
    box-shadow: var(--shadow-md);
}

.pricing-item h3 {
    font-size: 1.3rem;
    color: var(--text-dark);
    margin-bottom: 1.5rem;
    font-weight: 600;
    min-height: 60px;
    display: flex;
    align-items: center;
}

.pricing-options {
    display: flex;
    flex-direction: column;
    gap: 1rem;
}

.price-option {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 1rem;
    background-color: var(--background-white);
    border-radius: 8px;
    transition: var(--transition);
}

.price-option:hover {
    background-color: var(--primary-light);
}

.duration {
    font-size: 1rem;
    color: var(--text-medium);
    font-weight: 500;
}

.price {
    font-size: 1.5rem;
    color: var(--primary-color);
    font-weight: 700;
}

.pricing-note {
    background-color: var(--primary-light);
    padding: 2rem;
    border-radius: var(--border-radius);
    border-left: 4px solid var(--primary-color);
    max-width: 600px;
    margin: 0 auto;
}

.pricing-note p {
    font-weight: 600;
    color: var(--text-dark);
    margin-bottom: 1rem;
}

.pricing-note ul {
    list-style: none;
}

.pricing-note li {
    padding: 0.5rem 0;
    color: var(--text-medium);
    display: flex;
    align-items: center;
    gap: 0.5rem;
}

.pricing-note li::before {
    content: '•';
    color: var(--primary-color);
    font-size: 1.5rem;
    font-weight: bold;
}

/* Porady Section */
.tips {
    padding: 5rem 0;
    padding-top: 6rem;
    background-color: var(--background-white);
}

.tips-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(450px, 1fr));
    gap: 3rem;
}

.tips-card {
    background-color: var(--background-light);
    padding: 2.5rem;
    border-radius: var(--border-radius);
    box-shadow: var(--shadow-sm);
    border-left: 4px solid var(--primary-color);
}

.tips-icon {
    width: 60px;
    height: 60px;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    margin-bottom: 1.5rem;
}

.tips-icon-prepare {
    background-color: var(--background-accent);
}

.tips-icon-warning {
    background-color: #FFF3E0;
}

.tips-icon svg {
    width: 30px;
    height: 30px;
}

.tips-icon-prepare svg {
    color: var(--secondary-color);
}

.tips-icon-warning svg {
    color: #FF9800;
}

.tips-card h3 {
    font-size: 1.5rem;
    margin-bottom: 1.5rem;
    color: var(--text-dark);
    font-weight: 600;
}

.tips-intro {
    font-weight: 600;
    color: var(--text-dark);
    margin-bottom: 1rem;
}

.tips-list {
    list-style: none;
}

.tips-list li {
    padding: 0.8rem 0 0.8rem 2rem;
    color: var(--text-medium);
    position: relative;
    line-height: 1.6;
}

.tips-list li::before {
    content: '•';
    position: absolute;
    left: 0.5rem;
    color: var(--primary-color);
    font-size: 1.5rem;
    font-weight: bold;
}

/* Kontakt Section */
.contact {
    padding: 5rem 0;
    padding-top: 6rem;
    background: linear-gradient(135deg, var(--primary-light) 0%, var(--background-light) 100%);
}

.contact-content {
    max-width: 800px;
    margin: 0 auto;
}

.contact-info h3 {
    font-size: 2rem;
    margin-bottom: 1rem;
    color: var(--text-dark);
    text-align: center;
}

.contact-description {
    text-align: center;
    color: var(--text-medium);
    font-size: 1.1rem;
    margin-bottom: 3rem;
}

.contact-methods {
    display: flex;
    flex-direction: column;
    gap: 1.5rem;
    margin-bottom: 3rem;
}

.contact-method {
    display: flex;
    align-items: flex-start;
    gap: 1.5rem;
    padding: 1.5rem;
    background-color: var(--background-white);
    border-radius: var(--border-radius);
    box-shadow: var(--shadow-sm);
    transition: var(--transition);
}

.contact-method:hover {
    transform: translateX(10px);
    box-shadow: var(--shadow-md);
}

.contact-icon {
    width: 50px;
    height: 50px;
    background: linear-gradient(135deg, var(--primary-color), var(--accent-color));
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    flex-shrink: 0;
}

.contact-icon svg {
    width: 24px;
    height: 24px;
    color: white;
}

.contact-method h4 {
    color: var(--text-dark);
    margin-bottom: 0.3rem;
    font-weight: 600;
}

.contact-method p {
    color: var(--text-medium);
    margin: 0;
}

.contact-method a {
    color: var(--primary-color);
    text-decoration: none;
    font-weight: 500;
    transition: var(--transition);
}

.contact-method a:hover {
    color: var(--primary-dark);
}

.contact-note {
    background-color: var(--background-accent);
    padding: 2rem;
    border-radius: var(--border-radius);
    border-left: 4px solid var(--secondary-color);
}

.contact-note p {
    margin-bottom: 0.5rem;
    color: var(--text-medium);
}

.contact-note p:last-child {
    margin-bottom: 0;
}

/* Footer */
.footer {
    background-color: var(--text-dark);
    color: white;
    padding: 2rem 0;
    text-align: center;
}

.footer p {
    margin: 0;
    opacity: 0.8;
}

/* Animations */
@keyframes fadeInUp {
    from {
        opacity: 0;
        transform: translateY(30px);
    }
    to {
        opacity: 1;
        transform: translateY(0);
    }
}

/* Responsive Design */
@media (max-width: 768px) {
    .nav-toggle {
        display: flex;
    }

    .nav-menu {
        position: fixed;
        top: 70px;
        right: -100%;
        width: 100%;
        max-width: 300px;
        height: calc(100vh - 70px);
        background-color: var(--background-white);
        flex-direction: column;
        padding: 2rem;
        box-shadow: var(--shadow-lg);
        transition: var(--transition);
    }

    .nav-menu.active {
        right: 0;
    }

    .hero {
        aspect-ratio: 1015 / 712;
        min-height: 220px;
        background-image: url('img/banner_mobile.jpg');
        background-position: center center;
    }

    .hero-title {
        font-size: 2.5rem;
    }

    .hero-subtitle {
        font-size: 1.2rem;
    }

    .section-title {
        font-size: 2rem;
    }

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

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

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

    .pricing-card {
        padding: 2rem;
    }

    .price-amount {
        font-size: 2.5rem;
    }
}

@media (max-width: 480px) {
    .hero {
        aspect-ratio: 1015 / 712;
        min-height: 180px;
        background-image: url('img/banner_mobile.jpg');
        background-position: center center;
    }

    .hero-title {
        font-size: 2rem;
    }

    .hero-subtitle {
        font-size: 1rem;
    }

    .btn {
        padding: 0.8rem 1.5rem;
        font-size: 0.9rem;
    }

    .section-title {
        font-size: 1.8rem;
    }
}
