/* Reset & Base Styles */
* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

body {
    font-family: 'Montserrat', sans-serif;
    line-height: 1.6;
    color: #333;
    transition: padding-top 0.3s ease;
}

h1, h2, h3, h4, h5, h6 {
    font-family: 'Playfair Display', serif;
}

img {
    max-width: 100%;
}

a {
    text-decoration: none;
    color: inherit;
}

.container {
    width: 90%;
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 15px;
}

.btn {
    display: inline-block;
    padding: 10px 20px;
    border-radius: 4px;
    font-weight: 500;
    cursor: pointer;
    transition: all 0.3s ease;
}

.btn-primary {
    background-color: #3b7b9a;
    color: white;
    border: none;
}

.btn-primary:hover {
    background-color: #2c6075;
}

.btn-outline {
    background-color: transparent;
    color: white;
    border: 1px solid white;
}

.btn-outline:hover {
    background-color: rgba(255, 255, 255, 0.1);
}

.btn-outline-blue {
    background-color: transparent;
    color: #3b7b9a;
    border: 1px solid #3b7b9a;
}

.btn-outline-blue:hover {
    background-color: rgba(59, 123, 154, 0.1);
}

.section {
    padding: 80px 0;
}

.text-center {
    text-align: center;
}

/* Header Styles */
header {
    position: fixed;
    top: 0;
    left: 0;
    right: 0;
    z-index: 100;
    padding: 20px 0;
    transition: all 0.3s ease;
}

.header-scrolled {
    background-color: rgba(255, 255, 255, 0.95);
    box-shadow: 0 2px 10px rgba(0, 0, 0, 0.1);
    padding: 10px 0;
}

.header-container {
    display: flex;
    justify-content: space-between;
    align-items: center;
    position: relative;
    height: 60px;
}

.logo {
    font-family: 'Playfair Display', serif;
    font-size: 32px;
    font-weight: 700;
    color: #3b7b9a;
}

@media (min-width: 768px) {
    .logo {
        font-size: 40px;
    }
}

.nav-desktop {
    display: none;
}

@media (min-width: 768px) {
    .nav-desktop {
        display: flex;
        align-items: center;
        gap: 32px;
    }
}

.nav-link {
    font-weight: 500;
    color: #333;
    transition: color 0.3s ease;
}

.nav-link:hover {
    color: #3b7b9a;
}

.mobile-menu-btn {
    display: block;
    background: none;
    border: none;
    padding: 10px;
    cursor: pointer;
    z-index: 1000;
}

@media (min-width: 768px) {
    .mobile-menu-btn {
        display: none;
    }
}

/* Mobile Menu */
.mobile-menu {
    position: fixed;
    top: 0;
    left: -100%;
    width: 80%;
    height: 100vh;
    background: rgba(255, 255, 255, 0.98);
    padding: 80px 20px 20px;
    transition: all 0.4s cubic-bezier(0.4, 0, 0.2, 1);
    z-index: 999;
    box-shadow: 2px 0 10px rgba(0, 0, 0, 0.1);
}

.mobile-menu.active {
    left: 0;
}

.mobile-menu a {
    display: block;
    padding: 15px;
    font-size: 18px;
    color: #333;
    border-bottom: 1px solid #eee;
    transition: all 0.3s ease;
}

.mobile-menu a:hover {
    color: #3b7b9a;
    transform: translateX(10px);
}

/* Hero Section */
.hero {
    height: 100vh;
    position: relative;
    color: white;
    display: flex;
    align-items: center;
}

.hero-bg {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background-image: url('tlo.png');
    background-size: cover;
    background-position: center;
    z-index: -1;
}

.hero-bg::after {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: linear-gradient(to right, rgba(0, 0, 0, 0.6), transparent);
}

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

.hero h1 {
    font-size: 36px;
    margin-bottom: 16px;
}

@media (min-width: 768px) {
    .hero h1 {
        font-size: 48px;
    }
}

.hero p {
    font-size: 18px;
    margin-bottom: 24px;
    opacity: 0.9;
}

.hero-buttons {
    display: flex;
    flex-direction: column;
    gap: 16px;
}

@media (min-width: 640px) {
    .hero-buttons {
        flex-direction: row;
    }
}

.scroll-indicator {
    position: absolute;
    bottom: 32px;
    left: 50%;
    transform: translateX(-50%);
    text-align: center;
    color: white;
}

.scroll-indicator span {
    display: block;
    margin-bottom: 8px;
    font-size: 14px;
}

.scroll-box {
    width: 24px;
    height: 40px;
    margin: 0 auto;
    border: 2px solid white;
    border-radius: 20px;
    display: flex;
    justify-content: center;
}

.scroll-dot {
    width: 6px;
    height: 6px;
    background: white;
    border-radius: 50%;
    margin-top: 8px;
    animation: bounce 2s infinite;
}

@keyframes bounce {
    0%, 20%, 50%, 80%, 100% {
        transform: translateY(0);
    }
    40% {
        transform: translateY(10px);
    }
    60% {
        transform: translateY(5px);
    }
}

/* Holiday Homes Section */
.homes {
    background-color: #f8f8f8;
}

.section-title {
    margin-bottom: 16px;
    font-size: 32px;
    color: #333;
}

.section-subtitle {
    text-transform: uppercase;
    font-size: 14px;
    font-weight: 500;
    color: #3b7b9a;
    display: flex;
    align-items: center;
    gap: 8px;
    margin-bottom: 12px;
}

.section-description {
    color: #666;
    max-width: 800px;
    margin: 0 auto 48px;
}

.homes-grid {
    display: grid;
    grid-template-columns: 1fr;
    gap: 32px;
}

@media (min-width: 768px) {
    .homes-grid {
        grid-template-columns: repeat(2, 1fr);
    }
}

@media (min-width: 1024px) {
    .homes-grid {
        grid-template-columns: repeat(3, 1fr);
    }
}

.home-card {
    background: white;
    border-radius: 8px;
    overflow: hidden;
    box-shadow: 0 4px 6px rgba(0, 0, 0, 0.05);
    transition: all 0.3s ease;
}

.home-card:hover {
    box-shadow: 0 10px 15px rgba(0, 0, 0, 0.1);
    transform: translateY(-5px);
}

.home-image {
    height: 200px;
    overflow: hidden;
}

.home-image img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: transform 0.7s ease;
}

.home-card:hover .home-image img {
    transform: scale(1.1);
}

.home-content {
    padding: 24px;
}

.home-title {
    font-size: 20px;
    margin-bottom: 4px;
}

.home-meta {
    color: #666;
    font-size: 14px;
    margin-bottom: 16px;
}

.home-description {
    margin-bottom: 16px;
    color: #666;
}

.home-tags {
    display: flex;
    flex-wrap: wrap;
    gap: 8px;
    margin-bottom: 16px;
}

.home-tag {
    background: #e6f0f5;
    color: #3b7b9a;
    font-size: 12px;
    padding: 4px 12px;
    border-radius: 100px;
}

.view-all {
    margin-top: 48px;
    text-align: center;
}

/* Fishing Section */
.fishing {
    background: white;
}

.fishing-grid {
    display: flex;
    flex-direction: column;
    gap: 48px;
}

@media (min-width: 992px) {
    .fishing-grid {
        flex-direction: row;
    }
    .fishing-content, .fishing-image {
        width: 50%;
    }
}

.fishing-spot {
    background: #f8f8f8;
    padding: 24px;
    border-radius: 8px;
    margin-bottom: 24px;
}

.fishing-spot-title {
    font-size: 20px;
    margin-bottom: 8px;
}

.fishing-spot-description {
    color: #666;
    margin-bottom: 12px;
}

.fishing-tags {
    display: flex;
    flex-wrap: wrap;
    gap: 8px;
}

.fishing-permit {
    background: #e6f0f5;
    border-left: 4px solid #3b7b9a;
    padding: 16px;
    margin-bottom: 32px;
}

.fishing-permit-title {
    font-weight: 500;
    color: #2c6075;
    margin-bottom: 8px;
}

.fishing-image-container {
    position: relative;
    height: 100%;
    min-height: 400px;
    border-radius: 8px;
    overflow: hidden;
}

.fishing-image-container img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    border-radius: 8px;
}

.testimonial-overlay {
    position: absolute;
    bottom: 0;
    left: 0;
    right: 0;
    background: linear-gradient(to top, rgba(0, 0, 0, 0.7), transparent);
    padding: 24px;
    color: white;
}

.testimonial-text {
    font-style: italic;
    font-size: 18px;
    margin-bottom: 16px;
}

.section-header {
    text-align: center;
    margin-bottom: 48px;
}

.fishing-highlights {
    display: grid;
    grid-template-columns: 1fr;
    gap: 24px;
    margin-bottom: 48px;
}

@media (min-width: 768px) {
    .fishing-highlights {
        grid-template-columns: repeat(2, 1fr);
    }
}

@media (min-width: 1024px) {
    .fishing-highlights {
        grid-template-columns: repeat(3, 1fr);
    }
}

.highlight-card {
    background: #fff;
    border-radius: 12px;
    padding: 32px;
    transition: all 0.3s cubic-bezier(0.4, 0, 0.2, 1);
    box-shadow: 0 4px 6px rgba(0, 0, 0, 0.05);
    border: 1px solid #e0e0e0;
}

