/* Zmienne CSS dla pastelowego, miękkiego wyglądu */
:root {
    --primary-color: #A3D8F4; /* Baby Blue */
    --secondary-color: #F7A8B8; /* Soft Pink */
    --accent-color: #FFF2CC; /* Creamy Yellow */
    --text-dark: #4A4A4A; /* Soft Gray for text */
    --text-light: #7A7A7A;
    --bg-light: #FAFAFA;
    --bg-white: #FFFFFF;
    --shadow-soft: 0 10px 30px rgba(0, 0, 0, 0.05);
    --shadow-hover: 0 15px 40px rgba(0, 0, 0, 0.08);
    --border-radius: 20px;
    --transition: all 0.3s ease;
}

* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

html {
    scroll-behavior: smooth;
    font-family: 'Quicksand', sans-serif;
    color: var(--text-dark);
}

body {
    background-color: var(--bg-light);
    line-height: 1.6;
    overflow-x: hidden;
}

/* Typography */
h1, h2, h3 {
    font-weight: 700;
    color: var(--text-dark);
    line-height: 1.2;
}

h2 span {
    color: var(--secondary-color);
}

p {
    font-size: 1.1rem;
    color: var(--text-light);
    margin-bottom: 20px;
}

a {
    text-decoration: none;
    color: inherit;
}

.container {
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 20px;
}

/* Przyciski */
.btn {
    display: inline-block;
    padding: 14px 30px;
    border-radius: 50px;
    font-weight: 600;
    font-size: 1.1rem;
    cursor: pointer;
    transition: var(--transition);
    border: none;
    text-align: center;
}

.btn-primary {
    background-color: var(--secondary-color);
    color: white;
    box-shadow: 0 8px 15px rgba(247, 168, 184, 0.3);
}

.btn-primary:hover {
    background-color: #E695A5;
    transform: translateY(-2px);
    box-shadow: 0 12px 20px rgba(247, 168, 184, 0.4);
}

.btn-secondary {
    background-color: var(--primary-color);
    color: white;
    box-shadow: 0 8px 15px rgba(163, 216, 244, 0.3);
}

.btn-secondary:hover {
    background-color: #8CC4E0;
    transform: translateY(-2px);
    box-shadow: 0 12px 20px rgba(163, 216, 244, 0.4);
}

/* Navigacja */
#navbar {
    position: fixed;
    top: 0;
    width: 100%;
    background: rgba(255, 255, 255, 0.95);
    backdrop-filter: blur(10px);
    z-index: 1000;
    padding: 15px 0;
    box-shadow: 0 2px 10px rgba(0,0,0,0.03);
    transition: var(--transition);
}

.nav-container {
    display: flex;
    justify-content: space-between;
    align-items: center;
}

.logo .logo-text {
    font-size: 1.8rem;
    font-weight: 700;
    color: var(--primary-color);
}

.nav-logo {
    max-height: 60.5px; /* Zwiększone o kolejne 10% z 55px */
    mix-blend-mode: multiply;
    height: auto;
    width: auto;
    transition: var(--transition);
}

.nav-links {
    display: flex;
    list-style: none;
}

.nav-links li {
    margin-left: 30px;
}

.nav-links a {
    font-weight: 600;
    color: var(--text-dark);
    transition: var(--transition);
    position: relative;
}

.nav-links a:hover {
    color: var(--secondary-color);
}

.nav-links a::after {
    content: '';
    position: absolute;
    width: 0;
    height: 2px;
    bottom: -5px;
    left: 0;
    background-color: var(--secondary-color);
    transition: var(--transition);
}

.nav-links a:hover::after {
    width: 100%;
}

.hamburger {
    display: none;
    cursor: pointer;
}

.hamburger div {
    width: 25px;
    height: 3px;
    background-color: var(--text-dark);
    margin: 5px;
    transition: var(--transition);
}

/* Hero Section */
#hero {
    padding-top: 120px;
    background: linear-gradient(135deg, rgba(247,168,184,0.1) 0%, rgba(163,216,244,0.1) 100%);
    position: relative;
    padding-bottom: 50px;
}

.hero-container {
    display: flex;
    align-items: center;
    justify-content: space-between;
    min-height: 70vh;
}

.hero-content {
    flex: 1;
    padding-right: 50px;
}

.hero-content h1 {
    font-size: 3.5rem;
    margin-bottom: 20px;
}

.hero-image {
    flex: 1;
    display: flex;
    justify-content: center;
    position: relative;
}

.image-wrapper {
    width: 100%;
    max-width: 500px;
    aspect-ratio: 4/5;
    background: #ffffff;
    border-radius: 40px;
    display: flex;
    align-items: center;
    justify-content: center;
    box-shadow: var(--shadow-soft);
    overflow: hidden;
    position: relative;
}

.image-wrapper img {
    width: 100%;
    height: 100%;
    object-fit: contain;
    border-radius: 40px;
}

.placeholder-text {
    color: var(--text-light);
    font-style: italic;
    font-size: 0.9rem;
    text-align: center;
    padding: 20px;
}

