/* --- BAZA I ZMIENNE --- */
* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

html, body {
    overflow-x: hidden; 
}

body {
    font-family: 'Open Sans', sans-serif;
    background-color: #0a0a0a; 
    color: #e0e0e0; 
    line-height: 1.6;
}

h1, h2, h3, .logo {
    font-family: 'Oswald', sans-serif;
    text-transform: uppercase;
    letter-spacing: 2px;
    color: #ffffff;
}

.accent {
    color: #d90429; 
}

/* --- NAWIGACJA --- */
.navbar {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 25px 50px;
    background-color: rgba(10, 10, 10, 0.95);
    border-bottom: 1px solid #222;
    position: sticky;
    top: 0;
    z-index: 100;
}

.logo {
    font-size: 2rem;
}

.navbar ul {
    list-style: none;
    display: flex;
    gap: 30px;
}

.navbar a {
    text-decoration: none;
    color: #a0a0a0;
    font-family: 'Oswald', sans-serif;
    font-size: 1.1rem;
    letter-spacing: 1px;
    transition: color 0.3s ease;
}

.navbar a:hover, .navbar a.active {
    color: #ffffff;
    border-bottom: 2px solid #d90429;
    padding-bottom: 5px;
}

/* --- HERO SECTION --- */
.hero {
    height: 90vh;
    background-image: url('https://images.unsplash.com/photo-1550684376-efcbd6e3f031?q=80&w=2070&auto=format&fit=crop'); /* Mroczne zdjęcie dziarania */
    background-size: cover;
    background-position: center;
    position: relative;
    display: flex;
    align-items: center;
    padding: 0 10%;
}

.hero-overlay {
    position: absolute;
    top: 0; left: 0; width: 100%; height: 100%;
    background: linear-gradient(90deg, rgba(10,10,10,0.9) 0%, rgba(10,10,10,0.4) 100%);
    z-index: 1;
}

.hero-content {
    position: relative;
    z-index: 2;
    max-width: 600px;
}

.hero-content h1 {
    font-size: 5rem;
    line-height: 1.1;
    margin-bottom: 20px;
}

.hero-content p {
    font-size: 1.2rem;
    color: #b3b3b3;
    margin-bottom: 40px;
}

.btn {
    display: inline-block;
    padding: 15px 35px;
    background-color: #d90429;
    color: #ffffff;
    text-decoration: none;
    font-family: 'Oswald', sans-serif;
    font-size: 1.2rem;
    letter-spacing: 1px;
    transition: background-color 0.3s, transform 0.2s;
}

.btn:hover {
    background-color: #b00320;
    transform: translateY(-3px);
}

/* --- O MNIE --- */
.about {
    padding: 100px 10%;
    background-color: #121212; 
}

.about-grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 50px;
    align-items: center;
}

.about-text h2 {
    font-size: 3rem;
    margin-bottom: 30px;
    border-left: 5px solid #d90429;
    padding-left: 15px;
}

.about-text p {
    margin-bottom: 20px;
    font-size: 1.1rem;
    color: #999;
}

.about-image img {
    width: 100%;
    filter: grayscale(100%); 
    border: 1px solid #333;
    transition: filter 0.5s ease;
}

/* Kolor wraca po najechaniu myszką */
.about-image img:hover {
    filter: grayscale(0%);
}

/* --- NAGŁÓWEK PODSTRON (Galeria i Info) --- */
.page-header {
    text-align: center;
    padding: 80px 20px 40px;
    background-color: #0a0a0a;
}

.page-header h1 {
    font-size: 3.5rem;
    margin-bottom: 10px;
}

.page-header p {
    color: #999;
    font-size: 1.1rem;
    max-width: 600px;
    margin: 0 auto;
}

/* --- GALERIA MASONRY (Asymetryczna siatka) --- */
.gallery {
    padding: 40px 5%;
    background-color: #0a0a0a;
}

.masonry-grid {
    column-count: 3; 
    column-gap: 15px; 
}
.masonry-item {
    margin-bottom: 15px;
    break-inside: avoid; 
    overflow: hidden; 
    position: relative;
    cursor: pointer;
}

.masonry-item img {
    width: 100%;
    display: block;
    transition: transform 0.4s ease, filter 0.4s ease;
    filter: brightness(0.8) grayscale(30%); 
}


.masonry-item:hover img {
    transform: scale(1.05);
    filter: brightness(1.1) grayscale(0%); 
}

/* --- RESPONSYWNOŚĆ DLA GALERII --- */
@media (max-width: 900px) {
    .masonry-grid {
        column-count: 2; 
    }
}

@media (max-width: 600px) {
    .masonry-grid {
        column-count: 2; 
    }
}

/* ==========================================================================
   PODSTRONA INFO (Zapisy i FAQ)
   ========================================================================== */

.booking-section {
    padding: 60px 10%;
    background-color: #0a0a0a;
}

.booking-grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 60px;
    align-items: start;
}

.booking-section h2 {
    font-size: 2.2rem;
    margin-bottom: 30px;
    color: #ffffff;
    border-bottom: 1px solid #222;
    padding-bottom: 15px;
}

/* --- FAQ  --- */
.faq-item {
    background-color: #121212;
    margin-bottom: 15px;
    border-left: 3px solid #d90429; 
    transition: background-color 0.3s ease;
}

.faq-item:hover {
    background-color: #1a1a1a;
}