.highlight-card:hover {
    transform: translateY(-5px);
    box-shadow: 0 12px 24px rgba(59, 123, 154, 0.15);
    border-color: #3b7b9a;
}

.highlight-icon {
    font-size: 40px;
    margin-bottom: 16px;
    transition: transform 0.3s ease;
}

.highlight-card:hover .highlight-icon {
    transform: scale(1.1);
}

.highlight-card h3 {
    font-size: 20px;
    margin-bottom: 16px;
    color: #2c6075;
}

.highlight-list {
    list-style: none;
}

.highlight-list li {
    position: relative;
    padding-left: 24px;
    margin-bottom: 8px;
}

.highlight-list li:before {
    content: "•";
    position: absolute;
    left: 0;
    color: #3b7b9a;
    font-size: 20px;
}

.fishing-equipment {
    margin-bottom: 48px;
}

.equipment-title {
    font-size: 24px;
    margin-bottom: 24px;
    color: #2c6075;
    text-align: center;
}

.equipment-grid {
    display: grid;
    grid-template-columns: 1fr;
    gap: 24px;
}

@media (min-width: 768px) {
    .equipment-grid {
        grid-template-columns: repeat(3, 1fr);
    }
}

.equipment-item {
    background: #f8f8f8;
    padding: 24px;
    border-radius: 8px;
}

.equipment-item h4 {
    color: #3b7b9a;
    margin-bottom: 12px;
    font-size: 18px;
}

.equipment-item p {
    color: #666;
    margin-bottom: 8px;
}

.fishing-pricing {
    margin-top: 48px;
}

.pricing-title {
    font-size: 24px;
    margin-bottom: 24px;
    color: #2c6075;
    text-align: center;
}

.pricing-table {
    background: #f8f8f8;
    border-radius: 8px;
    overflow: hidden;
}

.pricing-row {
    display: flex;
    justify-content: space-between;
    padding: 16px 24px;
    border-bottom: 1px solid #e0e0e0;
}

.pricing-row:last-child {
    border-bottom: none;
}

.pricing-service {
    font-weight: 500;
    color: #333;
}

.pricing-price {
    font-weight: 600;
    color: #3b7b9a;
}

/* Reservations Section */
.reservations {
    background-color: #f8f8f8;
}

.packages-grid {
    display: grid;
    grid-template-columns: 1fr;
    gap: 32px;
    margin-bottom: 48px;
}

@media (min-width: 768px) {
    .packages-grid {
        grid-template-columns: repeat(2, 1fr);
    }
}

@media (min-width: 1024px) {
    .packages-grid {
        grid-template-columns: repeat(3, 1fr);
    }
}

.package-card {
    background: white;
    border-radius: 8px;
    overflow: hidden;
    box-shadow: 0 4px 6px rgba(0, 0, 0, 0.05);
    position: relative;
}

.package-card.featured {
    box-shadow: 0 4px 20px rgba(59, 123, 154, 0.2);
    border: 2px solid #3b7b9a;
}

.package-badge {
    background: #3b7b9a;
    color: white;
    text-align: center;
    padding: 8px 0;
    font-size: 14px;
    font-weight: 500;
}

.package-content {
    padding: 24px;
}

.package-title {
    font-size: 20px;
    margin-bottom: 8px;
}

.package-meta {
    font-size: 14px;
    color: #666;
    margin-bottom: 8px;
}

.package-description {
    color: #666;
    margin-bottom: 16px;
}

.package-price {
    font-size: 28px;
    font-weight: 700;
    color: #3b7b9a;
    margin-bottom: 16px;
}

.package-price span {
    font-size: 16px;
    font-weight: 400;
    color: #666;
}

.package-includes {
    margin-bottom: 24px;
}

.package-includes li {
    display: flex;
    align-items: flex-start;
    gap: 8px;
    margin-bottom: 8px;
    color: #666;
}

.package-includes li svg {
    flex-shrink: 0;
    width: 20px;
    height: 20px;
    color: #3b7b9a;
    margin-top: 2px;
}

.custom-booking {
    background: white;
    padding: 32px;
    border-radius: 8px;
    box-shadow: 0 4px 6px rgba(0, 0, 0, 0.05);
    border: 1px solid #eee;
}

.custom-title {
    font-size: 24px;
    margin-bottom: 16px;
}

.custom-description {
    color: #666;
    margin-bottom: 24px;
}

.custom-options {
    display: grid;
    grid-template-columns: 1fr;
    gap: 32px;
    margin-bottom: 32px;
}

@media (min-width: 768px) {
    .custom-options {
        grid-template-columns: repeat(2, 1fr);
    }
}

.custom-option-title {
    font-size: 18px;
    margin-bottom: 12px;
}

.custom-options ul {
    list-style: none;
}

.custom-options li {
    display: flex;
    align-items: flex-start;
    gap: 8px;
    margin-bottom: 8px;
    color: #666;
}

.custom-options .check svg {
    color: #3b7b9a;
}

.custom-options .warning svg {
    color: #e67e22;
}

.custom-buttons {
    display: flex;
    flex-wrap: wrap;
    gap: 16px;
}

/* Contact Section */
.contact {
    background: white;
}

.contact-grid {
    display: grid;
    grid-template-columns: 1fr;
    gap: 48px;
}

@media (min-width: 768px) {
    .contact-grid {
        grid-template-columns: repeat(2, 1fr);
    }
}

.contact-info {
    margin-bottom: 32px;
}

.contact-method {
    display: flex;
    margin-bottom: 24px;
}

.contact-icon {
    background: #e6f0f5;
    width: 48px;
    height: 48px;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    margin-right: 16px;
    flex-shrink: 0;
}

.contact-icon svg {
    color: #3b7b9a;
    width: 20px;
    height: 20px;
}

.contact-details h4 {
    font-weight: 500;
    color: #333;
    margin-bottom: 4px;
}

.contact-details p {
    color: #666;
}

.emergency-contact {
    background: #e6f0f5;
    border-left: 4px solid #3b7b9a;
    padding: 16px;
}

.emergency-contact h4 {
    font-weight: 500;
    color: #2c6075;
    margin-bottom: 8px;
}

.emergency-contact p {
    color: #666;
}

.contact-form {
    background: #f8f8f8;
    padding: 32px;
    border-radius: 8px;
    box-shadow: 0 4px 6px rgba(0, 0, 0, 0.05);
    border: 1px solid #eee;
}

.contact-form h4 {
    font-size: 24px;
    margin-bottom: 24px;
}

.form-row {
    display: grid;
    grid-template-columns: 1fr;
    gap: 16px;
    margin-bottom: 16px;
}

@media (min-width: 640px) {
    .form-row {
        grid-template-columns: repeat(2, 1fr);
    }
}

.form-group {
    margin-bottom: 16px;
}

.form-group label {
    display: block;
    font-size: 14px;
    font-weight: 500;
    color: #333;
    margin-bottom: 8px;
}

.form-group input,
.form-group textarea {
    width: 100%;
    padding: 10px 16px;
    border: 1px solid #ddd;
    border-radius: 4px;
    font-family: inherit;
    font-size: 16px;
}

.form-group textarea {
    min-height: 120px;
    resize: vertical;
}

/* Footer Styles */
footer {
    background: #2c6075;
    color: white;
    padding: 60px 0 30px;
}

.footer-grid {
    display: grid;
    grid-template-columns: 1fr;
    gap: 40px;
    margin-bottom: 40px;
}

@media (min-width: 768px) {
    .footer-grid {
        grid-template-columns: repeat(3, 1fr);
        gap: 30px;
    }
}

/* Nowe style dla kolejności na mobile */
@media (max-width: 768px) {
    .footer-grid {
        display: flex;
        flex-direction: column;
    }
    
    .footer-links {
        order: 1;
    }
    
    .footer-about {
        order: 2;
    }
    
    .footer-credits {
        order: 3;
    }
}


.footer-title {
    font-size: 20px;
    margin-bottom: 20px;
    font-weight: 600;
    color: white;
}

.footer-about p {
    color: #b3d1de;
    margin-bottom: 20px;
    line-height: 1.6;
}

.footer-contact {
    display: flex;
    flex-direction: column;
    gap: 12px;
}

.contact-item {
    display: flex;
    align-items: center;
    gap: 10px;
    color: #b3d1de;
}

.contact-item svg {
    flex-shrink: 0;
}

.footer-links ul {
    list-style: none;
}

.footer-links li {
    margin-bottom: 12px;
}

.footer-links a {
    color: #b3d1de;
    transition: color 0.3s ease;
    display: inline-block;
    padding: 4px 0;
}

.footer-links a:hover {
    color: white;
}

.social-icons {
    display: flex;
    gap: 16px;
}

.social-icon {
    color: white;
    width: 40px;
    height: 40px;
    border-radius: 50%;
    background: rgba(255, 255, 255, 0.1);
    display: flex;
    align-items: center;
    justify-content: center;
    transition: all 0.3s ease;
}

.social-icon:hover {
    background: rgba(255, 255, 255, 0.2);
    transform: translateY(-2px);
}

.social-icon svg {
    width: 20px;
    height: 20px;
}

.footer-bottom {
    border-top: 1px solid rgba(255, 255, 255, 0.1);
    padding-top: 30px;
    text-align: center;
    margin-top: 30px;
}

.copyright {
    color: #b3d1de;
    font-size: 14px;
}

