* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

:root {
    --primary: #0066cc;
    --primary-dark: #004499;
    --accent: #00a86b;
    --text-dark: #1a1a1a;
    --text-light: #666666;
    --bg-light: #f8f9fa;
    --border: #e0e0e0;
    --white: #ffffff;
}

html {
    scroll-behavior: smooth;
}

body {
    font-family: -apple-system, BlinkMacSystemFont, 'Segoe UI', Roboto, Oxygen, Ubuntu, Cantarell, sans-serif;
    color: var(--text-dark);
    line-height: 1.6;
    background: var(--white);
}

/* ============================================================
   HEADER & NAVIGATION
   ============================================================ */
header {
    background: var(--white);
    border-bottom: 1px solid var(--border);
    position: sticky;
    top: 0;
    z-index: 1000;
    box-shadow: 0 2px 4px rgba(0,0,0,0.05);
}

.header-wrapper {
    max-width: 1200px;
    margin: 0 auto;
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 1rem 2rem;
}

.logo {
    font-size: 1.8rem;
    font-weight: 700;
    color: var(--primary);
    letter-spacing: -0.5px;
}

.logo a {
    color: var(--accent);
    text-decoration: none;
}

nav {
    display: flex;
    gap: 2rem;
    align-items: center;
}

.nav-links {
    display: flex;
    list-style: none;
    gap: 2rem;
}

.nav-links a {
    text-decoration: none;
    color: var(--text-dark);
    font-weight: 500;
    transition: color 0.3s;
}

.nav-links a:hover {
    color: var(--primary);
}

.hamburger {
    display: none;
    flex-direction: column;
    cursor: pointer;
    gap: 0.4rem;
    padding: 0.3rem;
    z-index: 100;
}

.hamburger span {
    width: 28px;
    height: 3px;
    background: var(--text-dark);
    border-radius: 2px;
    transition: all 0.3s ease;
    display: block;
}

.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(5px, -5px);
}

/* ============================================================
   HERO SECTION
   ============================================================ */
.hero {
    color: #218728;
    padding: 6rem 2rem;
    text-align: center;
    position: relative;
    overflow: hidden;
    min-height: 500px;
    display: flex;
    align-items: center;
    justify-content: center;
}

.hero::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: url('/img/hero1.webp');
    background-size: cover;
    background-position: center;
    background-repeat: no-repeat;
    z-index: 0;
}

.hero-content {
    max-width: 700px;
    margin: 0 auto;
    position: relative;
    z-index: 1;
}

.hero h1 {
    color: #218728;
    font-size: 3rem;
    margin-bottom: 1rem;
    font-weight: 700;
    line-height: 1.2;
    text-shadow: 0 2px 8px rgba(0,0,0,0.5);
}

/* ============================================================
   BUTTONS
   ============================================================ */
.btn {
    display: inline-block;
    padding: 0.95rem 2rem;
    border-radius: 6px;
    text-decoration: none;
    font-weight: 600;
    transition: all 0.3s;
    border: none;
    cursor: pointer;
    font-size: 1rem;
}

.btn-primary {
    background: var(--primary);
    color: var(--white);
}

.btn-primary:hover {
    background: var(--primary-dark);
    transform: translateY(-2px);
    box-shadow: 0 8px 16px rgba(0,102,204,0.3);
}

/* ============================================================
   SECTION GENERAL
   ============================================================ */
section {
    padding: 4rem 2rem;
}

.container {
    max-width: 1200px;
    margin: 0 auto;
}

section h2 {
    font-size: 2.2rem;
    margin-bottom: 1rem;
    color: var(--text-dark);
}

section > .container > p:first-of-type {
    font-size: 1.1rem;
    color: var(--text-light);
    margin-bottom: 3rem;
    max-width: 700px;
}

/* ============================================================
   OFFERS SECTION
   ============================================================ */
.offers {
    background: var(--bg-light);
}

.offers-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
    gap: 2rem;
    margin-top: 3rem;
}

.offer-card {
    background: var(--white);
    padding: 2rem;
    border-radius: 8px;
    border-left: 4px solid var(--primary);
    transition: all 0.3s;
    box-shadow: 0 2px 8px rgba(0,0,0,0.08);
}

