
body {
    font-family: Arial, sans-serif;
    background-color: #ffffff;
    color: #fff;
    margin: 0;
    padding: 0;
}


header {
    background: #11111100;
    padding: 1px 20px; 
    display: flex;  
    align-items: center; 
    justify-content: space-between; 
}


header .logo {
    height: 70px; 
    width: auto; 
    margin: 0px 0; 
}


.nav-links {
    display: flex;
    list-style: none;
    gap: 20px;
}


.menu-toggle {
    display: none;
    flex-direction: column;
    cursor: pointer;
    z-index: 1000; 
    position: relative;
}

.menu-toggle span {
    width: 25px;
    height: 3px;
    background-color: #000;
    margin: 4px 0;
    transition: 0.4s;
}


@media (max-width: 768px) {
    .nav-links {
        display: none;
        flex-direction: column;
        position: absolute;
        top: 60px;
        right: 0;
        background-color: white;
        width: 100%;
        text-align: center;
        box-shadow: 0px 8px 16px rgba(0,0,0,0.2);
        z-index: 999; 
    }

    .nav-links.active {
        display: flex;
    }

    .menu-toggle {
        display: flex;
        position: absolute;
        top: 15px;
        right: 20px;
        z-index: 1000; 
    }

    .menu-toggle.active span:nth-child(1) {
        transform: rotate(-45deg) translate(-5px, 6px);
    }

    .menu-toggle.active span:nth-child(2) {
        opacity: 0;
    }

    .menu-toggle.active span:nth-child(3) {
        transform: rotate(45deg) translate(-5px, -6px);
    }
}


header nav {
    display: flex; 
    gap: 10px; 
}

header a {
    color: #000000;
    text-decoration: none;
    padding: 10px;
}

header a:hover {
    background: #21623A;
    border-radius: 5px;
    color: #ffffff;
}


.cookie-notice {
    position: fixed;
    bottom: 0;
    left: 0;
    right: 0;
    background-color: #333333;
    color: #fff;
    text-align: center;
    padding: 15px;
    box-shadow: 0 -2px 10px rgba(0,0,0,0.3);
    z-index: 1000;
    display: none; 
}

.cookie-button {
    background-color: #21623A;
    color: #000000;
    border: none;
    padding: 10px 20px;
    margin-left: 10px;
    cursor: pointer;
    font-size: 16px;
    border-radius: 5px;
}



.hero {
    position: relative;
    text-align: center;
    color: white;
}

.hero .slideshow-container {
    position: relative;
    max-width: 100%;
    margin: auto;
}

.slide {
    display: none;
}

.hero img {
    width: 100%;
    height: auto;
}

.prev, .next {
    cursor: pointer;
    position: absolute;
    top: 50%;
    width: auto;
    margin-top: -22px;
    padding: 16px;
    color: white;
    font-weight: bold;
    font-size: 18px;
    transition: 0.6s ease;
    border-radius: 0 3px 3px 0;
    user-select: none;
}

.next {
    right: 0;
    border-radius: 3px 0 0 3px;
}

.prev:hover, .next:hover {
    background-color: #000000cc;
}

.dot-container {
    text-align: center;
    padding: 20px;
    background: #22222200;
}

.dot {
    cursor: pointer;
    height: 15px;
    width: 15px;
    margin: 0 2px;
    background-color: #bbb;
    border-radius: 50%;
    display: inline-block;
    transition: background-color 0.6s ease;
}

.active, .dot:hover {
    background-color: #21623A;
}

.hero-text {
    position: absolute; 
    top: 20px; 
    left: 50%; 
    transform: translateX(-50%); 
    color: #ffffff; 
    font-size: 4vw; 
    font-family: 'Arial', sans-serif; 
    background-color: #21623a9f; 
    padding: 10px; 
    border-radius: 5px; 
    z-index: 10; 
    font-weight: bold; 
}


@media (min-width: 768px) {
    .hero-text {
        font-size: 40px; 
    }
}


.hero .overlay {
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, 50%);
    font-size: 2em;
    color: #000000;
    background: #ffffff67;
    opacity: 0; 
    animation: slideIn 1s forwards; 
}


.hero button {
    padding: 10px 20px;
    font-size: 1em;
    border: none;
    background: #21623A;
    color: #000000;
    cursor: pointer;
}

.hero button:hover {
    background: #ddcaac00; 
    color: #000000;
}


@keyframes slideIn {
    0% {
        transform: translate(-50%, 50%);
        opacity: 0;
    }
    100% {
        transform: translate(-50%, -50%);
        opacity: 1;
    }
}


.fade {
    animation-name: fade;
    animation-duration: 1s;
}

@keyframes fade {
    from {opacity: .4} 
    to {opacity: 1}
}