.footer-author {
    text-align: center;
    color: #b3d1de;
    font-size: 13px;
    margin-top: 24px;
    margin-bottom: 0;
    padding-bottom: 10px;
    letter-spacing: 0.02em;
}

@media (min-width: 768px) {
    .footer-author {
        text-align: right;
        margin-top: 0;
        padding-bottom: 10px;
        grid-column: 3 / 4;
    }
}

@media (max-width: 768px) {
    .footer-grid {
        grid-template-columns: 1fr;
    }
    .footer-author {
        text-align: center;
        margin-top: 20px;
        padding-bottom: 10px;
    }
}

/* Carousel Styles */
.homes-carousel-container {
    position: relative;
    margin: 0 auto;
    max-width: 1200px;
    padding: 0 40px;
}

.homes-carousel {
    display: flex;
    overflow-x: auto;
    scroll-behavior: smooth;
    gap: 24px;
    padding: 16px 0;
    scrollbar-width: none;
    -ms-overflow-style: none;
}

.homes-carousel::-webkit-scrollbar {
    display: none;
}

.carousel-btn {
    position: absolute;
    top: 50%;
    transform: translateY(-50%);
    width: 40px;
    height: 40px;
    background: #3b7b9a;
    color: white;
    border: none;
    border-radius: 50%;
    box-shadow: 0 2px 10px rgba(0, 0, 0, 0.2);
    cursor: pointer;
    z-index: 10;
    display: flex;
    align-items: center;
    justify-content: center;
    transition: all 0.3s ease;
}

.carousel-btn:hover {
    background: #2c6075;
    transform: translateY(-50%) scale(1.1);
}

.carousel-btn svg {
    width: 24px;
    height: 24px;
}

.prev-btn {
    left: 0;
}

.next-btn {
    right: 0;
}

.homes-carousel .home-card {
    flex: 0 0 300px;
    max-width: 300px;
    height: auto;
    display: flex;
    flex-direction: column;
    background: white;
    border-radius: 8px;
    overflow: hidden;
    box-shadow: 0 4px 6px rgba(0, 0, 0, 0.1);
    transition: transform 0.3s ease;
}

.homes-carousel .home-card:hover {
    transform: translateY(-5px);
}

.homes-carousel .home-image {
    height: 200px;
    overflow: hidden;
    flex-shrink: 0;
}

.homes-carousel .home-image img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: transform 0.5s ease;
}

.homes-carousel .home-card:hover .home-image img {
    transform: scale(1.05);
}

.homes-carousel .home-content {
    padding: 20px;
    flex: 1;
    display: flex;
    flex-direction: column;
}

.homes-carousel .home-title {
    font-size: 18px;
    margin-bottom: 4px;
}

.homes-carousel .home-meta {
    color: #666;
    font-size: 14px;
    margin-bottom: 12px;
}

.homes-carousel .home-description {
    margin-bottom: 12px;
    color: #666;
    overflow: hidden;
    text-overflow: ellipsis;
    display: -webkit-box;
    -webkit-line-clamp: 3;
    line-clamp: 3;
    -webkit-box-orient: vertical;
}

.homes-carousel .home-tags {
    display: flex;
    flex-wrap: wrap;
    gap: 8px;
    margin-bottom: 16px;
}

.homes-carousel .home-tag {
    background: #e6f0f5;
    color: #3b7b9a;
    font-size: 12px;
    padding: 4px 12px;
    border-radius: 100px;
}

.homes-carousel .btn {
    margin-top: auto;
    width: 100%;
}

@media (max-width: 768px) {
   
    .homes-carousel-container {
        padding: 0 15px;
    }
    .homes-carousel .home-card {
        flex: 0 0 280px;
        max-width: 280px;
    }
}
/* Animations */
html {
    scroll-behavior: smooth;
}

#homes, #footer {
    scroll-margin-top: 100px;
}

.animate-on-scroll {
    opacity: 0;
    transform: translateY(30px);
    transition: all 0.6s cubic-bezier(0.4, 0, 0.2, 1);
}

.animate-on-scroll.animated {
    opacity: 1;
    transform: translateY(0);
}

/* Hamburger Menu Animation */
.hamburger {
    width: 32px;
    height: 24px;
    position: relative;
    transition: all 0.3s ease;
}

.hamburger-line {
    position: absolute;
    height: 3px;
    width: 100%;
    background: #3b7b9a;
    border-radius: 2px;
    transition: all 0.3s ease;
}

.hamburger-line:nth-child(1) {
    top: 0;
}

.hamburger-line:nth-child(2) {
    top: 50%;
    transform: translateY(-50%);
}

.hamburger-line:nth-child(3) {
    bottom: 0;
}

.header-scrolled .hamburger-line {
    background: #333;
}

.mobile-menu-btn.active .hamburger-line:nth-child(1) {
    transform: translateY(10px) rotate(45deg);
}

.mobile-menu-btn.active .hamburger-line:nth-child(2) {
    opacity: 0;
}

.mobile-menu-btn.active .hamburger-line:nth-child(3) {
    transform: translateY(-10px) rotate(-45deg);
}


/* Payment Section */
.payment-section {
    margin: 50px 0;
    padding: 30px;
    background: rgba(59,123,154,0.05);
    border-radius: 20px;
}

.payment-section-title {
    text-align: center;
    color: #2c6075;
    font-size: 2.2em;
    margin-bottom: 40px;
    position: relative;
}

.payment-section-title:after {
    content: '';
    display: block;
    width: 60px;
    height: 3px;
    background: #3b7b9a;
    margin: 15px auto;
    border-radius: 2px;
}

.payment-methods-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(240px, 1fr));
    gap: 25px;
    max-width: 1200px;
    margin: 0 auto;
}

.payment-method-card {
    background: white;
    padding: 25px;
    border-radius: 15px;
    box-shadow: 0 5px 25px rgba(44,96,117,0.08);
    transition: all 0.4s cubic-bezier(0.25, 0.46, 0.45, 0.94);
    cursor: pointer;
    border: 2px solid transparent;
}

.payment-method-card.highlighted {
    border-color: #3b7b9a;
    animation: pulseBorder 2s infinite;
}

@keyframes pulseBorder {
    0% { border-color: rgba(59,123,154,0.5); }
    50% { border-color: #3b7b9a; }
    100% { border-color: rgba(59,123,154,0.5); }
}

.payment-method-card:hover {
    transform: translateY(-10px);
    box-shadow: 0 15px 35px rgba(44,96,117,0.15);
}

.payment-icon-wrapper {
    text-align: center;
    margin-bottom: 20px;
}

.payment-icon-svg {
    width: 60px;
    height: 60px;
    fill: #3b7b9a;
    margin-bottom: 15px;
    transition: transform 0.3s ease;
}

.payment-method-card:hover .payment-icon-svg {
    transform: scale(1.1) rotate(-5deg);
}

.payment-method-name {
    display: block;
    font-weight: 600;
    color: #2c6075;
    font-size: 1.2em;
    margin-bottom: 10px;
}

.payment-brands {
    display: flex;
    flex-wrap: wrap;
    gap: 10px;
    justify-content: center;
}

.payment-brands span {
    background: rgba(59,123,154,0.1);
    color: #3b7b9a;
    padding: 6px 15px;
    border-radius: 20px;
    font-size: 0.9em;
    transition: all 0.3s ease;
}

.payment-method-card:hover .payment-brands span {
    background: #3b7b9a;
    color: white;
}

@media (max-width: 768px) {
    .payment-methods-grid {
        grid-template-columns: 1fr;
    }
    .payment-method-card {
        padding: 20px;
    }
}

/* Restaurant Cards */
.restaurants-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: 30px;
    margin-top: 40px;
}

.restaurant-card {
    background: white;
    border-radius: 16px;
    padding: 25px;
    box-shadow: 0 4px 6px rgba(0, 0, 0, 0.05);
    transition: all 0.3s ease;
    min-height: 250px;
    display: flex;
    flex-direction: column;
    border: 2px solid rgba(32, 101, 209, 0.15);
}

.restaurant-card:hover {
    transform: translateY(-5px);
    box-shadow: 0 16px 48px rgba(32, 101, 209, 0.12);
    border-color: rgba(32, 101, 209, 0.3);
}

.restaurant-content {
    flex: 1;
    display: flex;
    flex-direction: column;
    justify-content: space-between;
}

.restaurant-title {
    font-size: 1.25rem;
    color: #2c6075;
    margin-bottom: 1rem;
}

.restaurant-details {
    margin-bottom: 1.5rem;
}

.restaurant-info {
    margin: 0.5rem 0;
    font-size: 0.95rem;
    color: #4a5568;
}

.info-label {
    font-weight: 600;
    color: #3b7b9a;
    display: inline-block;
    min-width: 100px;
}

.phone-number {
    display: inline-block;
    padding: 4px 8px;
    border-radius: 4px;
    transition: all 0.3s ease;
    color: #3b7b9a;
    text-decoration: none;
    background: rgba(59, 123, 154, 0.1);
}

.phone-number:hover {
    background: rgba(59, 123, 154, 0.2);
    transform: translateY(-1px);
}

.map-link {
    color: #3b7b9a;
    text-decoration: none;
    border-bottom: 1px dashed currentColor;
}

