* {
    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;
    overflow-x: hidden;
}

/* ===== HEADER ===== */
header {
    position: sticky;
    top: 0;
    width: 100%;
    z-index: 1000;
    background: rgba(55, 38, 48, 0.92);
    backdrop-filter: blur(14px);
    border-bottom: 1px solid rgba(255, 215, 175, 0.2);
    padding: 0.7rem 2rem;
    transition: all 0.3s ease;
}

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.7rem;
    font-weight: 800;
    background: linear-gradient(135deg, #f9e0c0, #e3c294);
    -webkit-background-clip: text;
    background-clip: text;
    color: transparent;
    letter-spacing: -0.3px;
}

.nav-links {
    display: flex;
    gap: 0.3rem;
    align-items: center;
    flex-wrap: wrap;
    flex: 1;
    justify-content: flex-end;
}

.nav-links a {
    color: #fef3e4;
    text-decoration: none;
    font-size: 0.9rem;
    padding: 0.5rem 0.9rem;
    border-radius: 30px;
    transition: all 0.25s ease;
    font-weight: 500;
}

.nav-links a:hover {
    background: rgba(255, 225, 180, 0.2);
    color: #ffefcf;
    transform: translateY(-1px);
}

.cta-btn {
    background: linear-gradient(135deg, #f5e2c1, #ecd6aa);
    color: #3e2a2f;
    padding: 0.7rem 1.9rem;
    border: none;
    border-radius: 40px;
    cursor: pointer;
    font-size: 0.9rem;
    font-weight: 700;
    transition: all 0.3s ease;
    white-space: nowrap;
    box-shadow: 0 5px 12px rgba(0,0,0,0.1);
}

.cta-btn:hover {
    transform: translateY(-3px);
    box-shadow: 0 12px 22px rgba(0, 0, 0, 0.2);
    background: #fff2e2;
}

/* ===== HERO ===== */
.hero {
    position: relative;
    height: 600px;
    background: linear-gradient(135deg, #3e2a2f 0%, #7a5a4b 100%);
    display: flex;
    align-items: center;
    justify-content: center;
    text-align: center;
    overflow: hidden;
}

.slider-backdrop {
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background-size: cover;
    background-position: center;
    background-image: url('/img/bg/slide01.webp');
    animation: slideshow 30s infinite;
    opacity: 1;
}

@keyframes slideshow {
    0% { background-image: url('/img/bg/slide05.webp'); }
    25% { background-image: url('/img/bg/slide02.webp'); }
    50% { background-image: url('/img/bg/slide01.webp'); }
    75% { background-image: url('/img/bg/slide03.webp'); }
    100% { background-image: url('/img/bg/slide04.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::before {
    content: '';
    position: absolute;
    inset: 0;
    background: radial-gradient(circle at 20% 30%, rgba(255,240,210,0.1) 0%, rgba(0,0,0,0.25) 100%);
    pointer-events: none;
}

.hero-content {
    position: relative;
    z-index: 10;
    max-width: 850px;
    animation: fadeInUp 0.9s cubic-bezier(0.2, 0.9, 0.4, 1.1) forwards;
    padding: 0 1.5rem;
}

.hero h1 {
    font-size: 4rem;
    font-weight: 800;
    margin-bottom: 1rem;
    letter-spacing: -1px;
    line-height: 1.2;
    color: white;
    text-shadow: 0 4px 18px rgba(0,0,0,0.25);
}

.hero h2 {
    font-size: 1.5rem;
    margin-bottom: 2.5rem;
    opacity: 0.96;
    font-weight: 400;
    color: #fffbee;
}

.hero-buttons {
    display: flex;
    gap: 1.8rem;
    justify-content: center;
    flex-wrap: wrap;
}

.btn-primary, .btn-secondary {
    padding: 1rem 2.8rem;
    border-radius: 50px;
    font-weight: 700;
    font-size: 1rem;
    cursor: pointer;
    transition: all 0.3s ease;
    text-decoration: none;
    display: inline-block;
    border: none;
}

.btn-primary {
    background: white;
    color: #4a2e34;
    box-shadow: 0 8px 22px rgba(0,0,0,0.15);
}

.btn-primary:hover {
    transform: translateY(-4px);
    box-shadow: 0 16px 32px rgba(0,0,0,0.2);
    background: #fffaf2;
}

.btn-secondary {
    background: transparent;
    color: white;
    border: 2px solid white;
    backdrop-filter: blur(4px);
}

.btn-secondary:hover {
    background: rgba(255,255,245,0.15);
    transform: translateY(-4px);
    border-color: #ffefcf;
}

/* ===== 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 BASE ===== */
.section {
    padding: 5rem 2rem;
    max-width: 1400px;
    margin: 0 auto;
}

.section-title {
    font-size: 2.6rem;
    font-weight: 800;
    margin-bottom: 1rem;
    color: #4a2e34;
    letter-spacing: -0.5px;
}

.section-subtitle {
    font-size: 1.15rem;
    color: #6b5a55;
    margin-bottom: 3.5rem;
    max-width: 700px;
}

/* ===== ABOUT ===== */
.about-grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 3.5rem;
    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-content h2 {
    font-size: 2.5rem;
    margin-bottom: 1.5rem;
    color: #4a2e34;
    font-weight: 800;
}

.about-content p {
    font-size: 1.05rem;
    color: #2c3e50;
    margin-bottom: 1.8rem;
    line-height: 1.7;
}

.about-content a {
    color: #784F36;
    text-decoration: none;
    font-weight: 700;
    transition: 0.2s;
    border-bottom: 1px solid transparent;
}

.about-content a:hover {
    color: #7a4f34;
    border-bottom-color: #a66e4b;
}

/* ===== OFERTY ===== */
.offers {
    background: #fef8f2;
    border-radius: 48px 48px 0 0;
}

.offers-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: 2.5rem;
    margin-top: 2rem;
}

.offer-card {
    background: white;
    border-radius: 28px;
    box-shadow: 0 12px 30px rgba(0, 0, 0, 0.06);
    transition: all 0.35s ease;
    border: 1px solid rgba(0,0,0,0.03);
    overflow: hidden;
    text-decoration: none;
    color: inherit;
    display: flex;
    flex-direction: column;
}

.offer-card:hover {
    transform: translateY(-8px);
    box-shadow: 0 25px 45px rgba(0, 0, 0, 0.12);
}

.offer-image {
    width: 100%;
    height: 180px;
    overflow: hidden;
    background: #2c3e50;
    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.2rem 1.5rem 1.5rem;
    display: flex;
    flex-direction: column;
    flex: 1;
    background: white;
}

.offer-card h3 {
    font-size: 1.2rem;
    margin: 0 0 0.3rem 0;
    color: #4a2e34;
    font-weight: 700;
}

.offer-badge {
    display: inline-block;
    background: linear-gradient(135deg, #f5e2c1, #ecd6aa);
    color: #3e2a2f;
    font-size: 0.7rem;
    font-weight: 700;
    padding: 0.15rem 0.7rem;
    border-radius: 20px;
    margin-bottom: 0.5rem;
    align-self: flex-start;
}

.offer-details {
    display: flex;
    flex-wrap: wrap;
    gap: 0.3rem 1rem;
    margin: 0.2rem 0 0.5rem 0;
    font-size: 0.85rem;
}

.offer-size, .offer-people {
    display: flex;
    align-items: center;
    gap: 0.3rem;
    color: #5e4b41;
    font-weight: 500;
}

.offer-link {
    color: #6F472F;
    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: #b87a54;
    transform: translateX(5px);
}

/* ===== ATTRACTIONS ===== */
.attractions-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 2.2rem;
    margin-top: 2rem;
}

.attraction-card {
    background: linear-gradient(145deg, #ffffff, #fef5ed);
    padding: 2rem 1.5rem;
    border-radius: 32px;
    text-align: center;
    transition: all 0.3s;
    border: 1px solid rgba(184, 122, 84, 0.15);
    cursor: pointer;
    text-decoration: none;
    color: inherit;
    display: block;
}

.attraction-card:hover {
    transform: translateY(-8px);
    background: white;
    border-color: #c68a5e;
    box-shadow: 0 22px 35px -12px rgba(0,0,0,0.15);
}

.attraction-icon {
    font-size: 3.3rem;
    margin-bottom: 1rem;
    display: inline-block;
}

.attraction-card h3 {
    font-size: 1.35rem;
    color: #4a2e34;
    margin-bottom: 0.6rem;
}

.attraction-card p {
    font-size: 0.92rem;
    color: #6b5a53;
}

/* ===== GALLERY ===== */
.gallery-title {
    font-size: 1.7rem;
    font-weight: 700;
    color: #4a2e34;
    margin: 2rem 0 1.8rem 0;
}

.gallery-grid {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 1.8rem;
    margin-bottom: 3rem;
}

.gallery-item {
    aspect-ratio: 1;
    background: #f9ede2;
    border-radius: 28px;
    overflow: hidden;
    transition: all 0.3s ease;
    box-shadow: 0 10px 22px rgba(0,0,0,0.04);
    cursor: default;
}

.gallery-item img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    display: block;
    transition: transform 0.3s ease;
}

.gallery-item:hover {
    transform: scale(1.05);
    box-shadow: 0 18px 32px rgba(0,0,0,0.1);
    background: #f5e2d2;
}

.gallery-item:hover img {
    transform: scale(1.08);
}

/* ===== LOCATION ===== */
.location {
    background: linear-gradient(135deg, #3e2a2f 0%, #7a5a4b 100%);
    color: white;
    border-radius: 40px 40px 0 0;
    margin-top: 2rem;
}

.location .section-title, .location .section-subtitle {
    color: white;
}

.location .section-subtitle {
    opacity: 0.9;
}

.location-content {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 2.8rem;
    margin-top: 2rem;
    align-items: start;
}

.location-info {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 1.8rem;
}

.location-card {
    background: rgba(255, 245, 230, 0.12);
    backdrop-filter: blur(4px);
    padding: 1.5rem;
    border-radius: 28px;
    transition: 0.2s;
    border: 1px solid rgba(255, 225, 190, 0.25);
}

.location-card strong {
    font-size: 1.1rem;
    display: block;
    margin-bottom: 0.5rem;
}

.location-map {
    background: rgba(255, 240, 215, 0.2);
    border-radius: 32px;
    height: 340px;
    overflow: hidden;
    position: relative;
}

.location-map iframe {
    width: 100%;
    height: 100%;
    border: 0;
}

/* ===== FOOTER ===== */
footer {
    background: #3e2a2f;
    color: white;
    padding: 3rem 2rem 2rem;
}

.footer-content {
    max-width: 1400px;
    margin: 0 auto;
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(240px, 1fr));
    gap: 2.5rem;
}

.footer-section h3 {
    font-size: 1.15rem;
    margin-bottom: 1.2rem;
    font-weight: 700;
    letter-spacing: 0.5px;
    color: #f5e2cf;
}

.footer-section ul {
    list-style: none;
}

.footer-section li {
    margin-bottom: 0.7rem;
}

.footer-section a {
    color: rgba(255, 245, 230, 0.8);
    text-decoration: none;
    transition: 0.2s;
}

.footer-section a:hover {
    color: #ffefcf;
    text-decoration: underline;
}

.footer-bottom {
    text-align: center;
    padding-top: 2rem;
    margin-top: 2rem;
    border-top: 1px solid rgba(255, 235, 200, 0.2);
    font-size: 0.85rem;
    color: #e2cfbc;
}

/* ===== LANGUAGE SECTION ===== */
.lang-section {
    background: #3e2a2f;  
    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: #fef3e4;
    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: #3e2a2f;
    z-index: 999;
    padding: 5rem 2rem 2rem;
    transition: right 0.3s ease-in-out;
    box-shadow: -5px 0 25px rgba(0, 0, 0, 0.3);
    overflow-y: auto;
}

.mobile-menu.active {
    right: 0;
}

.mobile-menu a {
    display: block;
    color: #fef3e4;
    text-decoration: none;
    padding: 1rem 0;
    font-size: 1.1rem;
    font-weight: 500;
    border-bottom: 1px solid rgba(255, 235, 210, 0.2);
    transition: all 0.3s ease;
}

.mobile-menu a:hover {
    color: #ecd6aa;
    padding-left: 10px;
}

.mobile-menu .mobile-cta {
    margin-top: 2rem;
    background: linear-gradient(135deg, #b87a54, #c68a5e);
    text-align: center;
    padding: 1rem;
    border-radius: 40px;
    color: #3e2a2f;
    font-weight: 700;
}

.mobile-menu .mobile-cta:hover {
    padding-left: 1rem;
    background: linear-gradient(135deg, #c68a5e, #b87a54);
    color: white;
}

.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;
}

/* ===== RESPONSYWNOŚĆ ===== */
@media (max-width: 992px) {
    .attractions-grid { 
        grid-template-columns: repeat(2, 1fr); 
    }
    
    .gallery-grid { 
        grid-template-columns: repeat(3, 1fr); 
        gap: 1.2rem; 
    }
    
    .offers-grid {
        grid-template-columns: repeat(2, 1fr);
        gap: 1.8rem;
    }
    
    .offer-image {
        height: 160px;
    }
}

@media (max-width: 768px) {
    .nav-links { 
        display: none; 
    }
    
    .hamburger {
        display: flex !important;
    }
    
    .hero h1 { 
        font-size: 2.6rem; 
    }
    
    .hero p { 
        font-size: 1.15rem; 
    }
    
    .about-grid, .location-content { 
        grid-template-columns: 1fr; 
    }
    
    .about-image { 
        height: 280px; 
        font-size: 6rem; 
    }
    
    .section-title { 
        font-size: 2rem; 
    }
    
    .attractions-grid { 
        grid-template-columns: repeat(2, 1fr); 
        gap: 1.2rem; 
    }
    
    .gallery-grid { 
        grid-template-columns: repeat(2, 1fr); 
    }
    
    .location-info { 
        grid-template-columns: 1fr; 
    }
    
    .offers-grid {
        grid-template-columns: 1fr 1fr;
        gap: 1.2rem;
    }
    
    .offer-image {
        height: 140px;
    }
    
    .offer-body {
        padding: 1rem 1rem 1.2rem;
    }
    
    .offer-card h3 {
        font-size: 1rem;
    }
    
    .offer-details {
        font-size: 0.75rem;
        gap: 0.2rem 0.6rem;
    }
    
    .lang-grid {
        gap: 0.3rem;
    }
    
    .lang-grid a {
        padding: 0.3rem 0.6rem;
        font-size: 0.7rem;
    }
    
    .lang-section {
        padding: 1rem;
    }
}

@media (max-width: 580px) {
    .attractions-grid { 
        grid-template-columns: 1fr; 
    }
    
    .hero-buttons { 
        flex-direction: column; 
        gap: 1rem; 
        width: 100%;
    }
    
    .btn-primary, .btn-secondary { 
        width: 80%; 
        margin: 0 auto; 
        text-align: center; 
    }
    
    .hero { 
        height: 500px; 
    }
    
    .section { 
        padding: 3rem 1.2rem; 
    }
    
    .gallery-grid { 
        grid-template-columns: repeat(2, 1fr); 
        gap: 1rem; 
    }
    
    .offers-grid {
        grid-template-columns: 1fr;
        max-width: 400px;
        margin-left: auto;
        margin-right: auto;
    }
    
    .offer-image {
        height: 180px;
    }
}

@media (max-width: 480px) {
    .attraction-card { 
        padding: 1.2rem; 
    }
    
    .attraction-icon { 
        font-size: 2.8rem; 
    }
    
    .offer-body {
        padding: 0.8rem 0.8rem 1rem;
    }
    
    .offer-image {
        height: 160px;
    }
    
    .lang-grid a {
        padding: 0.25rem 0.5rem;
        font-size: 0.65rem;
    }
}