.prev, .next {
    cursor: pointer;
    position: absolute;
    top: 50%;
    width: auto;
    padding: 16px;
    color: white;
    font-weight: bold;
    font-size: 18px;
    transition: 0.6s ease;
    user-select: none;
    transform: translateY(-50%);
}

.prev {
    left: 0;  
    border-radius: 0 3px 3px 0;
}

.next {
    right: 0;  
    border-radius: 3px 0 0 3px;
}

.prev:hover, .next:hover {
    background-color: rgba(0, 0, 0, 0.8);
}


.section-title {
    text-align: center;
    font-size: 2em;
    margin: 2px 0;
    color: #000000
}


.section-text {
    text-align: center;
    font-size: 1.2em;
    margin: 5px 0;
    color: #000000
}
.opis {
    border: 2px solid #333333; 
    border-radius: 8px; 
    padding: 20px; 
    background-color: #ffffff; 
    max-width: 1260px; 
    margin: 20px auto; 
    box-shadow: 0 4px 8px #00000033; 
    color: #000000
}

.opis p {
    margin: 0; 
    font-size: 1.2em; 
}

.opis2 {
    border: 2px solid #333333; 
    border-radius: 8px; 
    padding: 20px; 
    background-color: #ffffff; 
    max-width: 600px; 
    margin: 20px auto;
    margin-right: 275px; 
    box-shadow: 0 4px 8px #00000033; 
    color: #000000
}

.opis2 img{
    width: 150px;
    height: auto;
}


.opis3 {
    border: 2px solid #333333; 
    border-radius: 8px; 
    padding: 20px; 
    background-color: #ffffff; 
    max-width: 600px; 
    margin: 20px auto; 
    margin-left: 320px; 
    box-shadow: 0 4px 8px #00000033; 
    color: #000000; 
    box-sizing: border-box; 
}

.opis3 img{
    width: 150px;
    height: auto;
    margin-left: 400px;
}


.vehicles, .properties {
    display: flex;
    justify-content: center;
    gap: 20px;
    flex-wrap: wrap;
    padding: 0 50px;
}

.card {
    background: #ffffff;
    border-radius: 10px;
    overflow: hidden;
    text-align: center;
    width: 350px;
    padding: 20px;
}

.card img {
    width: 90%;
    height: auto;
}

.card button {
    padding: 10px 20px;
    font-size: 1em;
    border: none;
    background: #ffeabe;
    color: #000000;
    cursor: pointer;
    width: calc(100% - 30px);
}

.card button:hover {
    background: #ffffff;
    color: #000000;
}


.gallery {
    display: grid;
    grid-template-columns: repeat(auto-fill, minmax(200px, 1fr));
    gap: 15px;
    padding: 20px;
    max-width: 1200px;
    margin: 0 auto;
}


.gallery-item {
    overflow: hidden;
    border-radius: 8px;
    box-shadow: 0 4px 8px rgba(0, 0, 0, 0.2);
    cursor: pointer;
    transition: transform 0.3s ease, box-shadow 0.3s ease;
}


.gallery-item:hover {
    transform: scale(1.05);
    box-shadow: 0 8px 16px rgba(0, 0, 0, 0.3);
}


.gallery-item img {
    object-fit: cover; 
    width: 100%;       
    height: 200px;     
    display: block;
}


.rooms-section {
    padding: 40px;
    background-color: #f5f5f5;
}

.image-text-container {
    display: flex; 
    align-items: center; 
    justify-content: space-between; 
    gap: 20px; 
}

.image-text-container img {
    max-width: 50%; 
    height: auto; 
    border-radius: 10px; 
}


.text-content {
    max-width: 50%; 
    background-color: #21623A;
    color: #fff;
    padding: 20px;
    border-radius: 8px;
}


.text-content h2 {
    font-size: 1.8rem;
    margin-bottom: 15px;
}

.text-content p {
    font-size: 1rem;
    line-height: 1.6;
    margin-bottom: 15px;
}

.text-content ul {
    list-style-type: disc; 
    padding-left: 20px;
    margin-bottom: 15px;
}

.text-content ul li {
    margin-bottom: 10px;
}


.photos-section {
    padding: 50px;
    background-color: #ffffff;
    text-align: center;
}


.photos-section h3 {
    font-size: 1.8rem;
    margin-bottom: 30px;
}


.view-all {
    text-decoration: none; 
    color: #000000; 
    display: block;
    margin: 30px auto;
    padding: 10px 20px;
    font-size: 1em;
    background: #ffeabe;
    border: none;
    cursor: pointer;
}


.view-all:hover {
    background: #ffffff;
    color: #000000; 
}


.container {
    padding: 20px;
    max-width: 1200px;
    margin: auto;
}


.info-box {
    max-width: 950px;
    margin: 0 auto;
    padding: 30px;
    border: 2px solid #21623A;
    background-color: #fff;
    border-radius: 10px;
    box-shadow: 0 4px 12px rgba(0, 0, 0, 0.1);
    line-height: 1.6;
}