.time-badge {
    background: rgba(59,123,154,0.05);
    color: #3b7b9a;
    padding: 0.25rem 0.75rem;
    border-radius: 20px;
    font-size: 0.9em;
    display: inline-flex;
    align-items: center;
    gap: 0.5rem;
}

.header-container {
    display: flex;
    justify-content: space-between;
    align-items: center;
    position: relative;
    height: 60px;
}

.desktop-nav {
    display: flex;
    gap: 20px;
    align-items: flex-end;
    height: 100%;
}

.desktop-nav a {
    color: black;
    text-decoration: none;
    font-weight: 700;
    font-size: 16px;
    transition: all 0.3s ease;
    padding: 10px 0 0 0;
    position: relative;
    display: flex;
    align-items: flex-end;
}
.desktop-nav a:hover {
    color: #1a6fb0;
    transform: translateY(-2px);
}

.desktop-nav a::after {
    content: '';
    position: absolute;
    bottom: 0;
    left: 0;
    width: 0;
    height: 2px;
    background: #1a6fb0;
    transition: width 0.3s ease;
}

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

.mobile-menu-btn {
    display: flex;
    background: transparent;
    border: none;
    cursor: pointer;
    padding: 8px;
    z-index: 1002;
}

.mobile-menu {
    display: none;
    position: absolute;
    top: 100%;
    left: 0;
    width: 100%;
    background: rgba(255, 255, 255, 0.97);
    backdrop-filter: blur(5px);
    padding: 15px;
    box-shadow: 0 10px 20px rgba(0, 0, 0, 0.1);
    z-index: 1000;
    opacity: 0;
    transform: translateY(-10px);
    transition: opacity 0.3s ease, transform 0.3s ease;
    border-radius: 0 0 8px 8px;
}

.mobile-menu.active {
    display: block;
    opacity: 1;
    transform: translateY(0);
}

.mobile-menu a {
    display: block;
    padding: 10px 0;
    color: #333;
    text-decoration: none;
    font-size: 16px;
    border-bottom: 1px solid rgba(0, 0, 0, 0.05);
    transition: all 0.2s ease;
}

.mobile-menu a:hover {
    color: #1a6fb0;
    padding-left: 8px;
}

@media (max-width: 768px) {
    .desktop-nav {
        display: none;
    }

    .mobile-menu-btn {
        display: block;
    }

    .logo {
        position: absolute;
        left: 50%;
        transform: translateX(-50%);
        z-index: 1001;
        font-weight: 700;
    }

    .mobile-menu a {
        font-weight: 600;
        transition: all 0.3s ease;
    }

    .mobile-menu a:hover {
        color: #1a6fb0;
        padding-left: 10px;
    }
}

.detail-item {
    display: flex;
    align-items: center;
    gap: 0.75rem;
    margin: 1rem 0;
    color: #4a5568;
}

.menu-button {
    width: 100%;
    padding: 0.75rem 1.5rem;
    background: rgba(59,123,154,0.05);
    border: 2px solid rgba(59,123,154,0.1);
    border-radius: 8px;
    color: #3b7b9a;
    font-weight: 500;
    display: flex;
    justify-content: space-between;
    align-items: center;
    transition: all 0.3s ease;
    margin-top: 1rem;
}

.menu-button:hover {
    background: rgba(59,123,154,0.1);
    transform: translateX(5px);
}

@media (max-width: 768px) {
    .restaurants-grid {
        grid-template-columns: 1fr;
    }
    .restaurant-card {
        padding: 20px;
    }
    .info-label {
        min-width: 100px;
    }
}

.google-translate-btn {
    display: flex;
    align-items: center;
    margin-right: 24px;
    height: 40px;
}

.goog-te-gadget-simple {
    background: transparent !important;
    border: none !important;
    color: #111 !important;
    font-weight: 700 !important;
    font-family: 'Montserrat', sans-serif !important;
    padding: 0 12px !important;
    border-radius: 8px !important;
    box-shadow: none !important;
    font-size: 16px !important;
    transition: background 0.2s;
}

.goog-te-gadget-simple .goog-te-menu-value span {
    color: #111 !important;
    font-weight: 700 !important;
}

.goog-te-menu-value {
    background: transparent !important;
    border: none !important;
    padding: 0 !important;
}

/* Google Translate on mobile */
@media (max-width: 768px) {
    .header-container {
        position: relative;
        justify-content: flex-start;
        gap: 8px;
    }
    #google_translate_element {
        order: 1;
        margin: 0 8px 0 0;
        min-width: 0;
        width: auto;
        text-align: left;
        display: flex;
        align-items: center;
    }
    .logo {
        order: 2;
        font-size: 22px;
    }
    .google-translate-btn {
        height: 28px;
        margin: 0;
        padding: 0;
    }
    .goog-te-gadget-simple {
        font-size: 13px !important;
        padding: 0 4px !important;
        min-width: 60px;
        max-width: 100px;
        height: 24px !important;
    }
    .goog-te-gadget-simple .goog-te-menu-value span {
        font-size: 13px !important;
    }
}
/* Google Translate on desktop */
@media (min-width: 769px) {
    .header-container {
        gap: 0;
    }
    #google_translate_element {
        margin: 0 0 0 32px;
        min-width: 120px;
        max-width: 180px;
        order: unset;
        display: flex;
        align-items: flex-end;
    }
    .logo {
        font-size: 24px;
    }
    .google-translate-btn {
        height: 40px;
    }
    .goog-te-gadget-simple {
        font-size: 16px !important;
        padding: 0 12px !important;
        min-width: 100px;
        max-width: 180px;
        height: 32px !important;
    }
}



/* Desktop: Google Translate left of Contact */
@media (min-width: 769px) {
    .desktop-nav {
        align-items: center;
    }
    .desktop-nav .google-translate-btn {
        margin-left: 32px;
        display: flex;
        align-items: center;
        height: 32px;
    }
    .goog-te-gadget-simple {
        font-size: 14px !important;
        min-width: 80px;
        max-width: 120px;
        padding: 0 8px !important;
        height: 28px !important;
    }
}

/* Mobile: logo closer to hamburger, smaller translate */
@media (max-width: 768px) {
    .header-container {
        gap: 4px;
    }
    .logo {
        right: 1px;
        transform: static;
        position: flex;
        font-size: 23px;
        margin-left: 0;
    }
    .google-translate-btn {
        height: 22px;
        margin: 0 0 0 4px;
    }
    .goog-te-gadget-simple {
        font-size: 11px !important;
        min-width: 48px;
        max-width: 80px;
        padding: 0 2px !important;
        height: 18px !important;
    }
}

@media (max-width: 768px) {
    .mobile-menu {
        position: fixed;
        top: 0;
        left: 0;
        width: 50vw;
        max-width: 170px;
        height: 100vh;
        background: rgba(255,255,255,0.35);
        backdrop-filter: blur(18px);
        -webkit-backdrop-filter: blur(18px);
        padding: 80px 16px 20px 16px;
        transition: transform 0.4s cubic-bezier(0.4, 0, 0.2, 1), opacity 0.3s;
        z-index: 999;
        box-shadow: 2px 0 10px rgba(0, 0, 0, 0.1);
        transform: translateX(-100%);
        opacity: 1;
        display: block;
        border-radius: 0 18px 18px 0;
    }
    .mobile-menu.active {
        transform: translateX(0);
        opacity: 1;
        height: 51vh;
        top: 10vh;
        border-radius: 0 18px 18px 0;
        background: rgba(255, 255, 255, 0.25);
    }
}

.btn-outline {
  background-color: transparent;
  color: white;
  border: 1px solid white;
}

.btn-outline:hover {
  background-color: rgba(255, 255, 255, 0.1);
}



/* Footer credits */
.footer-credits {
    text-align: center;
}

@media (min-width: 768px) {
    .footer-credits {
        text-align: center;
    }
}

.footer-credits p {
    margin: 8px 0;
    color: #b3d1de;
    font-size: 14px;
}

