body {
    font-family: Arial, sans-serif;
    margin: 0;
    padding: 0;
    background-color: #333333;
    color: #fff;
    line-height: 1.6;
}

.relative {
    position: relative;
}

.top-bar {
    background-color: #9f2c2c;
    color: white;
    text-align: center;
    padding: 10px;
    position: relative;
    overflow: hidden;
}

header {
    background-color: #d7d3d0;
    /*padding: 10px 0;*/
}





/* Position the hamburger menu absolutely on top of the image */
nav {
    position: relative;
    /*top: 0;*/
    /*right: 20px;*/
    /*z-index: 10;*/
    /*width: 100%;*/
    /*padding: 20px;*/
}


.hamburger {
    display: none;
}

/* Navigation Menu Style */
.nav-menu {
    display: flex;
    flex-direction: row;
    margin: 0 auto;
    /*align-items: center;*/
    width: 100%;
    justify-content: center;
    transition: opacity 0.5s ease, background-color 0.5s ease;
}

.nav-menu.active {
    display: flex;
    opacity: 1;
    visibility: visible;
}

/* Style for the links */
nav ul li a {
    color: black;
    font-weight: 600;
    text-decoration: none;
    padding: 15px 20px;
    transition: background-color 0.3s ease, transform 0.3s ease;
}

nav ul li a.redtouchpro {
    color: #b04343;
}

/* Media Query for smaller screens */
@media screen and (max-width: 768px) {

    /* Hamburger Menu Style */
    .hamburger {
        display: block;
        color: white;
        /* Default color when menu is closed */
        font-size: 30px;
        cursor: pointer;
        transition: color 0.3s ease;
        position: absolute;
        top: 20px;
        right: 20px;
    }

    .hamburger.open {
        color: black;
        /* Color when the menu is open */
    }

    nav ul li a {
        color: white;
    }

    .nav-menu {
        display: none;
        flex-direction: column;
        align-items: center;
        top: 0;
        right: 0;
        width: 100%;
        height: 100vh;
        justify-content: center;
        position: fixed;
        /* Fixes the menu position on screen */
        transition: opacity 0.5s ease, background-color 0.5s ease;
        opacity: 0;
        visibility: hidden;
    }

    .nav-menu.active {
        background-color: rgba(0, 0, 0, 0.9);
        /* Background color for menu */
    }

    nav {
        position: absolute;
        top: 0;
        right: 20px;
        z-index: 10;
        width: 100%;
        padding: 0;
    }

    .hamburger {
        color: white;
    }

    .hamburger.open {
        color: black;
    }

    .nav-menu {
        display: none;
    }

    .nav-menu.active {
        display: flex;
    }
}




/*!* Styl dla nawigacji *!*/
/*nav {*/
/*    position: absolute;*/
/*    top: 0;*/
/*    right: 0;*/
/*    width: 100%;*/
/*    z-index: 10;*/
/*    padding: 20px;*/
/*}*/

/*.hamburger {*/
/*    color: white;*/
/*    font-size: 30px;*/
/*    cursor: pointer;*/
/*    position: absolute;*/
/*    top: 20px;*/
/*    right: 20px;*/
/*    transition: color 0.3s ease;*/
/*}*/

/*.nav-menu {*/
/*    display: none;*/
/*    flex-direction: column;*/
/*    align-items: center;*/
/*    background-color: rgba(0, 0, 0, 0.9);*/
/*    position: absolute;*/
/*    top: 0;*/
/*    right: 0;*/
/*    width: 100%;*/
/*    height: 100vh;*/
/*    justify-content: center;*/
/*    transition: opacity 0.5s ease;*/
/*    opacity: 0;*/
/*    visibility: hidden;*/
/*}*/

/*.nav-menu.active {*/
/*    display: flex;*/
/*    opacity: 1;*/
/*    visibility: visible;*/
/*}*/

/*nav ul li a {*/
/*    color: white;*/
/*    font-weight: 600;*/
/*    text-decoration: none;*/
/*    padding: 15px 20px;*/
/*    transition: background-color 0.3s ease, transform 0.3s ease;*/
/*}*/