.offer-card:hover {
    transform: translateY(-4px);
    box-shadow: 0 8px 20px rgba(0,0,0,0.12);
}

.offer-card h3 {
    color: var(--primary);
    margin-bottom: 0.8rem;
    font-size: 1.3rem;
}

.offer-card p {
    color: var(--text-light);
    line-height: 1.7;
}

/* ============================================================
   ATTRACTIONS SECTION
   ============================================================ */
.attractions {
    background: var(--white);
}

.attractions-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 2rem;
    margin-top: 3rem;
}

.attraction-item {
    text-align: center;
    padding: 2rem;
    border-radius: 8px;
    background: var(--bg-light);
    transition: all 0.3s;
}

.attraction-item:hover {
    background: var(--primary);
    color: var(--white);
}

.attraction-item h3 {
    margin-bottom: 0.8rem;
    font-size: 1.2rem;
}

.attraction-item p {
    color: inherit;
    opacity: 0.9;
}

/* ============================================================
   GALLERY (NIEKLIKALNA - TYLKO PODGLĄD)
   ============================================================ */
.gallery {
    background: var(--bg-light);
}

.gallery-grid {
    display: grid;
    grid-template-columns: repeat(auto-fill, minmax(250px, 1fr));
    gap: 1.5rem;
    margin-top: 3rem;
}

.gallery-item {
    overflow: hidden;
    border-radius: 8px;
    aspect-ratio: 1;
    background: var(--border);
}

.gallery-item img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    display: block;
}

/* ============================================================
   BOOKING SECTION
   ============================================================ */
.booking {
    background: linear-gradient(135deg, #667eea 0%, #764ba2 100%);
    color: var(--white);
    padding: 4rem 2rem;
}

.booking .container {
    max-width: 1200px;
    margin: 0 auto;
}

.booking-header {
    text-align: center;
    margin-bottom: 3rem;
}

.booking-header h2 {
    font-size: 2.2rem;
    color: var(--white);
    margin-bottom: 1rem;
    font-weight: 700;
}

.booking-header p {
    font-size: 1.1rem;
    max-width: 650px;
    margin: 1rem auto;
    opacity: 0.95;
    line-height: 1.6;
}

.booking-box {
    background: rgba(255, 255, 255, 0.95);
    border-radius: 12px;
    padding: 3rem;
    box-shadow: 0 20px 60px rgba(0, 0, 0, 0.3);
    max-width: 700px;
    margin: 0 auto;
}

.booking-info {
    display: flex;
    flex-direction: column;
    gap: 0;
}

.booking-info h3 {
    color: var(--primary);
    font-size: 1.5rem;
    margin-bottom: 2rem;
    text-align: center;
}

.booking-features {
    display: flex;
    flex-direction: column;
    gap: 0;
}

.feature-item {
    display: flex;
    gap: 1.2rem;
    text-align: left;
    padding-bottom: 1.5rem;
    border-bottom: 1px solid var(--bg-light);
    transition: all 0.3s ease;
}

.feature-item:last-child {
    border-bottom: none;
    padding-bottom: 0;
}

.feature-item:hover {
    transform: translateX(8px);
}

.feature-content h4 {
    color: var(--text-dark);
    font-size: 1.1rem;
    margin-bottom: 0.4rem;
    font-weight: 600;
}

.feature-content p {
    color: var(--text-light);
    font-size: 0.9rem;
    line-height: 1.5;
}

.booking-cta {
    display: inline-block;
    background: var(--primary);
    color: var(--white);
    padding: 1rem 2.5rem;
    border-radius: 6px;
    text-decoration: none;
    font-weight: 600;
    text-align: center;
    margin-top: 2rem;
    transition: all 0.3s;
    border: none;
    cursor: pointer;
    font-size: 1rem;
    width: 100%;
}

.booking-cta:hover {
    background: var(--primary-dark);
    transform: translateY(-2px);
    box-shadow: 0 8px 16px rgba(0, 102, 204, 0.3);
}

/* ============================================================
   CONTACT + MAP
   ============================================================ */
.contact-map {
    background: var(--bg-light);
    padding: 4rem 2rem;
}

.contact-map-grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 3rem;
    margin-top: 3rem;
    align-items: stretch;
}