@media (max-width: 768px) {
    .footer-grid {
        grid-template-columns: 1fr;
    }

}

 

        /* Nowe style dla nawigacji */
        .header-container {
            display: flex;
            justify-content: space-between;
            align-items: center;
            position: relative;
            height: 60px;
            /* Stała wysokość */
        }

        .desktop-nav {
            display: flex;
            gap: 20px;
            align-items: flex-end;
            /* wyrównanie do dołu */
            height: 100%;
        }

        .desktop-nav a {
            color: black;
            text-decoration: none;
            font-weight: 700;
            font-size: 16px;
            transition: all 0.3s ease;
            padding: 10px 0 0 0;
            /* lekko obniża napisy */
            position: relative;
            display: flex;
            align-items: flex-end;
            /* wyrównanie tekstu do dołu */
        }

        .desktop-nav a:hover {
            color: #1a6fb0;
            /* Niebieski hover */
            transform: translateY(-2px);
        }

        .desktop-nav a::after {
            content: '';
            position: absolute;
            bottom: 0;
            left: 0;
            width: 0;
            height: 2px;
            background: #1a6fb0;
            transition: width 0.3s ease;
        }

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

        /* Kontener dla tłumaczenia Google */
        .google-translate-container {
            display: flex;
            align-items: flex-end;
            /* wyrównanie do dołu */
            height: 100%;
            margin-left: 32px;

        }


        .goog-te-gadget {
            font-family: Montserrat, sans-serif !important;
            font-size: 14px !important;
            display: flex !important;
            align-items: center;
            height: 100%;
        }

        .google-translate {
            min-width: 170px;
            /* SZEROKOŚĆ tłumacza */
            max-width: 220px;
        }

        .google-translate-container {
            display: flex;
            align-items: flex-end;
            /* wyrównanie do dołu */
            height: 100%;
            margin-left: 32px;
            /* odstęp od linków */
        }

        .goog-te-gadget-simple {
            display: flex !important;
            align-items: flex-end !important;
            /* wyrównanie do dołu */
            height: 100% !important;
            background: transparent !important;
            background-color: transparent !important;
            border: none !important;
            box-shadow: none !important;
            padding: 0 10px !important;
        }


        .goog-te-menu {
            background-color: transparent !important;
            /* Przezroczyste tło */
            border: none !important;
            box-shadow: none !important;
            padding: 0 !important;
            margin: 0 !important;
        }

        .goog-te-menu-value {
            display: flex !important;
            align-items: center;
            height: 100%;
            padding: 0 !important;
            border: none !important;
        }

        .goog-te-menu-value span {
            color: white !important;
            font-weight: 700 !important;
            font-size: 16px !important;
            padding: 5px 0 !important;
            transition: all 0.3s ease !important;
        }

        .goog-te-menu-value:hover span {
            color: #1a6fb0 !important;
        }

       

        .goog-te-menu-value span:nth-child(2) {
            margin-right: 4px;
            /* Odstęp między flagą a strzałką */
        }

        /* Strzałka rozwijania */
        .goog-te-menu-value span:last-child {
            position: relative;
            top: 1px;
            /* Delikatne przesunięcie do wyrównania */
        }

        .mobile-menu-btn {
            display: none;
            background: transparent;
            border: none;
            cursor: pointer;
            padding: 8px;
            z-index: 1002;
        }

        .mobile-menu {
            display: none;
            position: absolute;
            top: 100%;
            left: 0;
            width: 100%;
            background: rgba(255, 255, 255, 0.97);
            backdrop-filter: blur(5px);
            padding: 15px;
            box-shadow: 0 10px 20px rgba(0, 0, 0, 0.1);
            z-index: 1000;
            opacity: 0;
            transform: translateY(-10px);
            transition: opacity 0.3s ease, transform 0.3s ease;
            border-radius: 0 0 8px 8px;
        }

        .mobile-menu.active {
            display: block;
            opacity: 1;
            transform: translateY(0);
        }

        .mobile-menu a {
            display: block;
            padding: 10px 0;
            color: #333;
            text-decoration: none;
            font-size: 16px;
            border-bottom: 1px solid rgba(0, 0, 0, 0.05);
            transition: all 0.2s ease;
        }

        .mobile-menu a:hover {
            color: #1a6fb0;
            padding-left: 8px;
        }
.section.camping-parcels {
    background: #f8f8f8;
    padding: 80px 0 20px 0;
}

.parcel-info-animated {
    background: linear-gradient(120deg, #e6f0f5 70%, #fff 100%);
    border-radius: 22px;
    box-shadow: 0 8px 32px rgba(44,96,117,0.10), 0 1.5px 8px #A1195B22;
    padding: 48px 32px 32px 32px;
    margin-bottom: 48px;
    position: relative;
    overflow: hidden;
    animation: cardFadeIn 1s cubic-bezier(.4,0,.2,1) both;
    max-width: 1100px;
    margin-left: auto;
    margin-right: auto;
}

.parcel-info-header {
    text-align: center;
    margin-bottom: 24px;
    animation: fadeIn 0.7s 0.2s both;
}

.parcel-info-badge {
    display: inline-block;
    background: linear-gradient(90deg,#A1195B 0%,#3b7b9a 100%);
    color: #fff;
    font-weight: 700;
    border-radius: 20px;
    padding: 6px 22px;
    font-size: 1.1em;
    margin-bottom: 12px;
    letter-spacing: 0.05em;
    box-shadow: 0 2px 8px #A1195B22;
    animation: pulseIcon 1.5s infinite;
}

.parcel-info-title {
    font-size: 2.1em;
    color: #2c6075;
    margin: 0 0 8px 0;
    font-family: 'Playfair Display', serif;
    letter-spacing: 0.01em;
}

.parcel-info-desc {
    color: #444;
    font-size: 1.1em;
    margin-bottom: 0;
    opacity: 0.85;
}

.parcel-features-animated {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(260px, 1fr));
    gap: 14px 32px;
    margin: 32px 0 28px 0;
    list-style: none;
    padding: 0;
    animation: fadeIn 0.7s 0.4s both;
}

.feature-icon-anim {
    font-size: 1.4em;
    margin-right: 10px;
    vertical-align: middle;
    animation: bounceIcon 1.7s infinite;
    display: inline-block;
}

.parcel-pricing-animated {
    background: #fff;
    border-radius: 14px;
    box-shadow: 0 2px 12px #3b7b9a11;
    padding: 28px 18px 18px 18px;
    margin-bottom: 24px;
    animation: fadeIn 0.7s 0.6s both;
}

.parcel-pricing-title {
    color: #A1195B;
    font-size: 1.3em;
    margin-bottom: 12px;
    font-weight: 700;
    text-align: center;
    letter-spacing: 0.02em;
}

.parcel-pricing-table-anim {
    display: grid;
    grid-template-columns: 1fr 1fr 1fr;
    gap: 7px 18px;
    font-size: 1.08em;
    margin-bottom: 10px;
    animation: fadeIn 0.7s 0.7s both;
}
.parcel-pricing-table-anim div {
    display: contents;
}
.parcel-pricing-table-anim span {
    padding: 3px 0;
    text-align: left;
}
.parcel-pricing-table-anim .season {
    color: #3b7b9a;
    font-weight: 600;
    font-size: 0.98em;
    letter-spacing: 0.01em;
}
.parcel-pricing-note {
    color: #A1195B;
    font-size: 1em;
    margin: 8px 0 0 0;
    text-align: center;
    animation: fadeIn 0.7s 0.8s both;
}
.parcel-pricing-extra {
    display: flex;
    flex-direction: column;
    gap: 3px;
    font-size: 0.98em;
    color: #2c6075;
    margin-top: 10px;
    text-align: center;
    animation: fadeIn 0.7s 0.9s both;
}

.parcel-electric-car-anim {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 12px;
    margin: 22px 0 0 0;
    font-size: 1.1em;
    animation: fadeIn 0.7s 1.1s both;
}
.car-icon-anim {
    font-size: 1.7em;
    animation: pulseIcon 1.5s infinite;
}
.car-text-anim {
    color: #2c6075;
    font-weight: 600;
    letter-spacing: 0.01em;
}
.parcel-payment-anim {
    display: flex;
    flex-direction: column;
    align-items: center;
    margin-top: 18px;
    gap: 3px;
    animation: fadeIn 0.7s 1.3s both;
}
.payment-title-anim {
    font-weight: 700;
    color: #3b7b9a;
    font-size: 1.08em;
}
.payment-methods-anim {
    color: #2c6075;
    font-size: 1em;
}
.payment-note-anim {
    color: #A1195B;
    font-size: 0.96em;
    opacity: 0.8;
}

/* Animacje */
@keyframes cardFadeIn {
    from { opacity: 0; transform: translateY(40px) scale(0.95);}
    to   { opacity: 1; transform: translateY(0) scale(1);}
}
@keyframes fadeIn {
    from { opacity: 0;}
    to { opacity: 1;}
}
@keyframes pulseIcon {
    0%,100% { transform: scale(1);}
    50% { transform: scale(1.13);}
}
@keyframes bounceIcon {
    0%,100% { transform: translateY(0);}
    30% { transform: translateY(-7px);}
    50% { transform: translateY(0);}
    70% { transform: translateY(-3px);}
}

.microcar-section {
    background: #f8f8f8;
    padding: 80px 0;
}
.microcar-section .section-header {
    text-align: center;
    margin-bottom: 48px;
}
.microcar-section .section-subtitle {
    text-transform: uppercase;
    font-size: 14px;
    font-weight: 500;
    color: #3b7b9a;
    display: flex;
    align-items: center;
    gap: 8px;
    justify-content: center;
    margin-bottom: 12px;
}
.microcar-section .section-title {
    font-size: 32px;
    color: #333;
    margin-bottom: 16px;
}
.microcar-section .section-description {
    color: #666;
    max-width: 700px;
    margin: 0 auto 32px;
    font-size: 1.1em;
}
.microcar-highlight {
    color: #2c6075;
    font-weight: 600;
}
.microcar-grid {
    display: flex;
    flex-wrap: wrap;
    gap: 40px;
    align-items: flex-start;
    justify-content: space-between;
}
.microcar-features {
    flex: 1;
    min-width: 260px;
    font-size: 1.08em;
    line-height: 1.7;
}
.microcar-features ul {
    margin-bottom: 18px;
    line-height: 1.7;
    padding-left: 18px;
}
.microcar-features ul li {
    margin-bottom: 4px;
}
.microcar-howto {
    margin-bottom: 10px;
}
.microcar-howto ol {
    margin-left: 18px;
    margin-top: 5px;
}
.microcar-license {
    margin-top: 10px;
    background: #e6f0f5;
    color: #3b7b9a;
    padding: 6px 16px;
    border-radius: 20px;
    font-weight: 600;
    display: inline-block;
    font-size: 0.98em;
}
.microcar-imgbox {
    flex: 1;
    min-width: 260px;
    text-align: center;
}
.microcar-imgbox img {
    max-width: 320px;
    width: 100%;
    border-radius: 18px;
    box-shadow: 0 6px 24px #3b7b9a22;
    margin-bottom: 12px;
    transition: transform 0.3s;
}
.microcar-imgbox img:hover {
    transform: scale(1.04);
}
.microcar-imgdesc {
    font-size: 0.95em;
    color: #666;
}
.microcar-btnbox {
    margin-top: 30px;
    text-align: center;
}
.microcar-btnbox .btn {
    font-size: 1.1em;
    padding: 14px 36px;
    border-radius: 30px;
    font-weight: 600;
}
@media (max-width: 900px) {
    .microcar-grid {
        flex-direction: column;
        gap: 24px;
    }
    .microcar-imgbox img {
        max-width: 100%;
    }
}

.gallery-buttons-container {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(180px, 1fr));
    gap: 18px;
    margin: 40px 0 0 0;
    padding: 0;
}