.info-box h2 {
    margin-top: 0;
    font-size: 26px;
    color: #21623A;
    text-align: center;
}

.info-box p, .info-box li {
    font-size: 18px;
    color: #333;
}

.info-box ul {
    list-style-type: disc;
    padding-left: 40px;
}

.info-box ul li {
    margin-bottom: 15px;
}


.about-box {
    background: #ffffff;
    border-radius: 10px;
    overflow: hidden;
    padding: 20px;
    margin: 30px auto;
    max-width: 800px;
    color: #000000;
    text-align: center;
}

.about-title {
    font-size: 2em;
    margin-bottom: 20px;
}

.about-content {
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 20px;
}

.about-image {
    width: 100%;
    max-width: 200px;
    height: auto;
    border-radius: 8px;
}

.about-text {
    font-size: 1.2em;
    line-height: 1.6;
    max-width: 700px;
}


form {
    background: #ffffff;
    border-radius: 8px;
    padding: 20px;
    max-width: 500px;
    margin: auto;
    color: #000000;
}

.form-group {
    margin-bottom: 15px;
}

label {
    display: block;
    font-weight: bold;
    margin-bottom: 5px;
}

input[type="text"],
input[type="email"],
textarea {
    width: 100%;
    padding: 10px;
    border: 1px solid #444;
    border-radius: 4px;
    font-size: 16px;
    background: #21623A;
    color: #000000;
}

textarea {
    resize: vertical;
    height: 100px;
}

input[type="submit"] {
    background: rgb(0, 0, 0);
    color: white;
    border: none;
    padding: 10px 20px;
    cursor: pointer;
}


.room-container {
    display: flex;
    justify-content: center;
    gap: 20px;
    flex-wrap: wrap;
}

.room {
    position: relative;
    width: 600px;
    height: 500px;
    background-color: #ffffff;
    border: 1px solid #ddd;
    box-shadow: 0 4px 8px rgba(0, 0, 0, 0.1);
    cursor: pointer;
    overflow: hidden;
    transition: transform 0.3s;
}

.room:hover {
    transform: scale(1.05);
}

.room-image {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: opacity 0.3s;
}

.room-info {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background-color: rgba(0, 0, 0, 0.8);
    color: #ffffff;
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: center;
    opacity: 0;
    transition: opacity 0.3s;
    padding: 20px;
    box-sizing: border-box;
    z-index: 1;
}

.room:hover .room-info {
    opacity: 1;
}

.room:hover .room-image {
    opacity: 0.3;
}

.room-title {
    position: absolute;
    bottom: 10px;
    left: 50%;
    transform: translateX(-50%);
    background-color: rgba(0, 0, 0, 0.5);
    color: #ffffff;
    padding: 5px;
    border-radius: 5px;
}


.kajak-container {
    display: flex;
    justify-content: center;
    gap: 20px;
    flex-wrap: wrap;
}

.kajak {
    position: relative;
    width: 400px;
    height: 300px;
    background-color: #ffffff;
    border: 1px solid #ddd;
    box-shadow: 0 4px 8px rgba(0, 0, 0, 0.1);
    cursor: pointer;
    overflow: hidden;
    transition: transform 0.3s;
}

.kajak:hover {
    transform: scale(1.05);
}

.kajak-image {
    width: 100%;
    height: 50%;
    object-fit: cover;
    transition: opacity 0.3s;
    object-fit: contain; 
}

.kajak-info {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background-color: rgba(0, 0, 0, 0.8);
    color: #ffffff;
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: center;
    opacity: 0;
    transition: opacity 0.3s;
    padding: 20px;
    box-sizing: border-box;
    z-index: 1;
}

.kajak:hover .kajak-info {
    opacity: 1;
}

.kajak:hover .kajak-image {
    opacity: 0.3;
}

.kajak-title {
    position: absolute;
    bottom: 10px;
    left: 50%;
    transform: translateX(-50%);
    background-color: rgba(0, 0, 0, 0.5);
    color: #ffffff;
    padding: 5px;
    border-radius: 5px;
}


.contact-section {
    max-width: 600px;
    margin: 50px auto;
    padding: 20px;
    background-color: #ffffff;
}

.contact-section h2 {
    text-align: center;
    color: #333;
}

.contact-item {
    display: flex;
    align-items: center;
    margin-bottom: 15px;
}

.contact-item img {
    width: 24px;
    height: 24px;
    margin-right: 10px;
}

.contact-item p {
    margin: 0;
    color: #555;
}

.reserve-button:hover {
    background-color: darkorange;
}


.tekst {
    text-align: center;
    font-size: 1.2em;
    margin: 5px 0;
    color: #000000
}