.wave-bottom, .wave-top {
    position: absolute;
    left: 0;
    width: 100%;
    line-height: 0;
}

.wave-bottom {
    bottom: -1px;
}

.wave-top {
    top: -1px;
}

/* Sekcja O nas */
#about {
    padding: 100px 0;
    background-color: var(--bg-white);
}

.about-container {
    display: flex;
    align-items: center;
    gap: 60px;
}

.about-image {
    flex: 1;
}

.about-text {
    flex: 1;
}

.about-text h2 {
    font-size: 2.8rem;
    margin-bottom: 30px;
}

.features {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 30px;
    margin-top: 40px;
}

.feature {
    background: var(--bg-light);
    padding: 25px;
    border-radius: var(--border-radius);
    transition: var(--transition);
}

.feature:hover {
    transform: translateY(-5px);
    box-shadow: var(--shadow-soft);
}

.feature .icon {
    font-size: 2.5rem;
    margin-bottom: 15px;
}

.feature h3 {
    font-size: 1.2rem;
    margin-bottom: 10px;
}

/* Sekcja Oferta */
#offer {
    padding: 100px 0;
    background-color: var(--bg-light);
    text-align: center;
}

.section-title {
    font-size: 2.8rem;
    margin-bottom: 15px;
}

.section-subtitle {
    max-width: 700px;
    margin: 0 auto 50px auto;
}

.offer-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(320px, 1fr));
    gap: 40px;
}

.offer-card {
    background: var(--bg-white);
    border-radius: var(--border-radius);
    overflow: hidden;
    box-shadow: var(--shadow-soft);
    transition: var(--transition);
    text-align: left;
}

.offer-card:hover {
    transform: translateY(-10px);
    box-shadow: var(--shadow-hover);
}

.card-img {
    width: 100%;
    height: 300px;
    background: #ffffff;
    display: flex;
    align-items: center;
    justify-content: center;
}

.card-img img {
    width: 100%;
    height: 100%;
    object-fit: contain;
}

.card-content {
    padding: 30px;
}

.card-content h3 {
    font-size: 1.4rem;
    margin-bottom: 15px;
}

/* Oferta / Formularz */
#order {
    padding: 100px 0;
    background-color: var(--bg-white);
    text-align: center;
}

.promo-grid {
    display: flex;
    justify-content: center;
    gap: 2px; /* Small gap like in the screenshot */
    flex-wrap: wrap;
    margin-top: 40px;
}

.promo-card {
    background-size: cover;
    background-position: center;
    padding: 60px 40px;
    width: 32%;
    min-width: 300px;
    color: white;
    text-align: center;
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: center;
    position: relative;
    /* Soft blending */
}

.promo-card h3 {
    color: white;
    font-size: 2rem;
    margin-bottom: 20px;
    font-weight: 700;
}

.promo-card p {
    color: #e0e0e0;
    font-size: 1rem;
    line-height: 1.5;
    margin-bottom: 20px;
}

.promo-card .price {
    font-size: 1.2rem;
    font-weight: bold;
    color: white;
    margin-bottom: 25px;
}

.promo-card .price span {
    font-size: 0.8rem;
    font-weight: normal;
}

.btn.kup-btn {
    background-color: #3b82f6; /* Niebieski przycisk z obrazka */
    color: white;
    border-radius: 5px;
    padding: 12px 30px;
    font-weight: 600;
    box-shadow: none;
}

.btn.kup-btn:hover {
    background-color: #2563eb;
    transform: none;
}

.order-container, .order-form-container {
    max-width: 800px;
    margin: 0 auto;
    background: var(--bg-light);
    border-radius: var(--border-radius);
    padding: 50px;
    text-align: left;
}

.form-group {
    margin-bottom: 25px;
}

.form-group label {
    display: block;
    margin-bottom: 8px;
    font-weight: 600;
    color: var(--text-dark);
}

.form-group input[type="text"],
.form-group input[type="email"],
.form-group textarea {
    width: 100%;
    padding: 15px;
    border: 1px solid #E0E0E0;
    border-radius: 10px;
    font-family: inherit;
    font-size: 1rem;
    background: var(--bg-white);
    transition: var(--transition);
}

.form-group input:focus,
.form-group textarea:focus {
    outline: none;
    border-color: var(--primary-color);
    box-shadow: 0 0 0 3px rgba(163, 216, 244, 0.2);
}

.radio-group {
    display: flex;
    flex-direction: column;
    gap: 15px;
}

.radio-label {
    display: flex;
    align-items: center;
    cursor: pointer;
    font-weight: 500;
    background: var(--bg-white);
    padding: 15px 20px;
    border-radius: 10px;
    border: 1px solid #E0E0E0;
    transition: var(--transition);
}

.radio-label:hover {
    border-color: var(--primary-color);
}

.radio-label input[type="radio"] {
    display: none;
}