.gallery-button {
    display: flex;
    align-items: center;
    justify-content: center;
    padding: 14px 0;
    background-color: #3b7b9a;
    color: #fff;
    text-align: center;
    border-radius: 30px;
    font-weight: 600;
    font-size: 1.08em;
    text-decoration: none;
    transition: all 0.3s cubic-bezier(.4,0,.2,1);
    box-shadow: 0 4px 16px rgba(59,123,154,0.10);
    position: relative;
    overflow: hidden;
    border: none;
    outline: none;
    cursor: pointer;
    letter-spacing: 0.01em;
}

.gallery-button:hover,
.gallery-button:focus {
    background-color: #2c6075;
    color: #fff;
    transform: translateY(-3px) scale(1.03);
    box-shadow: 0 8px 24px rgba(59,123,154,0.16);
}

.gallery-button:active {
    transform: scale(0.98);
}

.gallery-button span {
    position: relative;
    z-index: 1;
    padding-left: 2px;
    padding-right: 2px;
}

/* Animowane tło na hover */
.gallery-button::before {
    content: '';
    position: absolute;
    top: 0; left: 0; width: 100%; height: 100%;
    background: linear-gradient(90deg, rgba(255,255,255,0.13) 0%, transparent 100%);
    transition: transform 0.5s cubic-bezier(.4,0,.2,1);
    transform: translateX(-100%);
    z-index: 0;
    border-radius: 30px;
}

.gallery-button:hover::before,
.gallery-button:focus::before {
    transform: translateX(0);
}

@media (max-width: 600px) {
    .gallery-buttons-container {
        grid-template-columns: 1fr;
        gap: 12px;
    }
    .gallery-button {
        font-size: 1em;
        padding: 12px 0;
    }
}

/* --- Cennik zezwoleń PZW --- */
.permit-pricing-table {
    background: #f8f8f8;
    border-radius: 16px;
    box-shadow: 0 4px 16px rgba(59,123,154,0.08);
    padding: 36px 24px 32px 24px;
    margin: 0 auto 40px auto;
    max-width: 600px;
}

.permit-table {
    width: 100%;
    border-collapse: separate;
    border-spacing: 0;
    margin-bottom: 28px;
    background: white;
    border-radius: 12px;
    overflow: hidden;
    box-shadow: 0 2px 8px rgba(59,123,154,0.07);
}
.permit-table th, .permit-table td {
    padding: 14px 10px;
    text-align: center;
    font-size: 1.08em;
}
.permit-table th {
    background: #3b7b9a;
    color: #fff;
    font-weight: 600;
    border-bottom: 2px solid #e6f0f5;
}
.permit-table td {
    color: #2c6075;
    background: #f9fbfd;
    border-bottom: 1px solid #e6f0f5;
}
.permit-table tr:last-child td {
    border-bottom: none;
}
.permit-table td:first-child {
    font-weight: 600;
    color: #A1195B;
    background: #f3eaf2;
}
.permit-note {
    color: #888;
    font-size: 0.95em;
    font-style: italic;
    margin-left: 4px;
}
.permit-info-box {
    background: #fff;
    border-radius: 12px;
    box-shadow: 0 2px 8px rgba(59,123,154,0.07);
    padding: 22px 18px 12px 18px;
    margin-top: 10px;
}
.permit-info-box h4 {
    color: #3b7b9a;
    font-size: 1.15em;
    margin-bottom: 10px;
    font-weight: 600;
    display: flex;
    align-items: center;
    gap: 8px;
}
.permit-data-list {
    margin: 0 0 0 18px;
    padding: 0;
    color: #444;
    font-size: 1em;
    line-height: 1.7;
}
.permit-mail {
    font-weight: 600;
    transition: color 0.2s;
}
.permit-mail:hover {
    color: #3b7b9a;
    text-decoration: underline;
}
.permit-blockquote {
    background: #f8f8f8;
    color: #3b7b9a;
    border-left: 4px solid #A1195B;
    margin: 18px 0 0 0;
    padding: 10px 18px;
    font-style: italic;
    border-radius: 0 8px 8px 0;
    font-size: 1em;
}
@media (max-width: 700px) {
    .permit-pricing-table {
        padding: 18px 4px 18px 4px;
        max-width: 98vw;
    }
    .permit-table th, .permit-table td {
        padding: 8px 2px;
        font-size: 0.98em;
    }
    .permit-info-box {
        padding: 12px 4px 8px 8px;
    }
}

/* Hero logo box w prawym górnym rogu */
.hero-logo-box {
    position: absolute;
    top: 20px;
    right: 20px;
    z-index: 1000;
    background: rgba(255, 255, 255, 0.8);
    border-radius: 8px;
    padding: 16px 22px;
    box-shadow: 0 4px 8px rgba(0, 0, 0, 0.1);
    /* zwiększ min/max */
    min-width: 240px;
    min-height: 180px;
    max-width: 400px;
    max-height: 220px;
}

.hero-logo-box img {
    max-width: 400px;
    max-height: 220px;
    min-height: 180px;
    min-width: 240px;
    height: auto;
    display: block;
}

@media (max-width: 900px) {
    .hero-logo-box {
        top: 10px;
        right: 8px;
        max-width: 120px;
        max-height: 60px;
        padding: 8px 10px;
    }
    .hero-logo-box img {
        max-width: 90px;
        max-height: 40px;
    }
}
@media (max-width: 600px) {
    .hero-logo-box {
        top: 4px;
        right: 50%;
        transform: translateX(50%);
        max-width: 70px;
        max-height: 40px;
        padding: 4px 6px;
    }
    .hero-logo-box img {
        max-width: 50px;
        max-height: 28px;
    }
}

/* Kontakt Section */
.kontakt-section {
    background: #f8f8f8;
    padding: 80px 0 60px 0;
}

.kontakt-grid {
    display: flex;
    gap: 40px;
    max-width: 1100px;
    margin: 0 auto;
    justify-content: center;
    align-items: stretch;
    flex-wrap: wrap;
}

.kontakt-box {
    background: #fff;
    border: 2.5px solid #3b7b9a;
    border-radius: 18px;
    box-shadow: 0 4px 24px rgba(44,96,117,0.08);
    padding: 38px 32px 32px 32px;
    flex: 1 1 340px;
    min-width: 320px;
    max-width: 520px;
    transition: transform 0.25s cubic-bezier(.4,0,.2,1), box-shadow 0.25s cubic-bezier(.4,0,.2,1), border-color 0.25s;
    margin: 0 0 24px 0;
    display: flex;
    flex-direction: column;
    justify-content: flex-start;
}

.kontakt-box:hover {
    transform: scale(1.045);
    box-shadow: 0 10px 36px rgba(59,123,154,0.18);
    border-color: #1a6fb0;
    z-index: 2;
}

.kontakt-box h3 {
    color: #3b7b9a;
    font-size: 1.35em;
    margin-bottom: 22px;
    font-family: 'Playfair Display', serif;
    font-weight: 700;
    letter-spacing: 0.01em;
}

.kontakt-item {
    font-size: 1.08em;
    color: #2c6075;
    margin-bottom: 13px;
    word-break: break-all;
    font-family: 'Montserrat', sans-serif;
}

.kontakt-phone {
    color: #A1195B;
    font-weight: 600;
    text-decoration: underline;
    transition: color 0.2s;
}
.kontakt-phone:hover {
    color: #3b7b9a;
}

.kontakt-header {
    text-align: center;
    font-size: 2em;
    color: #3b7b9a;
    font-family: 'Playfair Display', serif;
    font-weight: 700;
    margin-bottom: 36px;
    letter-spacing: 0.01em;
}

.parcel-tabs {
    display: flex;
    flex-wrap: wrap;
    gap: 12px;
    margin-bottom: 40px;
    padding-bottom: 15px;
    overflow-x: auto;
    -webkit-overflow-scrolling: touch;
    justify-content: center;
    align-items: center;
}