.map-container {
    text-align: center;
    width: 100%;
    max-width: 1000px; 
    margin: 0 auto;
}

.map-container iframe {
    width: 100%; 
    height: 400px; 
    border: none;
}


@media (max-width: 768px) {
    .map-container iframe {
        height: 250px; 
    }
}


.product-page {
    display: flex;
    justify-content: space-between;
    padding: 100px;
    background-color: #f3f4f5;
}

.image-carousel {
    display: flex;
    overflow-x: auto;
    gap: 10px;
    width: 60%; 
}

.image-carousel a {
    flex: 0 0 auto; 
    width: 250px; 
    height: 150px; 
    display: block;
    overflow: hidden;
    border-radius: 10px;
    transition: transform 0.3s ease; 
}

.image-carousel a:hover {
    transform: scale(1.05); 
}

.image-carousel img {
    width: 100%;
    height: 100%;
    object-fit: cover; 
    display: block;
}

.product-description {
    flex: 1;
    background-color: #ffffff;
    padding: 20px;
    box-shadow: 0 0 10px #0000001a;
}

.product-description h1 {
    margin-bottom: 10px;
}

.product-description p {
    font-size: 24px;
    font-weight: bold;
    margin-bottom: 20px;
    text-align: center;
    color: #000000;
}

.product-description button {
    display: block;
    width: 100%;
    padding: 10px;
    margin-bottom: 10px;
    background-color: #ffeabe;
    color: #000000;
    border: none;
    cursor: pointer;
    font-size: 16px;
}

.product-description button:hover {
    background-color: #ffeabe;
    box-shadow: 0 0 10px #0000001a;
}


.tworca-box {
    background: #f9f9f9; 
    border-radius: 12px; 
    box-shadow: 0 4px 8px rgba(0, 0, 0, 0.1); 
    padding: 25px;
    margin: 30px auto;
    max-width: 850px; 
    color: #333; 
    text-align: center;
    font-family: Arial, sans-serif; 
}

.tworca-title {
    font-size: 2.5em; 
    margin-bottom: 20px;
    color: #333; 
    text-align: center; 
}

.tworca-content {
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 20px;
}

.tworca-content h2, .tworca-content h3 {
    color: #555; 
}

.tworca-text {
    font-size: 1.1em; 
    line-height: 1.8; 
    max-width: 750px; 
    margin: 0 auto;
    text-align: left; 
}

ul {
    list-style: none; /* Usunięcie kropek z listy */
    padding: 0;
}

ul li {
    margin-bottom: 10px; /* Odstępy między elementami listy */
}


a {
    color: #007BFF; 
    text-decoration: none; 
}

a:hover {
    text-decoration: underline; 
}


.hero2 {
    position: relative;
    text-align: center;
    color: white;
}

.hero2 .slideshow-container2 {
    position: relative;
    max-width: 100%;
    margin: auto;
}

.slide2 {
    display: none;
}

.hero2 img {
    width: 100%;
    height: auto;
}


.prev2, .next2 {
    cursor: pointer;
    position: absolute;
    top: 50%;
    width: auto;
    margin-top: -22px;
    padding: 16px;
    color: white;
    font-weight: bold;
    font-size: 18px;
    transition: 0.6s ease;
    border-radius: 0 3px 3px 0;
    user-select: none;
}

.next2 {
    right: 0;
    border-radius: 3px 0 0 3px;
}

.prev2:hover, .next2:hover {
    background-color: #000000cc;
}


.site-footer {
    background-color: #111;
    color: #fff;
    padding: 20px 0;
    text-align: center;
    width: 100%;
    position: relative;
    bottom: 0;
}

.footer-container {
    display: flex;
    justify-content: space-around;
    align-items: center;
    flex-wrap: wrap;
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 20px;
}

.footer-section {
    flex: 1;
    margin: 10px;
    min-width: 200px;
}

.footer-section h4 {
    margin-bottom: 10px;
    font-size: 18px;
}

.footer-section p, .footer-section a {
    color: #fff;
    text-decoration: none;
    margin: 5px 0;
}

.footer-section a:hover {
    color: #21623A; 
}

.social-icon {
    display: inline-block;
    margin: 5px;
    padding: 10px;
    background-color: #555;
    border-radius: 50%;
    color: #ffffff;
    text-decoration: none;
}

.social-icon:hover {
    background-color: #21623A;
    color: #111111;
}

.header {
    display: flex;
    flex-direction: row;
    justify-content: space-between;
    align-items: center;
}

@media (max-width: 600px) {
    .header {
        flex-direction: column;
    }
}


.gallery {
    display: grid;
    grid-template-columns: repeat(4, 1fr); 
    gap: 20px;
}

@media (max-width: 600px) {
    .gallery {
        grid-template-columns: repeat(2, 1fr); 
    }
}

