/* RESET */
* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

body {
    font-family: 'Roboto', sans-serif;
    scroll-behavior: smooth;
}

/* HEADER */
header {
    width: 100%;
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 30px 50px;
    position: fixed;
    top: 0;
    left: 0;
    background-color: rgba(0,0,0,0);
    z-index: 1000;
}

.logo {
    font-weight: 700;
    font-size: 2.5rem;
    color: #fff;
    text-transform: uppercase;
}

nav ul {
    display: flex;
    list-style: none;
    gap: 40px;
}

nav ul li a {
    text-decoration: none;
    color: #fff;
    font-weight: 500;
    font-size: 1.2rem;
    text-transform: uppercase;
    transition: color 0.3s;
}

nav ul li a:hover {
    color: #FFD700;
}

/* HERO */
.hero {
    height: 75vh;
    position: relative;
    background: url('tlo.png') no-repeat center center fixed;
    background-size: cover;
    display: flex;
    justify-content: center;
    align-items: center;
}

.hero .overlay {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background-color: rgba(0,0,0,0.5);
    display: flex;
    justify-content: center;
    align-items: center;
}

.hero-content {
    text-align: center;
    color: #fff;
    max-width: 800px;
}

.hero-content h1 {
    font-size: 3rem;
    line-height: 1.2;
    margin-bottom: 20px;
    text-transform: uppercase;
}

.hero-content p {
    font-size: 1.5rem;
    margin-bottom: 30px;
}

.cta-btn {
    display: inline-block;
    padding: 15px 35px;
    background-color: #FFD700;
    color: #000;
    font-weight: 700;
    text-transform: uppercase;
    text-decoration: none;
    transition: background-color 0.3s;
}

.cta-btn:hover {
    background-color: #e5c100;
}

/* PORTFOLIO */
.grey-section {
    background-color: #0a0a0a;
    position: relative;
    padding: 120px 50px;
    color: #fff;
    text-align: center;
}

.shadow-top, .shadow-bottom {
    position: absolute;
    left: 0;
    width: 100%;
    height: 50px;
    pointer-events: none;
}

