html {
    scroll-behavior: smooth;
}

:root {
    --primary: #0093E9;
    --secondary: #80D0C7;
    --glass-bg: rgba(255, 255, 255, 0.45);
    --glass-border: rgba(255, 255, 255, 0.6);
    --text: #2d3436;
    --bg-gradient: linear-gradient(135deg, #f5f7fa 0%, #c3cfe2 100%);
}

* { margin: 0; padding: 0; box-sizing: border-box; }

body {
    font-family: 'Plus Jakarta Sans', sans-serif;
    color: var(--text);
    background: var(--bg-gradient);
    min-height: 100vh;
    line-height: 1.6;
    overflow-x: hidden;
}

.liquid-blob {
    position: fixed; top: -10%; right: -10%; width: 600px; height: 600px;
    background: radial-gradient(circle, rgba(0,147,233,0.2) 0%, rgba(128,208,199,0.1) 100%);
    border-radius: 50%; z-index: -1; filter: blur(80px); animation: move 20s infinite alternate;
}

.liquid-blob-2 {
    position: fixed; bottom: -10%; left: -10%; width: 500px; height: 500px;
    background: radial-gradient(circle, rgba(128,208,199,0.2) 0%, rgba(0,147,233,0.1) 100%);
    border-radius: 50%; z-index: -1; filter: blur(80px); animation: move 15s infinite alternate-reverse;
}

@keyframes move { from { transform: translate(0, 0); } to { transform: translate(100px, 100px); } }

.container { max-width: 1200px; margin: 0 auto; padding: 0 20px; }

.glass {
    background: var(--glass-bg);
    backdrop-filter: blur(12px);
    -webkit-backdrop-filter: blur(12px);
    border: 1px solid var(--glass-border);
    border-radius: 24px;
    box-shadow: 0 8px 32px 0 rgba(31, 38, 135, 0.07);
    transition: all 0.3s ease; /* Płynność dla wszystkich kart glass */
}

.glass-nav {
    background: rgba(255, 255, 255, 0.6);
    backdrop-filter: blur(10px);
    height: 80px; display: flex; align-items: center;
    position: fixed; width: 100%; top: 0; z-index: 1000;
    border-bottom: 1px solid var(--glass-border);
}

.nav-container { display: flex; justify-content: space-between; align-items: center; width: 100%; }
.logo { font-weight: 800; font-size: 1.5rem; color: var(--primary); }
.logo span { color: var(--text); }

.nav-links { display: flex; list-style: none; }
.nav-links a { 
    text-decoration: none; 
    color: var(--text); 
    font-weight: 600; 
    margin: 0 20px; 
    font-size: 0.9rem; 
    transition: 0.3s ease; 
    display: inline-block; /* Ważne dla transformacji scale */
}

/* POWIĘKSZANIE LINKÓW MENU */
.nav-links a:hover { 
    color: var(--primary); 
    transform: scale(1.1); 
}

.btn-cta {
    background: var(--primary); color: white; text-decoration: none;
    padding: 12px 25px; border-radius: 14px; font-weight: 700;
    box-shadow: 0 4px 15px rgba(0,147,233,0.3); 
    transition: 0.3s ease;
    display: inline-block;
}

/* POWIĘKSZANIE PRZYCISKU CTA */
.btn-cta:hover {
    transform: scale(1.05);
    box-shadow: 0 6px 20px rgba(0,147,233,0.4);
}

.hero { padding: 180px 0 100px; }
.hero-content { display: grid; grid-template-columns: 1fr 1fr; align-items: center; gap: 50px; }
.badge { background: rgba(0,147,233,0.1); color: var(--primary); padding: 8px 16px; border-radius: 50px; font-size: 0.8rem; font-weight: 700; text-transform: uppercase; }
.hero h1 { font-size: 3.5rem; line-height: 1.1; margin: 20px 0; }
.hero h1 span { color: var(--primary); }
.hero-btns { margin-top: 40px; display: flex; align-items: center; gap: 20px; }

.btn-main { 
    background: var(--text); color: white; padding: 18px 35px; border-radius: 16px; 
    text-decoration: none; font-weight: 700; 
    transition: 0.3s ease;
    display: inline-block;
}

/* POWIĘKSZANIE PRZYCISKU GŁÓWNEGO */
.btn-main:hover {
    transform: scale(1.05);
    filter: brightness(1.2);
}

.btn-link { 
    text-decoration: none; color: var(--text); font-weight: 700; 
    transition: 0.3s ease;
    display: inline-block;
}

/* POWIĘKSZANIE LINKU "CENNIK" */
.btn-link:hover {
    transform: scale(1.05);
    color: var(--primary);
}

.hero-image { position: relative; }
.hero-image img { width: 100%; border-radius: 30px; box-shadow: 0 20px 40px rgba(0,0,0,0.1); }

.air-effect {
    position: absolute; top: 50%; left: 50%; width: 100%; height: 100%;
    transform: translate(-50%, -50%);
    background: radial-gradient(circle, rgba(255,255,255,0.4) 0%, transparent 70%);
    filter: blur(20px); animation: pulse-air 4s infinite; pointer-events: none;
}

@keyframes pulse-air { 0%, 100% { opacity: 0.3; transform: translate(-50%, -55%) scale(1); } 50% { opacity: 0.7; transform: translate(-50%, -45%) scale(1.1); } }

.section-title { text-align: center; font-size: 2.5rem; margin-bottom: 50px; }
.price-grid { display: grid; grid-template-columns: repeat(auto-fit, minmax(280px, 1fr)); gap: 25px; } 
.price-card { padding: 40px; text-align: center; transition: 0.3s ease; }

/* POWIĘKSZANIE KART CENNIKA */
.price-card:hover { 
    transform: translateY(-10px) scale(1.02); 
    background: rgba(255,255,255,0.6); 
}

.price-card.featured { border: 2px solid var(--primary); }
.price { font-size: 4rem; font-weight: 800; margin: 20px 0; }
.price span { font-size: 1.5rem; }
.travel-info { text-align: center; margin-top: 30px; color: #636e72; }

/* FAQ */
.faq-accordion { max-width: 800px; margin: 0 auto;  }
.faq-item { margin-bottom: 15px; cursor: pointer; transition: 0.3s ease; overflow: hidden; }

/* POWIĘKSZANIE ELEMENTU FAQ */
.faq-item:hover {
    transform: scale(1.01);
}

.faq-question { padding: 25px; display: flex; justify-content: space-between; align-items: center; }
.faq-answer { max-height: 0; padding: 0 25px; transition: 0.4s ease; opacity: 0; }
.faq-item.active .faq-answer { max-height: 200px; padding-bottom: 25px; opacity: 1; }
.faq-item.active .faq-question i { transform: rotate(180deg); }

/* FOOTER */
.glass-footer { background: rgba(255, 255, 255, 0.8); backdrop-filter: blur(20px); padding: 80px 0 20px; margin-top: 100px; border-top: 1px solid var(--glass-border); }
.footer-grid { display: grid; grid-template-columns: 2fr 1fr 1.5fr; gap: 60px; margin-bottom: 50px; }
.footer-info p { margin: 20px 0; font-size: 0.9rem; }
.footer-links ul { list-style: none; }
.footer-links a { text-decoration: none; color: var(--text); font-size: 0.9rem; line-height: 2.5; transition: 0.3s; display: inline-block; }

/* POWIĘKSZANIE LINKÓW W STOPCE */
.footer-links a:hover {
    color: var(--primary);
    transform: translateX(5px) scale(1.05);
}

.footer-contact p { margin-bottom: 15px; font-size: 0.9rem; }
.footer-contact i { color: var(--primary); margin-right: 10px; }

.socials a { 
    font-size: 1.5rem; margin-right: 15px; color: var(--primary); 
    display: inline-block; 
    transition: 0.3s ease; 
}

/* POWIĘKSZANIE IKON SOCIAL MEDIA */
.socials a:hover {
    transform: scale(1.3);
}

.footer-bottom { text-align: center; padding-top: 30px; border-top: 1px solid rgba(0,0,0,0.05); font-size: 0.8rem; }

/* WEBIZONE CREDIT */
.webizone-credit {
    margin-top: 8px;
    font-size: 11px;
    color: #444; /* Subtelny kolor */
    letter-spacing: 0.5px;
    text-transform: uppercase;
}

.webizone-credit a {
    color: #666;
    text-decoration: none;
    font-weight: 700;
    transition: 0.3s;
}

.webizone-credit a:hover {
    color: var(--blue); /* Zmienia się na niebieski przy najechaniu */
    text-shadow: 0 0 8px var(--blue);
}

.webizone-credit span { transition: 0.5s; }
.webizone-credit a:hover {
    transform: scale(1.0);
}
.webizone-credit a:hover span {
    color: var(--primary);
    text-shadow: 0 0 10px rgba(0,147,233,0.8), 0 0 20px rgba(0,147,233,0.5);
}


@media (max-width: 768px) {
    .hero-content { grid-template-columns: 1fr; text-align: center; }
    .hero h1 { font-size: 2.5rem; }
    .hero-btns { justify-content: center; }
    .footer-grid { grid-template-columns: 1fr; gap: 40px; }
    .nav-links { display: none; }
}


/* DODATKOWE STYLE DLA SEKCJI DLACZEGO WARTO */
.benefits {
    padding: 100px 0;
}

.benefits-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
    gap: 20px;
}

.benefit-card {
    padding: 40px 30px;
    text-align: center;
    transition: 0.3s ease; /* Płynność powiększania */
}

.benefit-card i {
    font-size: 2.5rem;
    color: var(--primary);
    margin-bottom: 20px;
    display: inline-block;
}

.benefit-card h3 {
    margin-bottom: 15px;
    font-weight: 800;
}

.benefit-card p {
    font-size: 0.9rem;
    color: #636e72;
}

/* POWIĘKSZANIE KART DLACZEGO WARTO */
.benefit-card:hover {
    transform: scale(1.05);
    background: rgba(255, 255, 255, 0.6);
    box-shadow: 0 12px 40px rgba(0,0,0,0.1);
}

/* Upewnienie się, że scroll-behavior jest w html dla płynnych przejść */
html {
    scroll-behavior: smooth;
}


