* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

html {
    scroll-behavior: smooth;
}

body {
    font-family: -apple-system, BlinkMacSystemFont, 'Segoe UI', Roboto, 'Helvetica Neue', sans-serif;
    line-height: 1.6;
    color: #2c3e50;
    background: #ffffff;
}

/* ===== HEADER ===== */
header {
    position: sticky;
    top: 0;
    width: 100%;
    z-index: 1000;
    background: #2c3e50;
    backdrop-filter: blur(10px);
    border-bottom: 1px solid rgba(0, 0, 0, 0.08);
    padding: 0.8rem 2rem;
    box-shadow: 0 2px 8px rgba(0, 0, 0, 0.05);
}

nav {
    max-width: 1400px;
    margin: 0 auto;
    display: flex;
    justify-content: space-between;
    align-items: center;
    flex-wrap: wrap;
    gap: 1rem;
}

.logo {
    font-size: 1.6rem;
    font-weight: 800;
}

.nav-links {
    display: flex;
    gap: 0.5rem;
    align-items: center;
    flex-wrap: wrap;
    flex: 1;
}

.nav-links a {
    color: #d4cfcf;
    text-decoration: none;
    font-size: 0.9rem;
    padding: 0.5rem 1rem;
    border-radius: 6px;
    transition: all 0.3s ease;
    font-weight: 500;
}

.nav-links a:hover {
    background: rgba(45, 122, 93, 0.1);
    color: #2d7a5d;
}

.cta-btn {
    background: linear-gradient(135deg, #1a4d6d 0%, #2d7a5d 100%);
    color: white;
    padding: 0.7rem 2rem;
    border: none;
    border-radius: 8px;
    cursor: pointer;
    font-size: 0.9rem;
    font-weight: 600;
    transition: all 0.3s ease;
    white-space: nowrap;
}

.cta-btn:hover {
    transform: translateY(-2px);
    box-shadow: 0 6px 20px rgba(45, 122, 93, 0.3);
}

/* ===== HERO SLIDER ===== */
.hero {
    position: relative;
    height: 600px;
    overflow: hidden;
    display: flex;
    align-items: center;
    justify-content: center;
    color: white;
    text-align: center;
}

.slider-backdrop {
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background-size: cover;
    background-position: center;
    background-image: url('/img/bg/bg01.webp');
    animation: slideshow 30s infinite;
    opacity: 1;
}

@keyframes slideshow {
    0% { background-image: url('/img/bg/bg01.webp'); }
    16.66% { background-image: url('/img/bg/bg04.webp'); }
    33.33% { background-image: url('/img/bg/bg02.webp'); }
    50% { background-image: url('/img/bg/bg03.webp'); }
    66.66% { background-image: url('/img/bg/bg05.webp'); }
    83.33% { background-image: url('/img/bg/bg06.webp'); }
    100% { background-image: url('/img/bg/bg01.webp'); }
}

.slider-backdrop::after {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: linear-gradient(45deg, rgba(234, 237, 238, 0.6) 0%, rgba(152, 155, 154, 0.6) 100%);
    pointer-events: none;
}

.hero-content {
    position: relative;
    z-index: 10;
    max-width: 800px;
    animation: fadeInUp 0.8s ease-out;
}

.hero h1 {
    font-size: 4rem;
    font-weight: 800;
    margin-bottom: 1rem;
    letter-spacing: -1px;
    line-height: 1.2;
    text-shadow: 0 2px 10px rgba(0, 0, 0, 0.2);
    color: #1a4d6d;
}

.hero p {
    font-size: 1.4rem;
    margin-bottom: 2.5rem;
    opacity: 0.95;
    font-weight: 300;
    line-height: 1.6;
    color: #2c3e50;
}

.hero-buttons {
    display: flex;
    gap: 1.5rem;
    justify-content: center;
    flex-wrap: wrap;
}

.btn-primary {
    background: white;
    color: #1a4d6d;
    padding: 1.1rem 3rem;
    border-radius: 8px;
    font-weight: 700;
    border: none;
    cursor: pointer;
    font-size: 1rem;
    transition: all 0.3s ease;
    box-shadow: 0 8px 25px rgba(0, 0, 0, 0.2);
}

.btn-primary:hover {
    transform: translateY(-3px);
    box-shadow: 0 12px 35px rgba(0, 0, 0, 0.3);
}

.btn-secondary {
    background: white;
    color: #1a4d6d;
    padding: 1.1rem 3rem;
    border: 2px solid white;
    border-radius: 8px;
    font-weight: 700;
    cursor: pointer;
    font-size: 1rem;
    transition: all 0.3s ease;
}

.btn-secondary:hover {
    background: white;
    color: #1a4d6d;
}

/* ===== ANIMATIONS ===== */
@keyframes fadeInUp {
    from {
        opacity: 0;
        transform: translateY(40px);
    }
    to {
        opacity: 1;
        transform: translateY(0);
    }
}

@keyframes slideInUp {
    from {
        opacity: 0;
        transform: translateY(50px);
    }
    to {
        opacity: 1;
        transform: translateY(0);
    }
}

/* ===== SECTIONS ===== */
.section {
    padding: 6rem 2rem;
    max-width: 1400px;
    margin: 0 auto;
}

.section-title {
    font-size: 2.8rem;
    font-weight: 800;
    margin-bottom: 0.5rem;
    color: #1a4d6d;
    letter-spacing: -0.5px;
}

.section-subtitle {
    font-size: 1.15rem;
    color: #666;
    margin-bottom: 3.5rem;
    line-height: 1.8;
    max-width: 700px;
}

/* ===== ABOUT SECTION ===== */
.about-grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 4rem;
    align-items: center;
}

