/* =========================================
   RESET I PODSTAWOWE USTAWIENIA
   ========================================= */
* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

html {
    scroll-behavior: smooth; 
    scroll-padding-top: 160px; 
}

body {
    font-family: 'Playfair Display', Georgia, serif; 
    background-color: #fcfbfa;
    color: #2c2c2c;
    overflow-x: hidden; 
}

a[href^="tel"] { color: inherit !important; text-decoration: none !important; }

::-webkit-scrollbar { width: 10px; }
::-webkit-scrollbar-track { background: #1c352d; }
::-webkit-scrollbar-thumb { background: #dfb76c; border-radius: 10px; }
::-webkit-scrollbar-thumb:hover { background: #f3ce87; }

/* =========================================
   KLASY DO ANIMACJI (JavaScript)
   ========================================= */
.scroll-anim {
    /* Ustawienia płynności animacji */
    transition: all 1.2s cubic-bezier(0.25, 1, 0.5, 1);
}

/* Stany przed animacją (niewidoczne i przesunięte) */
.hidden-bottom { opacity: 0; transform: translateY(60px); }
.hidden-left { opacity: 0; transform: translateX(-60px); }
.hidden-right { opacity: 0; transform: translateX(60px); }

/* Opóźnienie dla elementów ładujących się jeden po drugim */
.delay-1 { transition-delay: 0.2s; }

/* Stan widoczny (dodawany przez JavaScript) */
.show {
    opacity: 1;
    transform: translate(0, 0);
}

@keyframes glowPulse {
    0% { box-shadow: 0 0 10px rgba(223, 183, 108, 0.2); }
    50% { box-shadow: 0 0 25px rgba(223, 183, 108, 0.5); }
    100% { box-shadow: 0 0 10px rgba(223, 183, 108, 0.2); }
}

/* =========================================
   HEADER (Logo na środku + Kafelki)
   ========================================= */
header {
    display: flex; flex-direction: column; justify-content: center; align-items: center;
    padding: 20px; gap: 15px;
    background: rgba(28, 53, 45, 0.96); backdrop-filter: blur(12px); -webkit-backdrop-filter: blur(12px);
    border-bottom: 1px solid rgba(255, 255, 255, 0.1);
    position: sticky; top: 0; z-index: 1000; box-shadow: 0 10px 30px rgba(0, 0, 0, 0.3);
}

.logo { font-size: 32px; font-weight: bold; color: #dfb76c; letter-spacing: 2px; text-shadow: 2px 2px 4px rgba(0,0,0,0.5); }

nav { display: flex; justify-content: center; gap: 12px; width: 100%; }

nav a {
    color: #ffffff; text-decoration: none; font-size: 12px; text-transform: uppercase;
    letter-spacing: 1px; font-weight: bold; padding: 10px 22px;
    background: rgba(255, 255, 255, 0.04); border: 1px solid rgba(223, 183, 108, 0.25);
    border-radius: 6px; transition: all 0.3s ease; 
}
nav a:hover { background-color: #dfb76c; color: #1c352d; box-shadow: 0 0 15px rgba(223, 183, 108, 0.5); transform: translateY(-2px); }

/* =========================================
   SEKCJA HERO (Idealnie na środku)
   ========================================= */
.hero {
    min-height: 100vh; display: flex; justify-content: center; align-items: center; text-align: center;
    background: linear-gradient(rgba(15, 31, 26, 0.8), rgba(28, 53, 45, 0.7)), url("bg.jpg") center center / cover no-repeat;
    padding: 20px;
}

.hero-content {
    display: flex; flex-direction: column; justify-content: center; align-items: center;
    width: 100%; max-width: 800px;
}

.hero h1 { 
    font-size: clamp(34px, 5vw, 64px); margin-bottom: 20px; font-weight: 700; 
    background: linear-gradient(45deg, #f3ce87, #dfb76c, #b8860b);
    -webkit-background-clip: text; -webkit-text-fill-color: transparent; text-align: center;
}

.hero p { 
    font-size: clamp(16px, 2vw, 20px); color: #e0e0e0; margin-bottom: 40px; 
    max-width: 600px; line-height: 1.6; text-align: center;
}

.btn-book {
    display: inline-block; text-decoration: none; background: linear-gradient(135deg, #dfb76c, #c09a53); 
    color: #1c352d; padding: 16px 40px; font-size: 15px; font-weight: bold; text-transform: uppercase; 
    letter-spacing: 2px; border-radius: 50px; transition: all 0.4s ease; animation: glowPulse 3s infinite;
}
.btn-book:hover { transform: scale(1.05) translateY(-3px); box-shadow: 0 15px 25px rgba(223, 183, 108, 0.4); }

/* =========================================
   OPIS "O NAS"
   ========================================= */
.about-extended { padding: 120px 20px; background-color: #ffffff; }

.about-container { display: flex; justify-content: space-between; align-items: center; max-width: 1200px; margin: 0 auto; gap: 60px; }

.about-text { flex: 1.2; }
.about-text h2 { font-size: clamp(28px, 4vw, 42px); color: #1c352d; margin-bottom: 30px; position: relative; display: inline-block; }
.about-text h2::after { content: ''; position: absolute; left: 0; bottom: -10px; width: 60px; height: 3px; background-color: #dfb76c; }
.about-text p { font-size: clamp(16px, 1.8vw, 17px); line-height: 1.8; color: #555; }

.about-image { flex: 0.8; position: relative; display: flex; justify-content: center; }
.about-image::before { content: ''; position: absolute; top: -15px; left: -15px; width: 100%; height: 100%; border: 2px solid #dfb76c; border-radius: 12px; z-index: 0; }
.about-image img { width: 100%; max-width: 450px; height: auto; border-radius: 12px; box-shadow: 0 25px 50px rgba(0, 0, 0, 0.2); position: relative; z-index: 1; }

/* =========================================
   CENNIK
   ========================================= */
.services-section { padding: 100px 20px; background: #f8f9f8; text-align: center; }

.services-section h2 { font-size: clamp(28px, 4vw, 42px); margin-bottom: 40px; color: #1c352d; }

.price-list {
    display: flex; justify-content: space-between; gap: 50px; width: 100%; max-width: 950px; 
    margin: 0 auto; background: #ffffff; padding: 40px; border-radius: 16px; box-shadow: 0 15px 40px rgba(0, 0, 0, 0.04); 
}

.price-column { flex: 1; display: flex; flex-direction: column; }
.service-item { display: flex; justify-content: space-between; align-items: flex-end; padding: 12px 0; font-size: 15px; border-bottom: 1px solid rgba(0, 0, 0, 0.05); }
.service-item span:first-child { text-align: left; padding-right: 10px; color: #333; }
.price { font-weight: 700; color: #1c352d; font-size: 16px; white-space: nowrap; }

/* =========================================
   KONTAKT
   ========================================= */
.contact-section { padding: 120px 20px; background-color: #142721; color: white; text-align: center; }

.contact-section h2 { color: #dfb76c; margin-bottom: 50px; font-size: clamp(28px, 4vw, 42px); }

.contact-container { display: flex; justify-content: space-between; align-items: stretch; width: 100%; max-width: 1100px; margin: 0 auto; gap: 50px; }

.contact-map-box { flex: 1; max-width: 450px; width: 100%; min-height: 450px; }
.contact-map-box iframe { width: 100%; height: 100%; border: 0; border-radius: 12px; box-shadow: 0 15px 40px rgba(0,0,0,0.4); }

.contact-content-box { flex: 1.2; display: flex; flex-direction: column; justify-content: space-between; gap: 20px; }
.contact-info { text-align: left; background: rgba(255,255,255,0.02); padding: 20px; border-radius: 8px; border: 1px solid rgba(255,255,255,0.04); }
.contact-info h3 { color: #dfb76c; margin-bottom: 10px; font-size: 24px; }
.contact-info p { margin-bottom: 8px; color: #cccccc; font-size: 15px; }

.contact-form { display: flex; flex-direction: column; background: rgba(255, 255, 255, 0.03); backdrop-filter: blur(10px); -webkit-backdrop-filter: blur(10px); padding: 30px; border-radius: 12px; border: 1px solid rgba(255, 255, 255, 0.05); box-shadow: 0 20px 40px rgba(0,0,0,0.2); }
.contact-form input, .contact-form textarea { padding: 14px; margin-bottom: 15px; border: none; border-bottom: 2px solid rgba(223, 183, 108, 0.3); background-color: rgba(0,0,0,0.2); color: white; font-size: 15px; border-radius: 6px 6px 0 0; width: 100%; }
.contact-form input:focus, .contact-form textarea:focus { outline: none; border-bottom: 2px solid #dfb76c; background-color: rgba(0,0,0,0.4); }
.btn-submit { background: linear-gradient(135deg, #dfb76c, #c09a53); color: #1c352d; border: none; padding: 14px; font-size: 15px; font-weight: bold; cursor: pointer; text-transform: uppercase; letter-spacing: 1px; border-radius: 50px; }
.btn-submit:hover { transform: translateY(-2px); box-shadow: 0 10px 20px rgba(223, 183, 108, 0.3); }

/* =========================================
   RWD (RESPONSYWNOŚĆ)
   ========================================= */
@media (max-width: 992px) {
    header { padding: 15px; }
    .about-container { flex-direction: column; text-align: center; gap: 40px; }
    .about-text h2::after { left: 50%; transform: translateX(-50%); }
    .price-list { flex-direction: column; gap: 10px; padding: 25px; }
    .contact-container { flex-direction: column; align-items: center; gap: 40px; }
    .contact-map-box { max-width: 450px; width: 100%; min-height: 450px; }
    .contact-info { text-align: center; }
    .about-image::before { display: none; }
}
@media (max-width: 600px) {
    nav { flex-wrap: wrap; }
    nav a { font-size: 11px; padding: 8px 12px; flex: 1 1 40%; }
    .service-item { flex-direction: column; align-items: flex-start; gap: 4px; }
    .price { align-self: flex-end; }
    .contact-map-box { min-height: 300px; }
}
