* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
    scroll-behavior: smooth;
}

body {
    font-family: "Barlow", sans-serif;
    color: #1b1b1b;
    background-color: #fafaf8;
}

/* HERO */

.site-header {
    position: relative;
    min-height: 84vh;
    background:
        linear-gradient(180deg, rgba(20,15,10,0.6) 0%, rgba(20,15,10,0.4) 45%, rgba(20,15,10,0.8) 100%),
        url(images/hero.png);
    background-size: cover;
    background-position: 30% 35%;
    color: white;
    overflow: hidden;
}

.site-header::after {
    content: "";
    position: absolute;
    left: 0;
    right: 0;
    bottom: 0;
    height: 120px;
    background: linear-gradient(to bottom, rgba(242,236,227,0) 0%, #f2ece3 100%);
    pointer-events: none;
}

.nav-bar {
    position: relative;
    width: 100%;
    padding: 20px 8%;
    display: flex;
    justify-content: space-between;
    align-items: center;
    background: rgba(27,27,27,0.35);
    backdrop-filter: blur(12px);
    -webkit-backdrop-filter: blur(12px);
    border-bottom: 1px solid rgba(255,255,255,0.08);
    z-index: 10;
}

.nav-bar ul {
    display: flex;
    gap: 32px;
    list-style: none;
}

.nav-bar a {
    position: relative;
    text-decoration: none;
    font-family: "Barlow", sans-serif;
    font-size: 18px;
    font-weight: 600;
    color: #fafaf8;
    text-shadow: 0 1px 4px rgba(0,0,0,0.45);
}

.nav-bar a::after {
    content: "";
    position: absolute;
    left: 0;
    bottom: -5px;
    width: 0;
    height: 2px;
    background-color: #a36a3a;
    transition: 0.3s;
}

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

.nav-bar ul a.active::after {
    width: 100%;
}

.logo::after {
    display: none;
}

.logo img {
    position: relative;
    display: block;
    color: white;
    text-decoration: none;
    width: auto;
    height: 50px;
    object-fit: contain;
}

.hamburger {
    display: none;
    flex-direction: column;
    justify-content: center;
    gap: 6px;
    background: none;
    border: none;
    padding: 8px;
    cursor: pointer;
    z-index: 20;
}

.hamburger span {
    width: 26px;
    height: 3px;
    background: #fafaf8;
    border-radius: 2px;
    box-shadow: 0 1px 4px rgba(0,0,0,0.45);
    transition: transform 0.3s ease, opacity 0.3s ease;
}

.hamburger.active span:nth-child(1) {
    transform: translateY(9px) rotate(45deg);
}

.hamburger.active span:nth-child(2) {
    opacity: 0;
}

.hamburger.active span:nth-child(3) {
    transform: translateY(-9px) rotate(-45deg);
}

.hero-section {
    min-height: calc(100vh - 90px);
    display: flex;
    align-items: center;
    padding: 0 8%;
}

.hero-content {
    position: relative;
    z-index: 1;
    max-width: 650px;
}

.hero-label {
    display: flex;
    align-items: center;
    gap: 12px;
    color: #d6b08a;
    text-transform: uppercase;
    letter-spacing: 0.06em;
    font-family: "Barlow", sans-serif;
    font-size: 16px;
    font-weight: 500;
    margin-top: 10px;
    margin-bottom: 18px;
}

.hero-label::before {
    content: "";
    display: inline-block;
    width: 30px;
    height: 2px;
    background: #a36a3a;
}

.hero-section h1 {
    font-size: clamp(2.8rem, 6vw, 5.8rem);
    line-height: 1;
    margin-bottom: 24px;
    font-family: "Barlow Condensed",sans-serif;
    text-shadow: 0 8px 30px rgba(0,0,0,0.35);
}

.hero-text {
    max-width: 560px;
    font-size: 1.1rem;
    line-height: 1.7;
    color: #eae5dd;
    font-family: "Barlow", sans-serif;
    margin-bottom: 34px;
    text-shadow: 0 2px 10px rgba(0,0,0,0.25);
}

.price-button {
    display: inline-block;
    background-color: #a36a3a;
    color: white;
    text-decoration: none;
    padding: 15px 28px;
    font-weight: 700;
    font-family: "Barlow", sans-serif;
    border-radius: 3px;

    transition: background-color 0.3s ease, transform 0.3s ease, box-shadow 0.3s ease;
}

.price-button:hover {
    background-color: #8b5e3c;
    transform: translateY(-3px);
    box-shadow: 0 12px 25px rgba(0,0,0,0.18);
}

/* O NAS */

.about-us {
    position: relative;
    overflow: hidden;
    min-height: 40vh;
    padding: 0 8%;
    background: #f2ece3;
    padding-bottom: 50px;
    display: flex;
    gap: 60px;
}

.about-content {
    flex: 1;
    position: relative;
    z-index: 1;
    max-width: 470px;
}

.background-title {
    position: absolute;
    top: 5px;
    left: 2%;
    font-family: "Barlow Condensed", sans-serif;
    color: rgba(0,0,0,0.04);
    z-index: 0;
    font-size: clamp(6rem, 12vw, 12rem);
    font-weight: 800;
    user-select: none;
}

.about-us h2 {
    font-family: "Barlow Condensed", sans-serif;
    color: #d6b08a;
    font-size: 42px;
    padding-top: 125px;
}

.about-us h3 {
    font-family: "Barlow Condensed", sans-serif;
    font-size: 18px;
    font-style: italic;
    font-weight: 600;
    margin-top: 10px;
    color: #1B1B1B;
}

.about-us p {
    font-family: "Barlow", sans-serif;
    margin-top: 20px;
    line-height: 1.5;
    text-align: justify;
    color: #4d4d4d;
}

.about-check {
    margin-top: 40px;
    display: flex;
    flex-direction: column;
    gap: 18px;
}

.check-item {
    display: flex;
    align-items: center;
    gap: 18px;
}

.check-item i {
    color: #a36a3a;
    font-size: 1.1rem;
}

.check-item p {
    margin: 0;
    color: #1b1b1b;
    font-weight: 500;
}

.about-image {
    flex: 1;
    padding-top: 60px;
}

.about-image img {
    width: 100%;
    height: 420px;
    object-fit: cover;
    border-radius: 6px;
}

/* PRODUKTY & SLUZBY */

.products-price {
    position: relative;
    overflow: hidden;
    min-height: 100vh;
    padding: 0 8%;
    background: #f2ece3;
}

.product-heading {
    position: relative;
    overflow: hidden;
}
.product-heading h2 {
    font-family: "Barlow Condensed", sans-serif;
    color: #d6b08a;
    font-size: 42px;
    padding-top: 125px;
}

.product-cards {
    padding-top: 40px;
    position: relative;
    display: grid;
    grid-template-columns: repeat(2,1fr);   
    gap: 30px;
}

 
.product-card:hover img {
    transform: scale(1.05);
}
.product-card {
    background: #fff;
    border-radius: 4px;
}

.card-image {
    overflow: hidden;
}

.card-image img {
    width: 100%;
    height: 220px;
    object-fit: cover;

    transition: transform .4s ease;
}

.product-card:hover img {
    transform: scale(1.05);
}

.card-content {
    padding: 24px;
}

.card-content h3 {
    font-family: "Barlow Condensed", sans-serif;
    margin-bottom: 10px;
    color: #1b1b1b;
}

.card-content p {
    font-family: "Barlow", sans-serif;
    line-height: 1.6;
    color: #8b5e3c;
}

.extra-service {
    display: flex;
    width: fit-content;
    align-items: center;
    gap: 8px;

    padding: 12px 20px;

    background: #fafaf8;
    border: 1px solid #d6b08a;
    border-radius: 50px;

    margin: 30px auto 0;
}

@keyframes pulse{

0%{
    opacity:.50;
}

50%{
    opacity:1;
}

100%{
    opacity:.50;
}

}

.extra-service i {
    color: #8b5e3c;
    font-size: 22px;
    animation: pulse 2.5s infinite;
}

.extra-service p {
    margin: 0;
    font-size: 18px;
    font-family: "Barlow", sans-serif;
    color: #1b1b1b;
    font-weight: 600;
} 

/* CENNIK */

.cennik {
    margin-top: 30px;
    background: #fff;
    border-radius: 12px;
    padding: 30px;
    box-shadow: 0 10px 30px rgba(0,0,0,.05);
}

.cennik h2 {
    font-family: "Barlow Condensed", sans-serif;
}

.item {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 22px 0;
    border-bottom: 1px solid #ece6de;
}

.item:last-of-type {
    border-bottom: none;
}

.item-name {
    font-family: "Barlow", sans-serif;
    font-size: 1rem;
}

.item-price {
    font-weight: 700;
}

.price-box {
    display: flex;
    flex-direction: column;
    align-items: flex-end;
}

.vat {
    font-size:.80rem ;
    color: #8b5e3c;
    letter-spacing: .05rem;
    text-transform: uppercase;
    opacity: 0.7;
    margin-top: 3px;
}

.cennik h3 {
    margin-top: 20px;
}

.cennik-heading {
    position: relative;
    overflow: hidden;
}

.cennik-heading h2 {
    font-family: "Barlow Condensed", sans-serif;
    color: #d6b08a;
    font-size: 42px;
    padding-top: 125px;
}

.price-cta {
    padding: 30px 0;
    align-items: center;
}

.price-cta h3 {
    font-family: "Barlow",sans-serif;
}

.price-cta p {
    font-family: "Barlow", sans-serif;
    margin: 5px 0;
}

.price-cta .price-button {
    margin-top: 20px;
}

/* KONTAKT */

.doprava {
    background: #fafaf8;
    border-radius: 14px;
    padding: 40px 8%;
    text-align: center;
    box-shadow:0 10px 30px rgba(0,0,0,.05);
}

.doprava i{
    font-size: 38px;
    color: #a36a3a;
    margin-bottom: 20px;
}

.doprava h2 {
    font-size: 36px;
    font-family: "Barlow Condensed", sans-serif;
    margin-bottom: 15px;
}

.doprava p {
    font-family: "Barlow",sans-serif;
    margin-bottom: 12px;
}

.doprava-text {
    max-width: 500px;
    margin: 0 auto 30px;
    line-height: 1.7;
}

.doprava ul {
    list-style: none;
    padding: 0;
}

.doprava li{
    font-size: 24px;
    margin: 10px 0;
    font-family: "Barlow",sans-serif;
}

/* KONTAKT */

.kontakt {
    position: relative;
    min-height: 100vh;
    overflow: hidden;
    background: #f2ece3;
    padding: 0 8% 120px;
}

.contact-heading {
    position: relative;
    margin-bottom: 40px;
}

.contact-heading h2 {
    font-family: "Barlow Condensed", sans-serif;
    color: #d6b08a;
    font-size: 42px;
    padding-top: 125px;
}

.contact-wrapper {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 40px;
}

.kontaktne-udaje {
    position: relative;
    display: grid;
}

.kontaktne-udaje h3 {
    font-family: "Barlow", sans-serif;
    font-size: 18px;
    color: #4d4d4d;
    margin-bottom: 15px;
}

.kontaktne-udaje p {
    font-family: "Barlow", sans-serif;
    font-size: 14px;
    color: #1b1b1b;
    margin-bottom: 20px;
}

.contact-item {
    display: flex;
    align-items: center;
    gap: 18px;
    margin-bottom: 15px;
    transition: transform 0.3 ease;
}

.contact-item:hover {
    transform: translateX(6px);
}

.contact-item p {
    margin: 0;
    font-family: "Barlow", sans-serif;
    font-size: 16px;
    font-weight: 500;
}

.contact-item i {
    color: #8b5e3c;
    width: 24px;
    text-align: center;
}



.contact-item a {
    color: #1b1b1b;
    text-decoration: none;
    transition: color 0.3s ease, transform 0.3s ease;
    display: inline-block;
}

.contact-item a:hover {
    color: #a36a3a;
    transform: translateX(4px);
}

.mapa iframe {
    width: 100%;
    max-width: 500px;
    height: 320px;
    border-radius: 12px;
    border: 1px solid #f2ece3;
    transition: transform 0.4s ease, box-shadow 0.4s ease;
}

.mapa iframe:hover {
    transform: scale(1.01);
    box-shadow: 0 20px 40px rgba(0,0,0,0.12);
}

/* FOOTER */

.footer {
    background: #1b1b1b;
    color: #fafaf8;
    padding: 30px 8%;
    display: flex;
    justify-content: space-between;
    align-items: center;
    font-family: "Barlow", sans-serif;
}

.footer p {
    margin: 0;
}

.footer a {
    color: #d6b08a;
    text-decoration: none;
}

.footer a:hover {
    color: #a36a3a;
}

.footer img {
    display: block;
    width: auto;
    height: 40px;
    object-fit: contain;
}

/* ANIMACIE */

.hero-label,
.hero-section h1,
.hero-text,
.hero-section .price-button {
    opacity: 0;
    transform: translateY(25px);
    animation: heroFade .8s ease forwards;
}

.hero-section h1 {
    animation-delay: .15s;
}

.hero-text {
    animation-delay: .3s;
}

.hero-section .price-button {
    animation-delay: .45s;
}

@keyframes heroFade {
    to {
        opacity: 1;
        transform: translateY(0);
    }
}

.reveal {
    opacity: 0;
    transform: translateY(70px);
    transition: opacity 0.8s ease, transform 0.8s ease;
}

.reveal.active {
    opacity: 1;
    transform: translateY(0);
}

.about-content .background-title,
.product-heading .background-title,
.cennik-heading .background-title,
.contact-heading .background-title {
    opacity: 0;
    transform: translateY(40px);
    transition: .8s ease;
}

.about-content h2,
.product-heading h2,
.cennik-heading h2,
.contact-heading h2 {
    opacity: 0;
    transform: translateY(25px);
    transition: .8s ease .2s;
}

.reveal.active .background-title {
    opacity: 1;
    transform: translateY(0);
}

.reveal.active h2 {
    opacity: 1;
    transform: translateY(0);
}

.product-card {
    opacity: 0;
    transform: translateY(35px);

    transition:
        opacity .6s ease,
        transform .6s ease;
}

.reveal.active .product-card {
    opacity: 1;
    transform: translateY(0);
}

.reveal.active .product-card:nth-child(1) {
    transition-delay: .2s;
}

.reveal.active .product-card:nth-child(2) {
    transition-delay: .4s;
}

.reveal.active .product-card:nth-child(3) {
    transition-delay: .6s;
}

.reveal.active .product-card:nth-child(4) {
    transition-delay: .8s;
}

.mapa {
    opacity: 0;
    transform: translateX(40px);

    transition: opacity 0.8s ease, transform 0.8s ease 0.3s;
}

.reveal.active .mapa {
    opacity: 1;
    transform: translateX(0);
}

/* RESPONSIVE */

@media (max-width: 768px) {
    
    body {
        overflow-x: hidden;
    }

    .nav-bar {
        position: relative;
        flex-direction: row;
        justify-content: space-between;
        align-items: center;
        padding: 15px 6%;
    }

    .logo img {
        width: auto;
        height: 42px;
    }

    .hamburger {
        display: flex;
    }

    .nav-bar ul {
        position: fixed;
        inset: 0;
        width: 100%;
        height: 100vh;
        flex-direction: column;
        justify-content: center;
        align-items: center;
        gap: 40px;
        background: #1b1b1b;
        opacity: 0;
        visibility: hidden;
        transform: translateY(-20px);
        transition: opacity 0.35s ease, transform 0.35s ease, visibility 0.35s;
        z-index: 15;
    }

    .nav-bar ul.active {
        opacity: 1;
        visibility: visible;
        transform: translateY(0);
    }

    .nav-bar ul li {
        text-align: center;
    }

    .nav-bar ul li a {
        display: inline-block;
        padding: 0;
        font-size: 28px;
    }

    .nav-bar a {
        font-size: 14px;
    }

    .hero-section {
        min-height: auto;
        align-items: flex-start;
        padding: 70px 6% 80px;
    }

    .hero-label {
        font-size: 0.9rem;
        line-height: 1.4;
    }

    .hero-text {
        font-size: 1.05rem;
        line-height: 1.7;
    }

    .hero-content {
        display: flex;
        flex-direction: column;
    }

    .price-button {
        align-self: center;
        margin-top: 32px;
    }

    .about-us {
        flex-direction: column;
        gap: 30px;
        padding: 0 6% 60px;
    }

    .about-us h2,
    .product-heading h2,
    .cennik-heading h2,
    .contact-heading h2 {
        font-size: 36px;
        padding-top: 80px;
    }

    .background-title {
        font-size: clamp(5rem, 24vw, 8rem);
        left: 4%;
    }

    .about-image {
        padding-top: 0;
    }

    .about-image img {
        height: 320px;
    }

    .product-cards {
        grid-template-columns: 1fr;
    }

    .contact-wrapper {
        grid-template-columns: 1fr;
    }

    .mapa iframe {
        max-width: 100%;
    }

    .footer {
        flex-direction: column;
        gap: 15px;
        text-align: center;
    }
}

@media (min-width: 769px) and (max-width: 1024px) {
    .site-header {
        min-height: 70vh;
    }

    .hero-section {
        min-height: calc(70vh - 90px);
        padding: 0 6%;
    }

    .hero-section h1 {
        font-size: clamp(3.5rem, 7vw, 5rem);
    }

    .hero-text {
        max-width: 520px;
    }

    .nav-bar {
        padding: 20px 6%;
    }

    .nav-bar ul {
        gap: 22px;
    }
}