.contact-info {
    display: flex;
    flex-direction: column;
    gap: 2rem;
    background: var(--white);
    padding: 2.5rem;
    border-radius: 8px;
    box-shadow: 0 2px 12px rgba(0,0,0,0.08);
}

.contact-item h3 {
    color: var(--primary);
    margin-bottom: 0.8rem;
    font-size: 1.1rem;
}

.contact-item p {
    color: var(--text-light);
    margin-bottom: 0.3rem;
}

.contact-item a {
    color: var(--primary);
    text-decoration: none;
    transition: color 0.3s;
}

.contact-item a:hover {
    color: var(--primary-dark);
}

.map-wrapper {
    border-radius: 8px;
    overflow: hidden;
    box-shadow: 0 2px 12px rgba(0,0,0,0.08);
    background: var(--white);
    min-height: 400px;
    display: flex;
    align-items: stretch;
}

.map-button {
    width: fit-content;
    min-height: auto;
    display: flex;
    align-items: center;
    justify-content: center;
    padding: 0.9rem 1.4rem;
    text-align: center;
    background: rgba(0, 102, 204, 0.10);
    text-decoration: none;
    font-size: 0.95rem;
    font-weight: 700;
    letter-spacing: 0.1px;
    border: 1px solid rgba(0, 102, 204, 0.18);
    border-radius: 999px;
    color: var(--primary);
    margin: auto;
    transition: transform 0.3s ease, box-shadow 0.3s ease, background 0.3s ease;
}

.map-button:hover {
    transform: translateY(-1px);
    background: rgba(0, 102, 204, 0.14);
    box-shadow: 0 6px 16px rgba(0, 102, 204, 0.12);
}

.map-button:active {
    transform: translateY(0);
}

/* ============================================================
   MAIN FOOTER (NOWA STOPKA)
   ============================================================ */
.main-footer {
    background: #1a1a2e;
    color: #e0e0e0;
    padding: 3rem 2rem 1rem;
}

.main-footer .container {
    max-width: 1200px;
    margin: 0 auto;
}

.main-footer a {
    color: #64b5f6;
    text-decoration: none;
    transition: color 0.3s;
}

.main-footer a:hover {
    color: #ffffff;
}

.footer-content {
    display: grid;
    grid-template-columns: 1fr 1fr 1fr;
    gap: 3rem;
    margin-bottom: 2rem;
}

.footer-content h3 {
    color: #ffffff;
    font-size: 1.1rem;
    margin-bottom: 1rem;
    font-weight: 600;
}

.footer-content p {
    margin-bottom: 0.8rem;
    line-height: 1.6;
    color: #b0b0b0;
}

.footer-copyright-main {
    font-size: 1.3rem;
    font-weight: 700;
    color: #ffffff !important;
    margin-bottom: 1.2rem;
}

.footer-copyright-main span {
    color: #64b5f6;
    font-size: 0.9rem;
    letter-spacing: 2px;
}

.footer-links a,
.footer-social .social-icons-footer a {
    display: inline-block;
    padding: 0.3rem 0;
    color: #b0b0b0;
    font-size: 0.95rem;
    transition: color 0.3s, transform 0.2s;
}

.footer-links a:hover,
.footer-social .social-icons-footer a:hover {
    color: #ffffff;
    transform: translateX(4px);
}

.footer-social .social-icons-footer {
    display: flex;
    flex-wrap: wrap;
    gap: 0.8rem 1.5rem;
}

.footer-bottom {
    border-top: 1px solid rgba(255, 255, 255, 0.08);
    padding-top: 1.5rem;
    text-align: center;
    font-size: 0.9rem;
    color: rgba(255, 255, 255, 0.6);
}

/* ============================================================
   JĘZYKI - OPCJA 4 BEZ FLAG
   ============================================================ */
.footer-languages {
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 6px;
    margin-top: 1.5rem;
}

.footer-languages .lang-row {
    display: flex;
    flex-wrap: wrap;
    justify-content: center;
    gap: 5px;
}

.footer-languages a {
    display: inline-block;
    background: rgba(255, 255, 255, 0.07);
    padding: 0.25rem 0.9rem;
    border-radius: 20px;
    font-size: 0.78rem;
    font-weight: 600;
    color: #c8c8c8;
    transition: all 0.3s ease;
    border: 1px solid rgba(255, 255, 255, 0.04);
    text-decoration: none;
    letter-spacing: 0.3px;
}