.about-image {
    position: relative;
    height: 450px;
    border-radius: 16px;
    overflow: hidden;
    box-shadow: 0 20px 60px rgba(0, 0, 0, 0.12);
}

.about-image img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    display: block;
}

.about-image::after {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: rgba(0, 0, 0, 0.1);
}

.about-content h2 {
    font-size: 2.5rem;
    margin-bottom: 1.5rem;
    color: #1a4d6d;
    font-weight: 800;
}

.about-content p {
    font-size: 1.05rem;
    color: #555;
    margin-bottom: 1.5rem;
    line-height: 1.8;
}

.about-content a {
    color: #2d7a5d;
    text-decoration: none;
    font-weight: 600;
    transition: color 0.3s ease;
}

.about-content a:hover {
    color: #1a4d6d;
}

/* ===== OFFERS SECTION ===== */
.offers {
    background: #f8fafb;
}

.offers-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(320px, 1fr));
    gap: 2.5rem;
    margin-top: 3rem;
}

.offer-card {
    background: white;
    padding: 2.5rem;
    border-radius: 12px;
    box-shadow: 0 8px 24px rgba(0, 0, 0, 0.08);
    transition: all 0.3s ease;
    border: 1px solid rgba(0, 0, 0, 0.05);
}

.offer-card:hover {
    transform: translateY(-6px);
    box-shadow: 0 16px 40px rgba(0, 0, 0, 0.12);
}

.offer-price {
    font-size: 1.8rem;
    font-weight: 800;
    color: #2d7a5d;
    margin-bottom: 0.5rem;
}

.offer-price-small {
    font-size: 0.85rem;
    color: #474747;
    font-weight: 600;
}

.offer-card h3 {
    font-size: 1.3rem;
    margin: 1rem 0 0.8rem;
    color: #1a4d6d;
    font-weight: 700;
}

.offer-card p {
    color: #666;
    font-size: 0.95rem;
    line-height: 1.6;
    margin-bottom: 1.5rem;
}

.offer-card a {
    color: #2d7a5d;
    text-decoration: none;
    font-weight: 700;
    transition: color 0.3s ease;
}

.offer-card a:hover {
    color: #1a4d6d;
}

/* ===== ATTRACTIONS SECTION ===== */
.attractions {
    background: white;
}

.attractions-grid {
    display: grid;
    grid-template-columns: repeat(3,1fr);
    gap: 2.5rem;
    margin-top: 3rem;
}