/*@media screen and (max-width: 768px) {*/
/*    nav {*/
/*        padding: 0;*/
/*    }*/

/*    .hamburger {*/
/*        z-index: 1;*/
/*        color: white; !* domyślnie biały kolor *!*/
/*    }*/

/*    .hamburger.open {*/
/*        z-index: 1;*/
/*        color: white; !* domyślnie biały kolor *!*/
/*    }*/

/*    .nav-menu {*/
/*        display: none;*/
/*    }*/

/*    .nav-menu.active {*/
/*        margin-top: 0;*/
/*        display: flex;*/
/*    }*/
/*}*/





/*!* Podstawowe style dla nawigacji *!*/
/*nav {*/
/*    padding: 30px 0;*/
/*    position: relative;*/
/*}*/

/*nav ul {*/
/*    list-style-type: none;*/
/*    margin: 0;*/
/*    padding: 0;*/
/*    text-align: center;*/
/*}*/

/*nav ul li {*/
/*    display: inline-block;*/
/*    margin: 0 15px;*/
/*}*/

/*nav ul li a {*/
/*    color: #333;*/
/*    font-weight: 600;*/
/*    text-decoration: none;*/
/*    padding: 5px 15px;*/
/*    transition: background-color 0.3s ease, transform 0.3s ease;*/
/*    border-bottom: 2px solid transparent;*/
/*}*/

/*nav ul li a:hover {*/
/*    color: #000;*/
/*    border-bottom: 2px solid #333;*/
/*}*/

/*!* Styl dla hamburgera *!*/
/*.hamburger {*/
/*    height: 100%;*/
/*    color: #333;*/
/*    display: none;*/
/*    font-size: 30px;*/
/*    cursor: pointer;*/
/*    position: absolute;*/
/*    top: 0;*/
/*    right: 20px;*/
/*}*/

/*!* Styl responsywny - hamburger na mniejszych ekranach *!*/
/*@media screen and (max-width: 768px) {*/
/*    .hamburger {*/
/*        display: block;*/
/*    }*/

/*    .nav-menu {*/
/*        display: none;*/
/*        flex-direction: column;*/
/*        align-items: center;*/
/*    }*/

/*    nav ul li {*/
/*        display: block;*/
/*        margin: 10px 0;*/
/*    }*/

/*    nav ul li a {*/
/*        display: block;*/
/*        padding: 10px 20px;*/
/*    }*/

/*    .nav-menu.active {*/
/*        display: flex;*/
/*    }*/
/*}*/










/* Efekt animacji przy kliknięciu linku (odkomentuj, aby przetestować) */
/*
nav ul li a:active {
    background-color: #ddd;
    transform: translateY(2px);
}
*/

/* Efekt dodający obramowanie podczas hover (odkomentuj, aby przetestować) */
/*
nav ul li a:hover {
    border: 2px solid #000;
}
*/



/*nav {*/
/*    padding: 30px 0;*/
/*}*/
/*nav ul {*/
/*    !*background-color: #f9f7f2;*!*/
/*    list-style-type: none;*/
/*    margin: 0;*/
/*    padding: 0;*/
/*    text-align: center;*/
/*}*/

/*nav ul li {*/
/*    display: inline;*/
/*    margin: 0 15px;*/
/*}*/

/*nav ul li a {*/
/*    color: #333;*/
/*    font-weight: 600;*/
/*    text-decoration: none;*/
/*    padding: 5px 15px;*/
/*    transition: background-color 0.3s ease, transform 0.3s ease;*/
/*}*/

/*nav ul li a:hover {*/
/*    color: #000;*/
/*}*/

/*@media screen and (max-width: 768px) {*/
/*    nav ul {*/
/*        display: block;*/
/*        text-align: left;*/
/*    }*/

/*    nav ul li {*/
/*        display: block;*/
/*        margin: 10px 0;*/
/*    }*/

/*    nav ul li a {*/
/*        display: block;*/
/*        padding: 10px 20px;*/
/*    }*/
/*}*/

/*nav ul li a.brand {*/
/*    color: #d3b7a1;*/
/*}*/

.hero {
    text-align: center;
    padding: 50px 20px;
    background: #232020;
}