.custom-radio {
    width: 20px;
    height: 20px;
    border: 2px solid var(--text-light);
    border-radius: 50%;
    margin-right: 15px;
    position: relative;
}

.radio-label input[type="radio"]:checked + .custom-radio {
    border-color: var(--primary-color);
}

.radio-label input[type="radio"]:checked + .custom-radio::after {
    content: '';
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    width: 10px;
    height: 10px;
    background: var(--primary-color);
    border-radius: 50%;
}

.form-note {
    margin-top: 15px;
    font-size: 0.85rem;
    text-align: center;
}

/* Modal */
.modal {
    display: none;
    position: fixed;
    z-index: 2000;
    left: 0;
    top: 0;
    width: 100%;
    height: 100%;
    overflow: auto;
    background-color: rgba(0,0,0,0.6);
    backdrop-filter: blur(5px);
}

.modal-content {
    background-color: #fefefe;
    margin: 10% auto;
    padding: 40px;
    border-radius: var(--border-radius);
    width: 90%;
    max-width: 600px;
    position: relative;
    box-shadow: 0 5px 30px rgba(0,0,0,0.3);
}

.close-btn {
    position: absolute;
    top: 20px;
    right: 25px;
    color: #aaa;
    font-size: 28px;
    font-weight: bold;
    cursor: pointer;
}

.close-btn:hover,
.close-btn:focus {
    color: black;
    text-decoration: none;
    cursor: pointer;
}

/* Współpraca */
#collaboration {
    padding: 150px 0 100px 0;
    background-color: var(--primary-color);
    color: var(--text-dark);
    position: relative;
    text-align: center;
}

#collaboration h2, 
#collaboration h2 span,
#collaboration p {
    color: var(--text-dark);
}

.collab-content {
    max-width: 800px;
    margin: 0 auto;
}

.collab-content ul {
    list-style: none;
    margin: 40px 0;
    display: flex;
    flex-wrap: wrap;
    justify-content: center;
    gap: 20px;
}

.collab-content ul li {
    background: rgba(255,255,255,0.2);
    padding: 10px 20px;
    border-radius: 30px;
    font-weight: 600;
}

/* Kontakt */
#contact {
    padding: 100px 0;
    background-color: var(--bg-white);
}

.contact-container {
    display: flex;
    gap: 60px;
}

.contact-info, .contact-form {
    flex: 1;
}

.info-item {
    display: flex;
    align-items: center;
    margin-bottom: 20px;
}

.info-icon {
    font-size: 2rem;
    margin-right: 20px;
}

.contact-form form {
    display: flex;
    flex-direction: column;
    gap: 20px;
}

.contact-form input, .contact-form textarea {
    padding: 15px;
    border: 1px solid #E0E0E0;
    border-radius: 10px;
    font-family: inherit;
    font-size: 1rem;
}

/* Footer */
footer {
    background-color: var(--text-dark);
    color: white;
    padding: 50px 0 20px 0;
    text-align: center;
}

.footer-content {
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 20px;
}

.footer-logo {
    font-size: 1.8rem;
    font-weight: 700;
    color: var(--secondary-color);
}

.footer-links a {
    color: #ccc;
    margin: 0 10px;
    font-size: 0.9rem;
}

.footer-links a:hover {
    color: white;
}

/* Responsive Design */
@media screen and (max-width: 968px) {
    .hero-container, .about-container, .contact-container {
        flex-direction: column;
        text-align: center;
    }
    
    .hero-content {
        padding-right: 0;
        margin-bottom: 50px;
    }

    .hero-content h1 {
        font-size: 2.8rem;
    }

    .offer-grid {
        grid-template-columns: repeat(2, 1fr);
    }
}

@media screen and (max-width: 768px) {
    body {
        overflow-x: hidden;
    }
    
    .nav-links {
        position: absolute;
        right: -100%;
        top: 70px;
        background: rgba(255, 255, 255, 0.98);
        flex-direction: column;
        align-items: center;
        width: 100%;
        height: calc(100vh - 70px);
        transition: right 0.5s ease-in;
        box-shadow: var(--shadow-soft);
    }

    .nav-links.nav-active {
        right: 0;
    }

    .nav-links li {
        margin: 30px 0;
    }

    .hamburger {
        display: block;
    }

    .hamburger.toggle .line1 {
        transform: rotate(-45deg) translate(-5px, 6px);
    }

    .hamburger.toggle .line2 {
        opacity: 0;
    }

    .hamburger.toggle .line3 {
        transform: rotate(45deg) translate(-5px, -6px);
    }

    .offer-grid {
        grid-template-columns: 1fr;
    }
    
    .order-container {
        padding: 30px 20px;
    }
}
/* Poprawka dla klikalnych numerów i maili */
.info-item p a {
    color: inherit;
    text-decoration: none;
    transition: var(--transition);
}

.info-item p a:hover {
    color: var(--secondary-color);
}

/* Upewnienie się, że obrazy w ofercie są zawsze wyśrodkowane */
.card-img img {
    max-width: 100%;
    max-height: 100%;
}