.attraction-card {
    background: linear-gradient(135deg, #fafbfc 0%, #f0f4f8 100%);
    padding: 2.5rem;
    border-radius: 12px;
    text-align: center;
    transition: all 0.3s ease;
    border: 1px solid rgba(45, 122, 93, 0.1);
}

.attraction-card:hover {
    background: linear-gradient(135deg, #f0f4f8 0%, #e8f0f6 100%);
    transform: translateY(-6px);
    border-color: #2d7a5d;
}

.attraction-icon {
    font-size: 3.5rem;
    margin-bottom: 1.2rem;
    display: block;
}

.attraction-card h3 {
    font-size: 1.3rem;
    margin-bottom: 0.8rem;
    color: #1a4d6d;
    font-weight: 700;
}

.attraction-card p {
    color: #666;
    font-size: 0.95rem;
    line-height: 1.6;
}

/* ===== GALLERY SECTION ===== */
.gallery {
    background: #f8fafb;
}

.gallery-title {
    font-size: 1.8rem;
    font-weight: 700;
    color: #1a4d6d;
    margin-bottom: 2.5rem;
}

.gallery-grid {
    display: grid;
    grid-template-columns: repeat(4,1fr);
    gap: 1.8rem;
    margin-bottom: 4rem;
}

.gallery-item {
    aspect-ratio: 1;
    border-radius: 12px;
    overflow: hidden;
    cursor: pointer;
    transition: all 0.3s ease;
    box-shadow: 0 8px 20px rgba(0, 0, 0, 0.1);
    border: 1px solid rgba(0, 0, 0, 0.05);
}

.gallery-item img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    display: block;
    transition: transform 0.3s ease;
}

.gallery-item:hover {
    transform: scale(1.02);
    box-shadow: 0 12px 30px rgba(0, 0, 0, 0.15);
}

.gallery-item:hover img {
    transform: scale(1.05);
}

/* ===== LOCATION SECTION ===== */
.location {
    background: #1a4d6d;
    color: white;
}

.location .section-title {
    color: white;
}

.location .section-subtitle {
    color: rgba(255, 255, 255, 0.9);
}

.location-content {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 3rem;
    align-items: start;
    margin-top: 3rem;
}

.location-info {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 2rem;
}

.location-card {
    background: rgba(255, 255, 255, 0.12);
    padding: 2rem;
    border-radius: 12px;
    backdrop-filter: blur(10px);
    border: 1px solid rgba(255, 255, 255, 0.2);
    transition: all 0.3s ease;
}

.location-card:hover {
    background: rgba(255, 255, 255, 0.18);
    transform: translateY(-4px);
}

.location-card strong {
    display: block;
    font-size: 1.1rem;
    margin-bottom: 0.5rem;
}

.location-card p {
    font-size: 0.95rem;
    opacity: 0.95;
    line-height: 1.6;
}

.location-card a {
    color: white;
    text-decoration: none;
    font-weight: 600;
    transition: opacity 0.3s ease;
}

.location-card a:hover {
    opacity: 0.8;
}

.location-map {
    background: rgba(255, 255, 255, 0.1);
    border-radius: 12px;
    height: 350px;
    border: 1px solid rgba(255, 255, 255, 0.2);
}

/* ===== FOOTER ===== */
footer {
    background: #1a4d6d;
    color: white;
    padding: 3rem 2rem 1.5rem;
    border-top: 1px solid rgba(255, 255, 255, 0.1);
}

.footer-content {
    max-width: 1400px;
    margin: 0 auto;
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
    gap: 2.5rem;
    margin-bottom: 2rem;
}

.footer-section h4 {
    font-size: 1rem;
    margin-bottom: 1rem;
    font-weight: 700;
    text-transform: uppercase;
    letter-spacing: 1px;
    opacity: 0.9;
}

.footer-section ul {
    list-style: none;
}

.footer-section ul li {
    margin-bottom: 0.8rem;
}

.footer-section a {
    color: rgba(255, 255, 255, 0.8);
    text-decoration: none;
    font-size: 0.9rem;
    transition: color 0.3s ease;
}

.footer-section a:hover {
    color: white;
}

.socials {
    display: flex;
    gap: 1.5rem;
    margin-top: 1rem;
}

.socials a {
    display: inline-flex;
    width: 40px;
    height: 40px;
    background: rgba(255, 255, 255, 0.15);
    border-radius: 50%;
    align-items: center;
    justify-content: center;
    color: white;
    text-decoration: none;
    transition: all 0.3s ease;
    font-size: 1rem;
}

.socials a:hover {
    background: #2d7a5d;
    transform: translateY(-3px);
}

.footer-bottom {
    text-align: center;
    padding-top: 2rem;
    border-top: 1px solid rgba(255, 255, 255, 0.1);
    font-size: 0.85rem;
    opacity: 0.8;
}

/* ===== LANGUAGE SECTION ===== */
.lang-section {
    background: #152c3b;
    padding: 1.5rem 2rem;
    margin: 2rem 0 0 0;
    border-top: 1px solid rgba(255, 255, 255, 0.1);
    border-bottom: 1px solid rgba(255, 255, 255, 0.1);
}

.lang-container {
    max-width: 1400px;
    margin: 0 auto;
}

.lang-grid {
    display: flex;
    flex-wrap: wrap;
    justify-content: center;
    gap: 0.5rem;
    list-style: none;
    padding: 0;
    margin: 0;
}

.lang-grid li {
    display: inline-block;
}

.lang-grid a {
    display: inline-block;
    padding: 0.4rem 0.8rem;
    background: rgba(255, 255, 255, 0.1);
    color: white;
    text-decoration: none;
    font-size: 0.8rem;
    font-weight: 600;
    border-radius: 4px;
    transition: all 0.3s ease;
}

.lang-grid a:hover {
    background: #2d7a5d;
    transform: translateY(-2px);
}

/* ===== HAMBURGER MENU ===== */
.hamburger {
    display: none;
    flex-direction: column;
    cursor: pointer;
    background: transparent;
    border: none;
    padding: 0.5rem;
    z-index: 1001;
}

.hamburger span {
    width: 25px;
    height: 2px;
    background: white;
    margin: 3px 0;
    transition: 0.3s;
    border-radius: 2px;
}

.hamburger.active span:nth-child(1) {
    transform: rotate(45deg) translate(5px, 5px);
}

.hamburger.active span:nth-child(2) {
    opacity: 0;
}

.hamburger.active span:nth-child(3) {
    transform: rotate(-45deg) translate(7px, -6px);
}

.mobile-menu {
    position: fixed;
    top: 0;
    right: -100%;
    width: 80%;
    max-width: 320px;
    height: 100vh;
    background: #2c3e50;
    z-index: 999;
    padding: 5rem 2rem 2rem;
    transition: right 0.3s ease-in-out;
    box-shadow: -5px 0 25px rgba(0, 0, 0, 0.2);
    overflow-y: auto;
}

.mobile-menu.active {
    right: 0;
}

.mobile-menu a {
    display: block;
    color: #d4cfcf;
    text-decoration: none;
    padding: 1rem 0;
    font-size: 1.1rem;
    font-weight: 500;
    border-bottom: 1px solid rgba(255, 255, 255, 0.1);
    transition: all 0.3s ease;
}

.mobile-menu a:hover {
    color: #2d7a5d;
    padding-left: 10px;
}

.mobile-menu .mobile-cta {
    margin-top: 2rem;
    background: linear-gradient(135deg, #1a4d6d 0%, #2d7a5d 100%);
    text-align: center;
    padding: 1rem;
    border-radius: 8px;
    color: white;
}

.mobile-menu .mobile-cta:hover {
    padding-left: 1rem;
    background: linear-gradient(135deg, #2d7a5d 0%, #1a4d6d 100%);
}

.menu-overlay {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: rgba(0, 0, 0, 0.5);
    z-index: 998;
    opacity: 0;
    visibility: hidden;
    transition: 0.3s;
}

.menu-overlay.active {
    opacity: 1;
    visibility: visible;
}

/* ===== RESPONSIVE ===== */
@media (max-width: 992px) {
    .attractions-grid {
        grid-template-columns: repeat(2, 1fr);
        gap: 1.5rem;
    }
}

@media (max-width: 768px) {
    .hero h1 {
        font-size: 2.5rem;
    }

    .hero p {
        font-size: 1.1rem;
    }

    .section-title {
        font-size: 1.8rem;
    }

    .about-grid {
        grid-template-columns: 1fr;
    }

    .about-image {
        height: 300px;
    }

    .location-content {
        grid-template-columns: 1fr;
    }

    .location-map {
        height: 300px;
    }

    .nav-links {
        display: none;
    }

    /* 🔴 TYLKO TO DODAŁEM - POKAZUJE HAMBURGER 🔴 */
    .hamburger {
        display: flex;
    }

    .hero-buttons {
        flex-direction: column;
    }

    .btn-primary, .btn-secondary {
        width: 100%;
    }

    .section {
        padding: 3rem 1.5rem;
    }

    .attractions-grid {
        grid-template-columns: repeat(2, 1fr);
        gap: 1rem;
    }

    .attraction-card {
        padding: 1.5rem;
    }

    .attraction-card h3 {
        font-size: 1.1rem;
    }

    .attraction-card p {
        font-size: 0.85rem;
        line-height: 1.4;
    }

    .attraction-icon {
        font-size: 2.5rem;
        margin-bottom: 0.8rem;
    }

    .lang-grid {
        gap: 0.3rem;
    }
    
    .lang-grid a {
        padding: 0.3rem 0.6rem;
        font-size: 0.7rem;
    }
    
    .lang-section {
        padding: 1rem;
    }
}

@media (max-width: 480px) {
    header {
        padding: 1rem;
    }

    nav {
        flex-direction: column;
        gap: 1rem;
    }

    .logo {
        font-size: 1.3rem;
    }

    .cta-btn {
        width: 100%;
    }

    .hero {
        height: 400px;
    }

    .hero h1 {
        font-size: 1.8rem;
    }

    .hero p {
        font-size: 0.95rem;
    }

    .section {
        padding: 2rem 1rem;
    }

    .section-title {
        font-size: 1.5rem;
    }

    .gallery-grid {
        grid-template-columns: repeat(2, 1fr);
        gap: 1rem;
    }

    .attractions-grid {
        grid-template-columns: 1fr;
        gap: 1rem;
    }

    .attraction-card {
        padding: 1.2rem;
        text-align: left;
        display: flex;
        align-items: center;
        gap: 1rem;
    }

    .attraction-icon {
        font-size: 2rem;
        margin-bottom: 0;
        flex-shrink: 0;
    }

    .attraction-card h3 {
        font-size: 1rem;
        margin-bottom: 0.2rem;
    }

    .attraction-card p {
        font-size: 0.8rem;
    }

    .lang-grid a {
        padding: 0.25rem 0.5rem;
        font-size: 0.65rem;
    }
}
/* ===== OFERTY ZE ZDJĘCIAMI - STYLE ===== */
.offer-card {
    background: white;
    border-radius: 12px;
    box-shadow: 0 8px 24px rgba(0, 0, 0, 0.08);
    transition: all 0.3s ease;
    border: 1px solid rgba(0, 0, 0, 0.05);
    overflow: hidden;
    text-decoration: none;
    color: inherit;
    display: flex;
    flex-direction: column;
}

.offer-card:hover {
    transform: translateY(-6px);
    box-shadow: 0 16px 40px rgba(0, 0, 0, 0.12);
}

.offer-image {
    width: 100%;
    height: 180px;
    overflow: hidden;
    background: #e8f1f5;
    flex-shrink: 0;
}

.offer-image img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    display: block;
    transition: transform 0.4s ease;
}

.offer-card:hover .offer-image img {
    transform: scale(1.05);
}

.offer-body {
    padding: 1.5rem 1.8rem 1.8rem;
    display: flex;
    flex-direction: column;
    flex: 1;
    background: white;
}

.offer-card h3 {
    font-size: 1.3rem;
    margin: 0 0 0.3rem 0;
    color: #1a4d6d;
    font-weight: 700;
}

.offer-details {
    display: flex;
    flex-wrap: wrap;
    gap: 0.3rem 1rem;
    margin: 0.3rem 0 0.8rem 0;
    font-size: 0.9rem;
}

.offer-size, .offer-people {
    display: flex;
    align-items: center;
    gap: 0.3rem;
    color: #666;
    font-weight: 500;
}

.offer-link {
    color: #2d7a5d;
    font-weight: 700;
    transition: all 0.3s ease;
    display: inline-block;
    margin-top: auto;
    padding-top: 0.5rem;
    border-top: 1px solid rgba(0,0,0,0.05);
    align-self: flex-start;
    font-size: 0.9rem;
}

.offer-card:hover .offer-link {
    color: #1a4d6d;
    transform: translateX(5px);
}

/* ===== RESPONSYWNOŚĆ ===== */
@media (max-width: 992px) {
    .offers-grid {
        grid-template-columns: repeat(2, 1fr);
        gap: 1.8rem;
    }
}

@media (max-width: 768px) {
    .offers-grid {
        grid-template-columns: 1fr 1fr;
        gap: 1.2rem;
    }
    
    .offer-image {
        height: 150px;
    }
    
    .offer-body {
        padding: 1rem 1.2rem 1.2rem;
    }
    
    .offer-card h3 {
        font-size: 1.1rem;
    }
    
    .offer-details {
        font-size: 0.8rem;
    }
}

@media (max-width: 580px) {
    .offers-grid {
        grid-template-columns: 1fr;
        max-width: 400px;
        margin-left: auto;
        margin-right: auto;
    }
    
    .offer-image {
        height: 180px;
    }
}

@media (max-width: 480px) {
    .offer-body {
        padding: 0.8rem 1rem 1rem;
    }
    
    .offer-image {
        height: 160px;
    }
}