/* Mobile: wyśrodkowanie i przewijanie */
@media (max-width: 768px) {
    .parcel-tabs {
        justify-content: center;
        align-items: center;
        /* gap i padding zostają */
    }
}



  

  
        .header-container {
            display: flex;
            justify-content: space-between;
            align-items: center;
            position: relative;
            height: 60px;
            /* Stała wysokość */
        }

        .desktop-nav {
            display: flex;
            gap: 20px;
            align-items: flex-end;
            /* wyrównanie do dołu */
            height: 100%;
        }

        .desktop-nav a {
            color: black;
            text-decoration: none;
            font-weight: 700;
            font-size: 16px;
            transition: all 0.3s ease;
            padding: 10px 0 0 0;
            /* lekko obniża napisy */
            position: relative;
            display: flex;
            align-items: flex-end;
            /* wyrównanie tekstu do dołu */
        }

        .desktop-nav a:hover {
            color: #1a6fb0;
            /* Niebieski hover */
            transform: translateY(-2px);
        }

        .desktop-nav a::after {
            content: '';
            position: absolute;
            bottom: 0;
            left: 0;
            width: 0;
            height: 2px;
            background: #1a6fb0;
            transition: width 0.3s ease;
        }

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

        /* Kontener dla tłumaczenia Google */
        .google-translate-container {
            display: flex;
            align-items: flex-end;
            /* wyrównanie do dołu */
            height: 100%;
            margin-left: 32px;

        }


        .goog-te-gadget {
            font-family: Montserrat, sans-serif !important;
            font-size: 14px !important;
            display: flex !important;
            align-items: center;
            height: 100%;
        }

        .google-translate {
            min-width: 170px;
            /* SZEROKOŚĆ tłumacza */
            max-width: 220px;
        }

        .google-translate-container {
            display: flex;
            align-items: flex-end;
            /* wyrównanie do dołu */
            height: 100%;
            margin-left: 32px;
            /* odstęp od linków */
        }

        .goog-te-gadget-simple {
            display: flex !important;
            align-items: flex-end !important;
            /* wyrównanie do dołu */
            height: 100% !important;
            background: transparent !important;
            background-color: transparent !important;
            border: none !important;
            box-shadow: none !important;
            padding: 0 10px !important;
        }


        .goog-te-menu {
            background-color: transparent !important;
            /* Przezroczyste tło */
            border: none !important;
            box-shadow: none !important;
            padding: 0 !important;
            margin: 0 !important;
        }

        .goog-te-menu-value {
            display: flex !important;
            align-items: center;
            height: 100%;
            padding: 0 !important;
            border: none !important;
        }

        .goog-te-menu-value span {
            color: white !important;
            font-weight: 700 !important;
            font-size: 16px !important;
            padding: 5px 0 !important;
            transition: all 0.3s ease !important;
        }

        .goog-te-menu-value:hover span {
            color: #1a6fb0 !important;
        }

       
        .goog-te-menu-value span:nth-child(2) {
            margin-right: 4px;
            /* Odstęp między flagą a strzałką */
        }

        /* Strzałka rozwijania */
        .goog-te-menu-value span:last-child {
            position: relative;
            top: 1px;
            /* Delikatne przesunięcie do wyrównania */
        }

        .mobile-menu-btn {
            display: none;
            background: transparent;
            border: none;
            cursor: pointer;
            padding: 8px;
            z-index: 1002;
        }

        .mobile-menu {
            display: none;
            position: absolute;
            top: 100%;
            left: 0;
            width: 100%;
            background: rgba(255, 255, 255, 0.97);
            backdrop-filter: blur(5px);
            padding: 15px;
            box-shadow: 0 10px 20px rgba(0, 0, 0, 0.1);
            z-index: 1000;
            opacity: 0;
            transform: translateY(-10px);
            transition: opacity 0.3s ease, transform 0.3s ease;
            border-radius: 0 0 8px 8px;
        }

        .mobile-menu.active {
            display: block;
            opacity: 1;
            transform: translateY(0);
        }

        .mobile-menu a {
            display: block;
            padding: 10px 0;
            color: #333;
            text-decoration: none;
            font-size: 16px;
            border-bottom: 1px solid rgba(0, 0, 0, 0.05);
            transition: all 0.2s ease;
        }

        .mobile-menu a:hover {
            color: #1a6fb0;
            padding-left: 8px;
        }

        .google-translate {
            margin-top: 15px;
            padding: 8px 0;
        }

        @media (max-width: 768px) {
            .desktop-nav {
                display: none;
            }

            .mobile-menu-btn {
                display: block;
            }

            .logo {
                position: absolute;
                left: 50%;
                transform: translateX(-50%);
                z-index: 1001;
                font-weight: 700;
                /* Pogrubione logo */
            }

            .mobile-menu a {
                font-weight: 600;
                /* Pogrubione linki w menu mobilnym */
                transition: all 0.3s ease;
            }

            .mobile-menu a:hover {
                color: #1a6fb0;
                /* Niebieski przy najechaniu */
                padding-left: 10px;
            }
        }

        .goog-te-gadget-simple {
            background: transparent !important;
            background-color: transparent !important;

            border: none !important;
        }

        .parcel-content {
            display: none;
            opacity: 0;
            transition: opacity 0.5s ease;
        }

        .parcel-content.active {
            display: block;
            opacity: 1;
        }

        .parcel-album {
    text-align: center;
    margin: 25px 0;
}

.parcel-album .btn {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    font-weight: 600;
    padding: 12px 24px;
    border-radius: 30px;
    transition: all 0.3s ease;
}

.parcel-album .btn:hover {
    background: #2c6075;
    transform: translateY(-3px);
    box-shadow: 0 5px 15px rgba(0,0,0,0.1);
}

/* Opis parceli */
.parcel-description {
    margin: 25px 0;
    font-size: 16px;
    line-height: 1.7;
    color: #444;
    padding: 15px;
    background: #f9f9f9;
    border-left: 3px solid #3b7b9a;
    border-radius: 0 8px 8px 0;
}

/* Sekcja twórcy w stopce */
.footer-credits {
    padding: 15px;
}

.footer-credits p {
    margin: 8px 0;
    color: #b3d1de;
    font-size: 14px;
}

/* Responsywność stopki */
@media (max-width: 768px) {
    .footer-grid {
        grid-template-columns: 1fr;
    }
    
    .footer-credits {
        order: -1;
        text-align: center;
        margin-bottom: 25px;
        border-bottom: 1px solid rgba(255,255,255,0.1);
        padding-bottom: 25px;
    }
}

/* Zwiększenie czytelności kalendarza */
.calendar-container {
    border: 1px solid #eaeaea;
    border-radius: 12px;
    overflow: hidden;
    padding: 15px;
    background: white;
    margin-top: 20px;
}

@media (max-width: 768px) {
    .calendar-container iframe {
        height: 500px !important;
    }
}

/* Cechy parceli */
.parcel-features {
    display: grid;
    grid-template-columns: repeat(auto-fill, minmax(250px, 1fr));
    gap: 15px;
    margin: 20px 0;
}

.feature {
    display: flex;
    align-items: center;
    gap: 10px;
    padding: 12px 15px;
    border-radius: 8px;
    background: #f8f8f8;
    transition: all 0.3s ease;
}

.feature:hover {
    background: #e6f0f5;
    transform: translateX(5px);
}

.calendar-container {
    overflow: auto;
    max-height: 750px;
}

/* Zwiększ wysokość kalendarza na mobile */
@media (max-width: 768px) {
    .calendar-container iframe {
        height: 600px !important;
    }
}

/* Popraw układ sekcji parceli */
.parcel-contents {
    position: relative;
    min-height: auto;
}

.parcel-content {
    padding: 30px;
    background: white;
    border-radius: 16px;
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.08);
    margin-bottom: 40px;
}

/* Zwiększ odstępy między elementami */
.parcel-header {
    margin-bottom: 30px;
    padding-bottom: 20px;
}

.parcel-features {
    margin: 30px 0;
}

.parcel-album {
    margin: 30px 0;
}

@media (max-width: 768px) {
    .section {
        padding: 50px 0;
    }
    
    .parcel-content {
        padding: 20px;
    }
}