.light {
    text-align: center;
    padding: 50px 20px;
    background: #d7d3d0;
    color: black;
    font-size: 10px;
    line-height: 10px;
    max-width: 100%;
}

.light ul {
    display: flex;
    flex-wrap: wrap;
    margin-bottom: 0px;
}

.light ul li {
    margin-right: 5px;
    margin-bottom: 0px;
}

.services-overview,
.price-list,
.recommended-cities,
#instagram-feed,
.contact {
    padding: 20px;
    text-align: center;
}

ul {
    padding: 0;
    list-style-type: none;
}

ul li {
    margin: 10px 0;
}

input[type="text"],
input[type="email"],
input[type="datetime-local"],
select,
textarea {
    background-color: #222;
    color: #fff;
    border: 1px solid #555;
    padding: 10px;
    width: 100%;
    margin: 10px 0;
    box-sizing: border-box;
}

button {
    background-color: #333;
    color: #d3b7a1;
    border: 1px solid #d3b7a1;
    padding: 10px 20px;
    cursor: pointer;
    transition: background-color 0.3s ease;
}

button:hover {
    background-color: #d3b7a1;
    color: #000;
}

.cta-box {
    background-color: #000000;
    color: #d3b7a1;
    text-align: center;
    position: fixed;
    padding: 10px 0;
    bottom: 0;
    width: 100%;
}


footer {
    background-color: #000000;
    color: white;
    text-align: center;
    padding: 0 0 10px 0;
    bottom: 0;
    width: 100%;
}









.offer-table {
    padding: 20px;
    text-align: center;
    color: #fff;
}

.offer-table h2 {
    color: #d3b7a1;
    /* Złoty kolor dla nagłówka */
    margin-bottom: 20px;
}

.offer-table table {
    width: 100%;
    border-collapse: collapse;
    margin: 0 auto;
    background-color: #222;
}

.offer-table th,
.offer-table td {
    padding: 15px;
    border: 1px solid #555;
    text-align: left;
}

.offer-table th {
    background-color: #333;
    color: #d3b7a1;
    font-weight: bold;
    text-transform: uppercase;
}

.offer-table tr:nth-child(even) {
    background-color: #444;
}

.offer-table tr:hover {
    background-color: #333;
}










.testimonials-wrapper {
    background-color: #333;
}

.testimonials-container {
    width: 100%;
    max-width: 600px;
    margin: 0 auto;
    overflow: hidden;
    position: relative;
}

.testimonials {
    list-style: none;
    padding: 0;
    margin: 0;
    position: relative;
    min-height: 240px;
    display: flex;
    justify-content: center;
    align-items: center;

}

.testimonials li {
    display: none;
    text-align: center;
    padding: 20px;
}

.testimonials li.active {
    display: block;
}

.testimonials .quote {
    font-size: 18px;
    margin-bottom: 10px;
}

.testimonials .author {
    font-size: 16px;
    color: #666;
    font-style: italic;
}

.testimonials-container::before,
.testimonials-container::after {
    content: '';
    position: absolute;
    top: 0;
    bottom: 0;
    width: 50px;
    z-index: 1;
}

.testimonials-container::after {
    right: 0;
}



.next {
    background-image: url('assets/jowita-2.jpeg');
    background-size: cover;
    background-position: -80% 50%;
    min-height: 100vh;
    height: 100%;
    display: flex;
    justify-content: flex-start;
    /* Ustawienie kontenera po lewej stronie */
    align-items: flex-end;
    position: relative;
    color: white;
    text-align: left;
    /* Tekst będzie wyjustowany do lewej */
    padding-left: 50px;
    /* Odstęp od lewej krawędzi */
}

.next::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: rgba(0, 0, 0, 0.75);
    /* Warstwa z ciemnym tłem */
    z-index: 0;
}

.next-container {
    position: relative;
    z-index: 1;
    max-width: 540px;
    /* Zmniejszenie szerokości kontenera dla bardziej zwartych tekstów */
    padding: 20px 20px 50px 20px;
}