.shadow-top {
    top: 0;
    background: linear-gradient(to bottom, #0a0a0a, rgba(10,10,10,0));
}

.shadow-bottom {
    bottom: 0;
    background: linear-gradient(to top, #0a0a0a, rgba(10,10,10,0));
}

.grey-section h2 {
    font-size: 2.5rem;
    text-transform: uppercase;
    margin-bottom: 50px;
}

.portfolio-container {
    display: flex;
    justify-content: center;
    gap: 50px;
    flex-wrap: wrap;
}

.portfolio-column {
    display: flex;
    flex-direction: column;
    align-items: center;
    min-width: 280px;
}

.portfolio-column h3 {
    color: #fff;
    margin-bottom: 20px;
    font-size: 1.9rem;
    text-transform: none;
}

.portfolio-slider {
    position: relative;
    width: 280px;
    height: 420px;
}

.portfolio-slider img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    box-shadow: 0 6px 25px rgba(0,0,0,0.6);
    display: none;
    transition: opacity 0.5s ease-in-out;
}

.portfolio-slider img.active {
    display: block;
}


/* USŁUGI */
.services-section {
    position: relative;
    background: url('tlo2.png') no-repeat center center fixed;
    background-size: cover;
    padding: 120px 50px;
    color: #fff;
    text-align: center;
}

.services-section .overlay-services {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background-color: rgba(0,0,0,0.6);
    z-index: 0;
}

.services-section .content {
    position: relative;
    z-index: 1;
}

.services-section h2 {
    font-size: 2.5rem;
    margin-bottom: 50px;
    text-transform: uppercase;
}

.services-container {
    display: flex;
    justify-content: center;
    gap: 40px;
    flex-wrap: wrap;
}

.service-card {
    background-color: rgba(26,26,26,0.8);
    padding: 30px 20px;
    border-radius: 15px;
    width: 250px;
    box-shadow: 0 4px 20px rgba(0,0,0,0.6);
    transition: transform 0.3s, box-shadow 0.3s;
}

.service-card:hover {
    transform: translateY(-10px);
    box-shadow: 0 8px 30px rgba(0,0,0,0.8);
}

.service-card .icon {
    font-size: 3rem;
    margin-bottom: 20px;
}

.service-card h3 {
    font-size: 1.5rem;
    margin-bottom: 15px;
}

.service-card p {
    font-size: 1rem;
    line-height: 1.5;
    text-align: center; /* wyśrodkowanie tekstu */
}
/* CENNIK */
.pricing-section {
    background-color: #0a0a0a; /* ten sam szaro-czarny */
    padding: 120px 50px;
    color: #fff;
    text-align: center;
}

.pricing-section h2 {
    font-size: 2.5rem;
    margin-bottom: 50px;
    text-transform: uppercase;
}

.pricing-container {
    display: flex;
    justify-content: center;
    gap: 40px;
    flex-wrap: wrap;
}

.pricing-card {
    background-color: #111111;
    padding: 35px 25px;
    width: 260px;
    border-radius: 15px;
    box-shadow: 0 4px 20px rgba(0,0,0,0.6);
    transition: transform 0.3s, box-shadow 0.3s;
}

.pricing-card:hover {
    transform: translateY(-10px);
    box-shadow: 0 8px 30px rgba(0,0,0,0.8);
}

.pricing-card h3 {
    font-size: 1.8rem;
    margin-bottom: 25px;
}

.pricing-card p {
    font-size: 1.1rem;
    line-height: 1.7;
}
/* CENNIK */
.pricing-section {
    background-color: #0a0a0a; 
    padding: 150px 50px; /* większy padding pionowy */
    color: #fff;
    text-align: center;
    position: relative;
}

.pricing-section h2 {
    font-size: 3rem; /* większy nagłówek */
    margin-bottom: 60px;
    text-transform: uppercase;
}

.pricing-container {
    display: flex;
    justify-content: center;
    gap: 60px; /* większa przestrzeń między kaflami */
    flex-wrap: wrap;
}

.pricing-column {
    background-color: #1a1a1a;
    padding: 50px 25px; /* większy padding w kaflach */
    width: 260px; /* szersze kafle */
    border-radius: 15px;
    box-shadow: 0 6px 25px rgba(0,0,0,0.6); /* mocniejszy cień */
    transition: transform 0.3s, box-shadow 0.3s;
    display: flex;
    flex-direction: column;
    align-items: center;
    border: 2px solid #FFD700;
}

.pricing-column h3 {
    font-size: 2rem; /* większy tytuł kafla */
    margin-bottom: 25px;
    text-transform: uppercase;
}

.pricing-column p {
    font-size: 1.1rem; /* większy tekst wewnątrz kafla */
    line-height: 1.6;
    text-align: center;
}

.fast-delivery {
    margin-top: 40px; /* większy odstęp od kafli */
    font-size: 1.3rem; 
    font-weight: 500;
    color: #ffffff;
}
/* O NAS */
.about-section {
    position: relative;
    padding: 150px 50px;
    display: flex;
    justify-content: center;
    align-items: center;
    text-align: center;
}

.about-background {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: url('tlo3.png') center/cover no-repeat fixed; /* fixed = zablokowane */
    filter: brightness(0.35); /* przyciemnione tło */
    z-index: 1;
}

.about-section .content {
    position: relative;
    z-index: 2;
    width: 100%;
    max-width: 1200px;
}

.about-card {
    background-color: rgba(26,26,26,0.85); /* ciemna nakładka */
    padding: 60px 40px;
    border-radius: 30px;
    box-shadow: 0 8px 30px rgba(0,0,0,0.7);
    color: #fff;
}

.about-card h2 {
    font-size: 2.5rem;
    margin-bottom: 30px;
    text-transform: uppercase;
}

.about-card p {
    font-size: 1.2rem;
    margin-bottom: 30px;
    line-height: 1.6;
}

.about-card ul {
    list-style: none;
    padding: 0;
    font-size: 1.1rem;
}

.about-card ul li {
    margin-bottom: 10px;
}
/* OPINIE */
.testimonials-section {
    background-color: #0a0a0a; /* szare tło */
    padding: 120px 50px;
    color: #fff;
    text-align: center;
    position: relative;
}

.testimonials-section h2 {
    font-size: 2.5rem;
    text-transform: uppercase;
    margin-bottom: 50px;
}

.testimonials-container {
    display: flex;
    justify-content: center;
    gap: 50px;
    flex-wrap: wrap;
}

.testimonial {
    background-color: #1a1a1a;
    padding: 40px 30px;
    border-radius: 20px;
    width: 280px;
    box-shadow: 0 6px 25px rgba(0,0,0,0.6);
    display: flex;
    flex-direction: column;
    align-items: center;
}

.testimonial img {
    width: 100px;
    height: 100px;
    border-radius: 50%;
    object-fit: cover;
    margin-bottom: 20px;
    box-shadow: 0 4px 15px rgba(0,0,0,0.5);
}

.testimonial h3 {
    font-size: 1.3rem;
    margin-bottom: 15px;
}

.testimonial p {
    font-size: 1rem;
    line-height: 1.5;
}
.booking-section {
    background-color: #0a0a0a;
    padding: 100px 50px;
    color: #fff;
    text-align: center;
}

.booking-section h2 {
    font-size: 2.5rem;
    text-transform: uppercase;
    margin-bottom: 40px;
}

#booking-form {
    max-width: 600px;
    margin: 0 auto;
    display: flex;
    flex-direction: column;
    gap: 15px;
    text-align: left;
}

#booking-form input,
#booking-form select {
    padding: 12px 15px;
    border-radius: 10px;
    border: none;
    background-color: #1a1a1a;
    color: #fff;
    font-size: 1rem;
}

.cta-btn {
    display: inline-block;
    padding: 15px 35px;
    background-color: #FFD700;
    color: #000;
    font-weight: 700;
    text-transform: uppercase;
    text-decoration: none;
    transition: background-color 0.3s;
    border: none;
    border-radius: 10px;
    cursor: pointer;
    margin-top: 10px;
}

.cta-btn:hover {
    background-color: #e5c100;
}

.response-time {
    margin-top: 20px;
    font-size: 1.2rem;
    color: #FFD700;
    font-weight: 700;
}
.footer-section {
    background-color: #0a0a0a;
    color: #fff;
    text-align: center;
    padding: 50px 20px;
    font-size: 0.95rem;
}

.footer-logo {
    width: 80px;
    margin-bottom: 20px;
}

.footer-content p {
    margin: 5px 0;
    color: #ccc;
}