.footer-languages a:hover {
    background: #64b5f6;
    color: #1a1a2e;
    border-color: #64b5f6;
    transform: translateY(-2px) scale(1.04);
    box-shadow: 0 4px 12px rgba(100, 181, 246, 0.25);
}

.footer-languages a:active {
    transform: scale(0.95);
}

/* ============================================================
   RESPONSIVE
   ============================================================ */
@media (max-width: 991px) {
    .attractions-grid {
        grid-template-columns: repeat(2, 1fr);
    }
}

@media (max-width: 992px) {
    .footer-content {
        grid-template-columns: 1fr 1fr;
        gap: 2rem;
    }
}

@media (max-width: 768px) {
    .hamburger {
        display: flex;
    }
    
    .nav-links {
        display: none !important;
        position: absolute;
        top: 100%;
        left: 0;
        right: 0;
        background: var(--white);
        flex-direction: column;
        padding: 1.5rem 2rem;
        box-shadow: 0 8px 24px rgba(0,0,0,0.12);
        gap: 1rem;
        border-top: 1px solid var(--border);
    }
    
    .nav-links.active {
        display: flex !important;
    }
    
    .nav-links a {
        padding: 0.8rem 0;
        border-bottom: 1px solid var(--border);
        font-size: 1.1rem;
    }
    
    .nav-links a:last-child {
        border-bottom: none;
    }
    
    .hero h1 {
        font-size: 2rem;
    }

    .hero {
        padding: 4rem 1rem;
    }

    section {
        padding: 2.5rem 1rem;
    }

    .logo {
        font-size: 1.3rem;
    }

    .header-wrapper {
        padding: 1rem;
    }

    .gallery-grid {
        grid-template-columns: repeat(auto-fill, minmax(150px, 1fr));
    }

    .offers-grid {
        grid-template-columns: 1fr;
    }

    section h2 {
        font-size: 1.6rem;
    }

    .contact-map-grid {
        grid-template-columns: 1fr;
        gap: 2rem;
    }
    
    .map-wrapper {
        min-height: 300px;
    }
    
    .contact-info {
        padding: 1.5rem;
    }

    .booking {
        padding: 2.5rem 1rem;
    }

    .booking-header h2 {
        font-size: 1.8rem;
    }

    .booking-header p {
        font-size: 1rem;
    }

    .booking-box {
        padding: 2rem;
    }

    .booking-info h3 {
        font-size: 1.3rem;
    }

    .feature-item {
        gap: 1rem;
    }

    .feature-content h4 {
        font-size: 1rem;
    }

    .footer-content {
        grid-template-columns: 1fr;
        gap: 2rem;
        text-align: center;
    }

    .footer-links a:hover,
    .footer-social .social-icons-footer a:hover {
        transform: none;
    }

    .footer-social .social-icons-footer {
        justify-content: center;
    }

    .footer-languages {
        justify-content: center;
    }

    .main-footer {
        padding: 2rem 1rem 1rem;
    }
}

@media (max-width: 480px) {
    .hero h1 {
        font-size: 1.5rem;
    }

    .btn {
        padding: 0.8rem 1.5rem;
        font-size: 0.95rem;
    }

    .booking {
        padding: 2rem 1rem;
    }

    .booking-header h2 {
        font-size: 1.4rem;
    }

    .booking-box {
        padding: 1.5rem;
        border-radius: 8px;
    }

    .booking-info h3 {
        font-size: 1.1rem;
    }

    .feature-item {
        gap: 0.8rem;
        padding-bottom: 1rem;
    }

    .feature-content h4 {
        font-size: 0.95rem;
    }

    .feature-content p {
        font-size: 0.85rem;
    }

    .booking-cta {
        padding: 0.9rem 1.5rem;
        font-size: 0.95rem;
    }
}

@media (min-width: 769px) {
    .nav-links {
        display: flex !important;
        position: static;
        flex-direction: row;
        padding: 0;
        box-shadow: none;
        border-top: none;
        gap: 2rem;
    }
    
    .nav-links a {
        padding: 0;
        border-bottom: none;
        font-size: 1rem;
    }
    
    .hamburger {
        display: none !important;
    }
}