.laser {
    background-image: url('assets/laser.jpg');
    background-size: cover;
    background-position: 50% 25%;
    height: 100vh;
    display: flex;
    justify-content: flex-start;
    /* Ustawienie kontenera po lewej stronie */
    align-items: flex-end;
    position: relative;
    color: white;
    text-align: left;
    /* Tekst będzie wyjustowany do lewej */
    padding-left: 50px;
    /* Odstęp od lewej krawędzi */
}

.laser h2 {
    line-height: 2;
}

.laser::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: rgba(0, 0, 0, 0.65);
    /* Warstwa z ciemnym tłem */
    z-index: 0;
}

.laser-container {
    position: relative;
    z-index: 1;
    max-width: 540px;
    /* Zmniejszenie szerokości kontenera dla bardziej zwartych tekstów */
    padding: 20px 40px 40px 40px;
    margin: 0 0 50px 0;
    background-color: rgba(255, 255, 255, 0.2);
    border: 1px solid #FFFFFF;
}


/*contact*/

.contact {
    background-image: url('assets/contact2.JPG');
    background-size: cover;
    background-position: 50% 50%;
    height: 100vh;
    display: flex;
    justify-content: flex-start;
    /* Ustawienie kontenera po lewej stronie */
    align-items: flex-end;
    position: relative;
    color: white;
    text-align: left;
    /* Tekst będzie wyjustowany do lewej */
    padding-left: 50px;
    /* Odstęp od lewej krawędzi */
}

.contact::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: rgba(0, 0, 0, 0.35);
    /* Warstwa z ciemnym tłem */
    z-index: 0;
}

.contact-container {
    position: relative;
    z-index: 1;
    max-width: 540px;
    /* Zmniejszenie szerokości kontenera dla bardziej zwartych tekstów */
    padding: 20px 20px 70px 20px;
}

/*.social-media-link {*/
/*    margin-top: 20px;*/
/*    display: flex;*/
/*    align-items: center;*/
/*    margin-right: 10px;*/
/*    color: black;*/
/*    font-weight: bold;*/
/*    font-size: 24px;*/
/*    text-decoration: none;*/
/*}*/


.social-media-container {
    position: absolute;
    bottom: 20px;
    left: 20px;
}

.social-media-link {
    background-color: rgba(0, 0, 0, 0.6);
    padding: 10px 15px;
    border-radius: 5px;
    margin-bottom: 10px;
    display: inline-flex;
    align-items: center;
    font-size: 1.2em;
    color: white;
    text-decoration: none;
    transition: background-color 0.3s ease, color 0.3s ease;
}

.social-media-link svg {
    margin-right: 10px;
    transition: filter 0.3s ease;
    fill: white;
}

.social-media-link:hover {
    /*background-color: #d3b7a1;*/
    color: black;
}

.social-media-link:hover svg {
    /*filter: drop-shadow(0 0 10px #000);*/
}


/*.social-media-link {*/
/*    background-color: rgba(0, 0, 0, 0.6); !* Semi-transparent black *!*/
/*    padding: 10px;*/
/*    border-radius: 5px;*/
/*    display: inline-flex;*/
/*    align-items: center;*/
/*    margin-bottom: 10px;*/
/*    min-width: 300px;*/
/*    color: white;*/
/*    font-weight: bold;*/
/*    font-size: 24px;*/
/*    text-decoration: none;*/
/*}*/

/*.social-media-link svg {*/
/*    margin-right: 10px;*/
/*    fill: white;*/
/*}*/

.social-media-link.facebook:hover {
    filter: drop-shadow(0 0 5px #3b5998));
    color: #d3b7a1;
}

.social-media-link.facebook:hover svg {
    fill: #d3b7a1;
}


.social-media-link.instagram:hover {
    color: #d3b7a1;
}

.social-media-link.instagram:hover svg {
    fill: #d3b7a1;
}

/*svg*/


.social-media-label {
    margin-left: 20px;
    margin-bottom: 4px;
}



.text-slider {
    position: relative;
    overflow: hidden;
    height: 24px;

    /* Adjust based on your content */
}

.text-slider p {
    margin: 0;
}

.home-banner {
    background-color: #333;
    margin: 0;
}


.slide {
    position: absolute;
    width: 100%;
    opacity: 0;
    /* transition: opacity 0.5s ease-in-out; */
}

.slide.active {
    opacity: 1;
}




.about {
    background-image: url('assets/jowita.jpeg');
    background-size: cover;
    background-position: 25% 10%;
    height: 100vh;
    display: flex;
    justify-content: flex-start;
    /* Ustawienie kontenera po lewej stronie */
    align-items: center;
    position: relative;
    color: white;
    text-align: left;
    /* Tekst będzie wyjustowany do lewej */
    padding-left: 50px;
    /* Odstęp od lewej krawędzi */
}

.about::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: rgba(0, 0, 0, 0.5);
    /* Warstwa z ciemnym tłem */
    z-index: 0;
}

