/* GLOBAL */
body {
    margin: 0;
    font-family: 'Inter', sans-serif;
    background: #ffffff;
    color: #0d1b2a;
    line-height: 1.6;
}

section {
    padding: 80px 20px;
    max-width: 1100px;
    margin: auto;
    border-bottom: 1px solid #e0e4eb;
    padding-bottom: 80px;
    margin-top: 40px;
    margin-bottom: 40px;
    transition: background 0.3s ease;
}

h1, h2, h3 {
    font-weight: 700;
    margin-bottom: 20px;
}

/* HERO */
.hero {
    max-width: 100% ;
    min-height: 60vh;
    margin: 0;
    border-bottom: none;
    padding-left: 20px;
    padding-right: 20px;
    background: linear-gradient(
        rgba(0, 0, 0, 0.55),
        rgba(0, 0, 0, 0.55)
    ),
    url('obrazy/back_view.png') center/cover no-repeat;

    color: white;
    text-align: center;
    border-bottom-left-radius: 40px;
    border-bottom-right-radius: 40px;

    display: flex;
    flex-direction: column;
    justify-content: flex-start;
    align-items: center;
    padding-top: 20px;
}
.hero-inner {
    display: flex;
    flex-direction: column;
    gap: 10px;
}

.hero-title {
    font-size: 52px;
    font-weight: 700;
    margin-bottom: 40px;
}

.hero-sub h2 {
    font-size: 28px;
    font-weight: 500;
    margin-bottom: 15px;
}

.hero-sub p {
    font-size: 20px;
    margin-bottom: 10px;
}

.hero-checks {
    margin-top: 10px;
    font-size: 18px;
    opacity: 0.9;
}

.hero-buttons {
    margin-top: 40px;
}

.btn {
    display: inline-block;
    padding: 14px 28px;
    margin: 10px;
    background: #e63946;
    color: white;
    text-decoration: none;
    border-radius: 8px;
    font-weight: 600;
    transition: 0.2s;
}

.btn:hover {
    background: #b71f1f;
}

/* GALLERY */
.gallery {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
    gap: 20px;
}
.gallery img {
    height: 260px;
    object-fit: contain;
    width: 100%;
    border-radius: 12px;
    box-shadow: 0 4px 12px rgba(0,0,0,0.08);
}
img {
    width: 100%;
    height: auto;
    object-fit: cover;
    border-radius: 10px;
}

/* BOXES */
.step-box, .price-box, .faq-item {
    background: #f7f7f7;
    padding: 16px 20px;
    border-radius: 10px;
    margin-bottom: 20px;
    box-shadow: 0 2px 6px rgba(0,0,0,0.05);
}

/* CONTACT */
input, textarea {
    width: 100%;
    padding: 12px;
    margin: 8px 0;
    border-radius: 6px;
    border: 1px solid #ccc;
}

button {
    padding: 14px 28px;
    background: #e63946;
    color: white;
    border: none;
    border-radius: 6px;
    cursor: pointer;
    font-size: 16px;
}

/* FOOTER */
.footer {
    background: #0d1b2a;
    color: white;
    text-align: center;
    padding: 30px 20px;
    margin-top: 40px;
    font-size: 14px;
}

/* Siatka ilustracji */
.nagrania-grid {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 40px 60px;
    max-width: 800px;
    margin: 40px auto;
}

.nagranie-item {
    background: #ffffff;
    padding: 50px;
    border-radius: 14px;
    box-shadow: 0 2px 8px rgba(0,0,0,0.06);
    text-align: center;
    transition: transform 0.2s ease, box-shadow 0.2s ease;
    position: relative;
    cursor: zoom-in;
}

.nagranie-item:hover {
    transform: translateY(-4px);
    box-shadow: 0 4px 14px rgba(0,0,0,0.12);
}

.nagranie-item img {
    width: 90%;
    max-width: 300px;
    height: auto;
    margin-bottom: 20px;
}

@media (max-width: 700px) {
    .nagrania-grid {
        grid-template-columns: 1fr;
        gap: 30px;
    }

    .nagranie-item img {
        width: 60%;
        max-width: 180px;
    }
}

.idea-grid-2col {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 30px 40px;
    margin-top: 50px;
}

.idea-box {
    display: flex;
    gap: 20px;
    align-items: flex-start;
}

.idea-icon {
    width: 60px;
    height: 60px;
    min-width: 60px;
    border-radius: 14px;
    background: #eef1f7;
    display: flex;
    align-items: center;
    justify-content: center;
    padding: 12px;
    box-shadow: inset 0 2px 4px rgba(0,0,0,0.05);
}

.idea-icon svg {
    width: 100%;
    height: 100%;
}

.idea-text h3 {
    margin: 0 0 8px 0;
    font-size: 22px;
    font-weight: 600;
}

.idea-text p {
    margin: 0;
    font-size: 18px;
    line-height: 1.55;
    opacity: 0.9;
}

@media (max-width: 900px) {
    .idea-grid-2col {
        grid-template-columns: 1fr;
    }
}

#vintage-break, #vintage-break-2 {
    max-width: 1100px;
    margin: 40px auto 60px auto;
    padding: 0 20px;
}

.vintage-image, .vintage-image-2 {
    width: 100%;
    height: auto;
    border-radius: 18px;
    box-shadow: 0 6px 20px rgba(0,0,0,0.12);
    display: block;
}

.lightbox {
    display: none;
    position: fixed;
    z-index: 9999;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: rgba(0,0,0,0.85);
    justify-content: center;
    align-items: center;
}

.lightbox img {
    max-width: 90%;
    max-height: 90%;
    border-radius: 12px;
    box-shadow: 0 0 20px rgba(255,255,255,0.2);
}

.close-lightbox {
    position: absolute;
    top: 30px;
    right: 40px;
    font-size: 48px;
    color: white;
    cursor: pointer;
    font-weight: 300;
}

.contact-wrapper {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 50px;
    max-width: 1100px;
    margin: 40px auto;
}

.contact-info h3,
.contact-form h3 {
    margin-bottom: 15px;
    font-size: 24px;
}

.contact-info p {
    font-size: 18px;
    line-height: 1.5;
}

.contact-info a {
    color: #000;
    text-decoration: none;
}

.contact-info a:hover {
    text-decoration: underline;
}

@media (max-width: 800px) {
    .contact-wrapper {
        grid-template-columns: 1fr;
    }
}

.form-popup {
    position: fixed;
    top: 20px;
    right: 20px;
    background: #2ecc71;
    color: white;
    padding: 16px 22px;
    border-radius: 10px;
    box-shadow: 0 4px 12px rgba(0,0,0,0.15);
    font-size: 18px;
    opacity: 0;
    pointer-events: none;
    transition: opacity 0.4s ease;
    z-index: 9999;
}

.form-popup.show {
    opacity: 1;
    pointer-events: auto;
}

#jak-to-dziala {
    text-align: center;
}

.steps {
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 18px;
    max-width: 700px;
    margin: 0 auto;
}

.step-box {
    background: #f7f7f7;
    padding: 20px 26px;
    border-radius: 12px;
    font-size: 20px;
    font-weight: 500;
    width: 100%;
    text-align: center;
    box-shadow: 0 3px 10px rgba(0,0,0,0.05);
}

.step-arrow {
    font-size: 42px;
    color: #d77a7a;
    font-weight: bold;
    line-height: 1;
    margin: -5px 0;
}