.faq-item summary {
    font-family: 'Oswald', sans-serif;
    font-size: 1.2rem;
    color: #ffffff;
    padding: 20px;
    cursor: pointer;
    list-style: none;
    position: relative;
    letter-spacing: 1px;
}


.faq-item summary::-webkit-details-marker {
    display: none;
}


.faq-item p {
    padding: 0 20px 20px 20px;
    color: #a0a0a0;
    line-height: 1.7;
    margin: 0;
}

/* --- KARTA BEZPOŚREDNIEGO KONTAKTU  --- */
.contact-card {
    background-color: #121212;
    padding: 40px;
    border: 1px solid #222;
    border-top: 3px solid #d90429;
}

.contact-intro {
    font-size: 1.05rem;
    color: #b3b3b3;
    margin-bottom: 25px;
}

.booking-checklist {
    list-style: none;
    margin-bottom: 35px;
}

.booking-checklist li {
    margin-bottom: 15px;
    color: #e0e0e0;
    display: flex;
    align-items: center;
    gap: 15px;
    font-size: 1rem;
}

.booking-checklist li i {
    color: #d90429; 
    font-size: 1.2rem;
    width: 20px; 
    text-align: center;
}

/* --- DUŻE PRZYCISKI SOCIAL MEDIA --- */
.social-buttons {
    display: flex;
    flex-direction: column;
    gap: 15px;
}

.social-btn {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 10px;
    padding: 15px;
    color: #ffffff;
    text-decoration: none;
    font-family: 'Oswald', sans-serif;
    font-size: 1.2rem;
    letter-spacing: 1px;
    transition: transform 0.2s ease, filter 0.3s ease;
}


.ig-btn {
    background: linear-gradient(45deg, #f09433 0%, #e6683c 25%, #dc2743 50%, #cc2366 75%, #bc1888 100%);
}

.fb-btn {
    background-color: #0084ff;
}

.social-btn:hover {
    transform: translateY(-3px);
    filter: brightness(1.2);
}

/* ==========================================================================
   FOOTER
   ========================================================================== */
.footer {
    background-color: #050505;
    border-top: 1px solid #1a1a1a;
    text-align: center;
}

.footer-content {
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 25px;
    margin-bottom: 40px;
}

.footer-logo {
    font-family: 'Oswald', sans-serif;
    font-size: 2.5rem;
    color: #ffffff;
    letter-spacing: 2px;
}

.footer-socials {
    display: flex;
    gap: 15px;
}

.footer-socials a {
    display: flex;
    align-items: center;
    justify-content: center;
    width: 45px;
    height: 45px;
    background-color: #121212;
    color: #888;
    border-radius: 50%; /* Okrągłe ikonki */
    text-decoration: none;
    font-size: 1.2rem;
    transition: background-color 0.3s ease, color 0.3s ease, transform 0.3s ease;
}

.footer-socials a:hover {
    background-color: #d90429; /* Czerwone podświetlenie */
    color: #ffffff;
    transform: translateY(-4px); /* Ikonka delikatnie unosi się do góry */
}

.footer-bottom {
    border-top: 1px solid #1a1a1a;
    padding-top: 25px;
    color: #555;
    font-size: 0.9rem;
}

/* --- RESPONSYWNOŚĆ DLA SEKCJI ZAPISÓW --- */
@media (max-width: 900px) {
    .booking-grid {
        grid-template-columns: 1fr; /* Pytania i formularz jedno pod drugim na mniejszych ekranach */
        gap: 40px;
    }
}

/* SMARTFONY (do 768px) */
@media (max-width: 768px) {
    
    /* 1. Nawigacja (Menu pionowe) */
    .navbar {
        flex-direction: column; /* Wymusza układ pionowy: najpierw logo, potem linki */
        padding: 20px;
        gap: 20px;
        text-align: center;
    }
    
    .navbar ul {
        flex-direction: row; 
        flex-wrap: wrap; /* Jak się nie zmieszczą, spadną niżej */
        justify-content: center;
        gap: 15px;
        width: 100%;
    }

    /* 2. Hero Section (Strona główna) */
    .hero {
        padding: 0 5%;
        text-align: center; /* Środkujemy tekst na telefonie, wygląda to o wiele lepiej */
        justify-content: center;
    }

    .hero-content h1 {
        font-size: 2.5rem; /* Zmniejszamy giganta, żeby zmieścił się na małym ekranie */
        margin-bottom: 15px;
        word-wrap: break-word; /* W ostateczności złamie słowo, zamiast psuć stronę */
    }

    .hero-content p {
        font-size: 1.05rem;
        margin-bottom: 30px;
    }

    /* 3. Sekcja "O mnie" */
    .about {
        padding: 60px 5%; 
    }

    .about-text h2 {
        font-size: 2.2rem;
    }

    /* 4. Nagłówki podstron (Galeria i Info) */
    .page-header {
        padding: 50px 15px 20px;
    }

    .page-header h1 {
        font-size: 2.5rem;
    }

    /* 5. Zapisy i FAQ (info.html) */
    .booking-section {
        padding: 40px 5%;
    }

    .booking-grid {
        grid-template-columns: 1fr;
        gap: 40px;
    }

    .faq-item summary {
        font-size: 1.1rem;
        padding: 15px; 
    }

    .faq-item p {
        padding: 0 15px 15px 15px;
    }

    .contact-card {
        padding: 25px 20px; 
    }

    .booking-checklist li {
        font-size: 0.95rem;
    }
    
    .social-btn {
        font-size: 1.1rem;
        padding: 12px;
    }
}