.about-container {
    position: relative;
    z-index: 1;
    max-width: 540px;
    /* Zmniejszenie szerokości kontenera dla bardziej zwartych tekstów */
    padding: 20px;
}

.about ul li::before {
    content: '●';
    margin-right: 10px;
    color: #e5d6b9;
    /* Złoty kolor */
}


.about-price-list {
    margin-top: 35px;
}

.about-price-list .hero-button {
    margin-bottom: 15px;
}

@media screen and (max-width: 768px) {
    .laser {
        padding: 0 15px;
    }

    .about {
        padding-left: 20px;
        align-items: flex-end;
        background-position: 25% 50%;
    }

    .about-container {
        padding: 20px;
    }
}

.tag {
    color: white;
    padding: 5px;
    font-size: 10px;
    background-color: green;
    border-radius: 5px;
    margin-right: 5px;
    position: relative;
    top: -2px;
}

.address p {
    font-style: normal;
    color: white;
    margin: 0;
    font-size: 16px;
}

.address p a {
    color: white;
    text-decoration: none;
}

.address p a:hover {
    color: #d3b7a1;
}

.uppercase {
    text-transform: uppercase;
}

/* Styl dla sekcji hero */
.hero {
    background-image: url('assets/jowita-4.jpeg');
    background-size: cover;
    background-position: 50% 25%;
    /*height: 100vh;*/
    min-height: calc(100vh - 100px);
    height: 100%;
    display: flex;
    justify-content: center;
    align-items: center;
    position: relative;
    /*color: white;*/
    /*text-align: center;*/
}

@media screen and (max-width: 768px) {
    .hero {
        background-position: 50% 50%;
    }
}

.hero::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: rgba(0, 0, 0, 0.5);
    /* Warstwa z ciemnym tłem dla lepszego kontrastu */
}

.hero-content {
    position: relative;
    z-index: 1;
    font-family: none;
    /* Zapewnia, że treść jest nad ciemną warstwą */
    max-width: 800px;
    padding: 20px;
}

.hero h1 {
    font-size: 3em;
    margin-bottom: 20px;
}

.hero p {
    font-size: 1.5em;
    margin-bottom: 30px;
}

.hero-button {
    display: inline-block;
    padding: 10px 15px;
    background-color: transparent;
    border: 2px solid #e5d6b9;
    color: white;
    text-decoration: none;
    font-size: 1.2em;
    border-radius: 6px;
    transition: background-color 0.3s ease-in-out, color 0.3s ease-in-out;
}

.hero-button--left {
    margin-right: 15px;
}

.hero-button:hover {
    background-color: #e5d6b9;
}











/* scroll */
.scroll-down {
    position: absolute;
    bottom: -20px;
    left: 50%;
    transform: translateX(-50%);
    display: flex;
    flex-direction: column;
    align-items: center;
}

.scroll-down span {
    display: block;
    width: 8px;
    height: 8px;
    margin: 5px 0;
    background-color: white;
    border-radius: 50%;
    animation: scroll 2.5s infinite;
}

.scroll-down span:nth-child(2) {
    animation-delay: 0.3s;
}

.scroll-down span:nth-child(3) {
    animation-delay: 0.6s;
}

@keyframes scroll {

    0%,
    20% {
        opacity: 0;
        transform: translateY(0);
    }

    50% {
        opacity: 1;
        transform: translateY(10px);
    }

    100% {
        opacity: 0;
        transform: translateY(20px);
    }
}


























/*!*footer*!*/