.camping-parcels.section {
        padding: 100px 0 !important;
    }

    /* Zwiększenie wysokości kalendarzy */
    .calendar-container iframe {
        height: 850px !important;
    }

    @media (max-width: 768px) {
        .calendar-container iframe {
            height: 650px !important;
        }
    }

    /* Umożliwienie poziomego przewijania w kontenerze kalendarza */
    .calendar-container {
        overflow: auto;
    }

    /* Większe zakładki na małych ekranach */
    @media (max-width: 768px) {
        .parcel-tabs {
            display: flex;
            flex-wrap: nowrap;
            overflow-x: auto;
            padding-bottom: 10px;
            margin-bottom: 25px;
        }
        
        .parcel-tab {
            padding: 12px 20px;
            font-size: 14px;
            white-space: nowrap;
        }
    }

    /* Większe odstępy w treści parceli */
    .parcel-content {
        padding: 40px 30px;
    }

    .parcel-header {
        margin-bottom: 35px;
    }

    .parcel-features {
        margin: 35px 0;
    }

    .parcel-album {
        margin: 35px 0;
    }

    /* Zwiększenie przestrzeni między sekcjami */
    .section {
        padding: 100px 0;
    }

    @media (max-width: 768px) {
        .section {
            padding: 70px 0;
        }
        
        .parcel-content {
            padding: 25px;
        }
    }

     .section.camping-parcels {
        padding: 120px 0 !important;
    }

    .parcel-content {
        padding: 50px 40px !important;
        min-height: 900px; /* Zwiększona minimalna wysokość */
    }

    .calendar-container {
        min-height: 800px !important; /* Znacząco zwiększona wysokość */
        padding: 20px;
        background: white;
        border-radius: 12px;
        box-shadow: 0 5px 15px rgba(0,0,0,0.08);
        margin-top: 30px;
    }

    .calendar-container iframe {
        height: 800px !important; /* Wymuszenie wysokości */
        min-height: 800px;
        width: 100%;
        border: none;
    }

    /* Większe odstępy między elementami */
    .parcel-header {
        margin-bottom: 40px !important;
    }

    .parcel-features {
        margin: 40px 0 !important;
    }

    .parcel-album {
        margin: 40px 0 !important;
    }

    .parcel-description {
        margin: 40px 0 !important;
        padding: 25px;
        font-size: 18px;
    }

    /* Lepsze dostosowanie na mobile */
    @media (max-width: 768px) {
        .section.camping-parcels {
            padding: 80px 0 !important;
        }
        
        .parcel-content {
            padding: 30px 20px !important;
            min-height: auto;
        }
        
        .calendar-container {
            min-height: 650px !important;
        }
        
        .calendar-container iframe {
            height: 650px !important;
            min-height: 650px;
        }
        
        .parcel-header {
            margin-bottom: 30px !important;
        }
    }

    /* Poprawa widoczności zakładek */
    .parcel-tabs {
        display: flex;
        flex-wrap: wrap;
        gap: 12px;
        margin-bottom: 40px;
        padding-bottom: 15px;
        overflow-x: auto;
        -webkit-overflow-scrolling: touch;
    }

    .parcel-tab {
        padding: 15px 25px;
        font-size: 16px;
        font-weight: 600;
        background: #f0f8ff;
        border: 2px solid #c5e1ff;
        border-radius: 50px;
        cursor: pointer;
        transition: all 0.3s ease;
        flex-shrink: 0;
    }

    .parcel-tab:hover {
        background: #d1e9ff;
        transform: translateY(-3px);
    }

    .parcel-tab.active {
        background: #3b7b9a;
        color: white;
        border-color: #3b7b9a;
        box-shadow: 0 5px 15px rgba(59, 123, 154, 0.3);
    }

    .gallery-buttons-container {
        display: flex;
        flex-direction: column;
        gap: 12px;
        align-items: flex-start;
        margin: auto;
    }

    .gallery-button {
        width: 70%;
        text-align: center;
    }

    .gallery-buttons-center {
    justify-content: center !important;
    text-align: center;
}


.gallery-button.gallery-button-small {
    position: center;
    overflow: hidden;
    background: linear-gradient(135deg, #3b7b9a 60%, #5ec6e7 100%);
    color: #fff;
    box-shadow: 0 6px 24px rgba(59,123,154,0.18), 0 1.5px 0 #fff3 inset;
    border: none;
    border-radius: 32px;
    font-weight: 700;
    letter-spacing: 0.03em;
    transition: box-shadow 0.3s, background 0.3s, transform 0.2s;
    isolation: isolate;
}

.gallery-button.gallery-button-small::before {
    content: '';
    position: absolute;
    left: 0; top: 0; width: 100%; height: 100%;
    background: url('data:image/svg+xml;utf8,<svg width="100%25" height="100%25" viewBox="0 0 200 60" xmlns="http://www.w3.org/2000/svg"><defs><linearGradient id="g" x1="0" y1="0" x2="0" y2="1"><stop stop-color="%235ec6e7" stop-opacity="0.32"/><stop offset="1" stop-color="%233b7b9a" stop-opacity="0.12"/></linearGradient></defs><path d="M0 30 Q50 60 100 30 T200 30 V60 H0 Z" fill="url(%23g)"/><path d="M0 40 Q50 20 100 40 T200 40 V60 H0 Z" fill="%23fff" fill-opacity="0.10"/></svg>');
    background-size: cover;
    background-repeat: no-repeat;
    opacity: 0.85;
    pointer-events: none;
    z-index: 1;
    transition: opacity 0.3s;
    animation: waveMove 3.5s linear infinite;
}

@keyframes waveMove {
    0% { background-position-x: 0; }
    100% { background-position-x: 100px; }
}

.gallery-button.gallery-button-small::after {
    /* Połysk na hover */
    content: '';
    position: absolute;
    left: -60%;
    top: 0;
    width: 60%;
    height: 100%;
    background: linear-gradient(120deg, rgba(255,255,255,0.18) 0%, rgba(255,255,255,0.01) 100%);
    transform: skewX(-25deg);
    transition: left 0.5s cubic-bezier(.4,0,.2,1);
    z-index: 2;
    pointer-events: none;
}

.gallery-button.gallery-button-small:hover::after,
.gallery-button.gallery-button-small:focus::after {
    left: 110%;
}

.gallery-button.gallery-button-small:hover,
.gallery-button.gallery-button-small:focus {
    background: linear-gradient(135deg, #2c6075 60%, #5ec6e7 100%);
    box-shadow: 0 10px 32px rgba(59,123,154,0.22), 0 2px 0 #fff5 inset;
    transform: translateY(-2px) scale(1.04);
}

.gallery-button.gallery-button-small span {
    position: relative;
    z-index: 3;
    text-shadow: 0 2px 8px #3b7b9a33, 0 1px 0 #fff8;
}



.gallery-buttons-container {
    display: flex;
    flex-direction: column;
    gap: 18px;
    align-items: center;
    justify-content: center;
    margin: 40px auto 0 auto;
    width: 100%;
    max-width: 500px;
    padding: 0;
}

.gallery-button {
    width: 100%;
    max-width: 340px;
    margin: 0 auto;
    text-align: center;
    display: flex;
    justify-content: center;
}



@media (max-width: 768px) {
    #google_translate_element,
    .google-translate-container {
        margin-left: 0 !important;
        margin-right: 0 !important;
    }
}
@media (min-width: 769px) {
    #google_translate_element,
    .google-translate-container {
        margin-left: 0 !important;
        margin-right: 0 !important;
    }
}


#camping-parcels{
    margin-top: -200px;
}



.hero-logo-box {
    position: absolute;
    top: 90px; 
    right: 32px;
    z-index: 10;
    background: rgba(255,255,255,0.92);
    border-radius: 18px 8px 28px 8px;
    padding: 14px 38px 14px 22px;
    box-shadow: 0 8px 32px rgba(59,123,154,0.18), 0 2px 0 #fff3 inset;
    display: flex;
    align-items: center;
    border: 2.5px solid #3b7b9a;
    transition: box-shadow 0.3s, transform 0.2s;
    animation: logoPopIn 1.1s cubic-bezier(.4,0,.2,1);
}

.hero-logo-box img {
    height: 72px; 
    width: auto;
    display: block;
    filter: drop-shadow(0 2px 12px #3b7b9a33) drop-shadow(0 1px 0 #fff8);
    transition: transform 0.2s;
}

.hero-logo-box:hover {
    box-shadow: 0 16px 48px rgba(59,123,154,0.28), 0 4px 0 #fff5 inset;
    transform: scale(1.04) rotate(-2deg);
}

.hero-logo-box:hover img {
    transform: scale(1.08) rotate(2deg);
}

@media (max-width: 768px) {
    .hero-logo-box {
        display: none;
    }
}

@keyframes logoPopIn {
    0% { opacity: 0; transform: translateY(-40px) scale(0.8); }
    80% { opacity: 1; transform: translateY(8px) scale(1.05); }
    100% { opacity: 1; transform: translateY(0) scale(1); }
}

@media (max-width: 1500px) and (min-width: 769px) {
    header {
      padding: 10px 0;
    }
    .header-container {
      height: 48px;
      padding: 0 10px;
      gap: 10px;
      flex-wrap: wrap;
    }
    .logo {
      font-size: 22px;
      min-width: 100px;
    }
    .desktop-nav {
      gap: 10px;
    }
    .desktop-nav a {
      font-size: 14px;
      padding: 6px 0 0 0;
    }
    #google_translate_element {
      min-width: 80px;
      max-width: 120px;
    }
  }
  
  @media (max-width: 1100px) and (min-width: 769px) {
    .header-container {
      flex-direction: column;
      align-items: flex-start;
      height: auto;
      gap: 6px;
    }
    .logo {
      font-size: 18px;
      margin-bottom: 4px;
    }
    .desktop-nav {
      flex-wrap: wrap;
      gap: 6px;
    }
  }



  @media (max-width: 768px) {
    .header-container {
      display: flex;
      flex-direction: row;
      justify-content: space-between;
      align-items: center;
      width: 100%;
      gap: 0;
      padding: 0 8px;
      height: 48px;
    }
    #mobile-menu-toggle {
      order: 1;
      margin-right: 0;
    }
    .logo {
      order: 2;
      flex: 1 1 auto;
      text-align: center;
      font-size: 18px;
      margin: 0;
      left: unset;
      right: unset;
      position: static;
      transform: none;
    }
    #google_translate_element {
      order: 3;
      margin-left: 0;
      margin-right: 0;
      min-width: 60px;
      max-width: 100px;
      text-align: right;
      display: flex;
      align-items: center;
    }
    .desktop-nav {
      display: none !important;
    }
  }