/*.top-footer {*/
/*    display: flex;*/
/*    justify-content: space-around;*/
/*    align-items: flex-start;*/
/*    padding: 40px;*/
/*    background-color: #d7d3d0;*/
/*    color: #333;*/
/*}*/

/*.footer-section {*/
/*    flex: 1;*/
/*    max-width: 300px;*/
/*    margin: 0 20px;*/
/*}*/

/*.footer-section h3 {*/
/*    font-size: 16px;*/
/*    margin-bottom: 20px;*/
/*    position: relative;*/
/*}*/

/*.footer-section h3:before, .footer-section h3:after {*/
/*    content: '';*/
/*    display: block;*/
/*    height: 1px;*/
/*    background: #333;*/
/*    position: absolute;*/
/*    left: 0;*/
/*    right: 0;*/
/*}*/

/*.footer-section h3:before {*/
/*    top: -10px;*/
/*}*/

/*.footer-section h3:after {*/
/*    bottom: -10px;*/
/*}*/

/*.footer-section ul {*/
/*    list-style: none;*/
/*    padding: 0;*/
/*}*/

/*.footer-section ul li {*/
/*    margin-bottom: 10px;*/
/*}*/

/*.footer-section ul li a {*/
/*    text-decoration: none;*/
/*    color: #333;*/
/*    transition: color 0.3s;*/
/*}*/

/*.footer-section ul li a:hover {*/
/*    color: #000;*/
/*}*/

/*.social-icons {*/
/*    display: flex;*/
/*    gap: 15px;*/
/*}*/

/*.footer-section svg {*/
/*    fill: #333;*/
/*    transition: fill 0.3s;*/
/*}*/

/*.footer-section svg:hover {*/
/*    fill: #000;*/
/*}*/










footer {
    background-color: #333;
    color: #fff;
    padding: 40px 0px;
    text-align: center;
    width: 100%;
}

.top-footer {
    display: flex;
    flex-wrap: wrap;
    justify-content: space-around;
    padding-bottom: 20px;
    border-bottom: 1px solid #555;
    margin-bottom: 20px;
}

.footer-section {
    margin: 10px;
    flex: 1;
    min-width: 200px;
    max-width: 300px;
    text-align: left;
}

#view-love {
    display: none;
}

.footer-section h3 {
    margin-bottom: 15px;
    font-size: 18px;
    position: relative;
}

.copyright {
    color: white;
}

.footer-section h3::after {
    content: '';
    display: block;
    width: 50px;
    height: 2px;
    background-color: #ffd700;
    margin: 8px 0 0;
}

@media screen and (max-width: 768px) {
    .footer-section h3::after {
        margin: 8px auto 0;
    }
}

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

.footer-section ul li {
    margin-bottom: 10px;
}

.footer-section ul li a {
    color: #fff;
    text-decoration: none;
    transition: color 0.3s ease;
}

.footer-section ul li a:hover {
    color: #d3b7a1;
}

.social-icons {
    display: flex;
    justify-content: flex-start;
    gap: 20px;
}

@media screen and (max-width: 768px) {
    .social-icons {
        justify-content: center;
    }
}

.footer-section svg {
    fill: #fff;
    transition: fill 0.3s ease;
}

.footer-section svg:hover {
    fill: #d3b7a1;
}

.footer-section .social-icons a:hover svg {
    fill: #d3b7a1;
}

footer p {
    margin-top: 20px;
    font-size: 14px;
    color: #999;
}

@media (max-width: 768px) {
    .top-footer {
        flex-direction: column;
        align-items: center;
    }

    .footer-section {
        text-align: center;
        margin-bottom: 20px;
    }
}















/*animacje*/


.hero h1,
.hero p,
.hero-button {
    opacity: 0;
    transform: translateY(20px);
    animation: fadeInUp 1s ease-out forwards;
}

.hero h1 {
    animation-delay: 0.5s;
}

.hero p {
    animation-delay: 1s;
}

.hero .hero-button {
    animation-delay: 1.5s;
}

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




.testimonials li {
    opacity: 0;
    position: absolute;
    transition: opacity 0.5s ease-in-out;
}

.testimonials li.active {
    opacity: 1;
    position: relative;
}