/* RESET */
* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

body {
    font-family: Arial, sans-serif;
    color: #111;
    background: #fff;
}

/* CONTAINER */
.container {
    width: 90%;
    max-width: 1200px;
    margin: 0 auto;
}

/* HEADER */
.site-header {
    width: 100%;
    padding: 15px 0;
    border-bottom: 1px solid #eee;
    background: #fff;
    position: sticky;
    top: 0;
    z-index: 1000;
}

.header-inner {
    display: flex;
    justify-content: space-between;
    align-items: center;
}

/* LOGO */
.logo-block {
    display: flex;
    align-items: center;
    gap: 12px;
}

.logo img {
    height: 42px;
    width: auto;
    display: block;
}

@media (max-width: 768px) {
    .logo img {
        height: 34px;
    }
}

/* BRAND TEXT */
.brand-text {
    display: flex;
    flex-direction: column;
    line-height: 1.2;
}

.brand-text strong {
    font-size: 16px;
    color: #111;
}

.drony-mark {
    font-size: 13px;
    color: #666;
}

/* DESKTOP MENU */
.main-nav ul {
    list-style: none;
    display: flex;
    gap: 30px;
}

.main-nav a {
    text-decoration: none;
    color: #111;
    font-size: 16px;
    transition: 0.2s;
}

.main-nav a:hover {
    color: #d40000;
}

/* HAMBURGER */
.hamburger {
    display: none;
    flex-direction: column;
    gap: 5px;
    background: none;
    border: none;
    cursor: pointer;
}

.hamburger span {
    width: 26px;
    height: 3px;
    background: #111;
    display: block;
}

/* MOBILE MENU */
.mobile-menu {
    display: none;
    position: fixed;
    top: 0;
    right: 0;
    width: 280px; 
    height: 100%;
    background: #fff;
    padding: 40px 20px;
    box-shadow: -2px 0 10px rgba(0,0,0,0.1);
    flex-direction: column;
    gap: 20px;
    z-index: 2000;
}

.mobile-menu a {
    display: block;
    font-size: 20px;
    text-decoration: none;
    color: #111;
    padding: 10px 0;
}

.close-mobile {
    font-size: 32px;
    background: none;
    border: none;
    cursor: pointer;
    margin-bottom: 20px;
}

/* RESPONSYWNOŚĆ HEADERA */
@media (max-width: 900px) {
    .main-nav {
        display: none;
    }

    .hamburger {
        display: flex;
    }
}

/* PREMIUM MOBILE FONT SIZE */
@media (max-width: 500px) {
    .mobile-menu a {
        font-size: 18px;
    }
}

/* FOOTER */
.site-footer {
    padding: 30px 0;
    text-align: center;
    border-top: 1px solid #eee;
    margin-top: 60px;
}

/* HERO */
.hero {
    width: 100%;
    padding: 120px 0;
    background: #f7f9fc;
    text-align: center;
}

.hero-inner {
    max-width: 800px;
    margin: 0 auto;
}

.hero h1 {
    font-size: 42px;
    font-weight: 700;
    margin-bottom: 10px;
    color: #111;
}

.hero h2 {
    font-size: 22px;
    font-weight: 400;
    margin-bottom: 25px;
    color: #333;
}

.hero-text {
    font-size: 18px;
    line-height: 1.6;
    margin-bottom: 35px;
    color: #444;
}

/* CTA BUTTON – czerwony lotniczy */
.hero-btn {
    display: inline-block;
    padding: 14px 32px;
    background: #d40000;
    color: #fff;
    text-decoration: none;
    font-size: 18px;
    border-radius: 6px;
    transition: 0.2s;
}

.hero-btn:hover {
    background: #a80000;
}

/* RESPONSYWNOŚĆ HERO */
@media (max-width: 768px) {
    .hero {
        padding: 80px 0;
    }

    .hero h1 {
        font-size: 32px;
    }

    .hero h2 {
        font-size: 18px;
    }

    .hero-text {
        font-size: 16px;
    }
}

/* DLACZEGO MY – PREMIUM 2x2 */
.why-us {
    padding: 80px 0;
    background: #ffffff;
}

.why-us h2 {
    text-align: center;
    font-size: 32px;
    margin-bottom: 50px;
    color: #111;
}

.why-grid {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 40px;
}

.why-item {
    background: #fafafa;
    padding: 30px;
    border-radius: 12px;
    border: 1px solid #eee;
    text-align: center;
    transition: 0.25s;
}

.why-item:hover {
    transform: translateY(-4px);
    box-shadow: 0 6px 20px rgba(0,0,0,0.06);
}

.why-icon {
    font-size: 42px;
    margin-bottom: 15px;
    opacity: 0.85;
}

.why-item h3 {
    font-size: 20px;
    margin-bottom: 12px;
    color: #d40000;
}

.why-item p {
    font-size: 16px;
    line-height: 1.6;
    color: #444;
}

/* RESPONSYWNOŚĆ */
@media (max-width: 768px) {
    .why-grid {
        grid-template-columns: 1fr;
        gap: 25px;
    }
}

/* SZKOLENIA – PREMIUM */
.trainings {
    padding: 80px 0;
    background: #f7f9fc;
}

.trainings h2 {
    text-align: center;
    font-size: 32px;
    margin-bottom: 50px;
    color: #111;
}

.trainings-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 40px;
}

.training-card {
    background: #fff;
    padding: 30px;
    border-radius: 12px;
    border: 1px solid #eee;
    text-align: center;
    transition: 0.25s;
}

.training-card:hover {
    transform: translateY(-4px);
    box-shadow: 0 6px 20px rgba(0,0,0,0.06);
}

.training-icon {
    font-size: 42px;
    margin-bottom: 15px;
    opacity: 0.85;
}

.training-card h3 {
    font-size: 20px;
    margin-bottom: 12px;
    color: #d40000;
}

.training-card p {
    font-size: 16px;
    line-height: 1.6;
    color: #444;
    margin-bottom: 20px;
}

.training-btn {
    display: inline-block;
    padding: 10px 24px;
    background: #d40000;
    color: #fff;
    text-decoration: none;
    border-radius: 6px;
    transition: 0.2s;
}

.training-btn:hover {
    background: #a80000;
}

/* RESPONSYWNOŚĆ */
@media (max-width: 992px) {
    .trainings-grid {
        grid-template-columns: 1fr 1fr;
    }
}

@media (max-width: 600px) {
    .trainings-grid {
        grid-template-columns: 1fr;
    }
}

/* INSTRUKTORZY – BLOK NA STRONIE GŁÓWNEJ */
.instructors {
    padding: 80px 0;
    background: #ffffff;
}

.instructors h2 {
    text-align: center;
    font-size: 32px;
    margin-bottom: 50px;
    color: #111;
}

.instructors .instructors-grid {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 40px;
}

.instructors .instructor-card {
    background: #fafafa;
    padding: 30px;
    border-radius: 12px;
    border: 1px solid #eee;
    text-align: center;
    transition: 0.25s;
}

.instructors .instructor-card:hover {
    transform: translateY(-4px);
    box-shadow: 0 6px 20px rgba(0,0,0,0.06);
}

.instructors .instructor-icon {
    font-size: 42px;
    margin-bottom: 15px;
    opacity: 0.85;
}

.instructors .instructor-card h3 {
    font-size: 20px;
    margin-bottom: 12px;
    color: #d40000;
}

.instructors .instructor-card p {
    font-size: 16px;
    line-height: 1.6;
    color: #444;
}

/* RESPONSYWNOŚĆ – blok na głównej */
@media (max-width: 768px) {
    .instructors .instructors-grid {
        grid-template-columns: 1fr;
        gap: 25px;
    }
}

/* HERO SZKOLENIA */
.trainings-hero {
    padding: 80px 0;
    background: #f7f9fc;
    text-align: center;
}

.trainings-hero h1 {
    font-size: 38px;
    margin-bottom: 20px;
}

.trainings-hero p {
    font-size: 18px;
    color: #444;
    max-width: 700px;
    margin: 0 auto;
}

/* SEKCJE SZKOLEŃ */
.training-section {
    padding: 80px 0;
    background: #fff;
}

.training-section.alt {
    background: #f7f7f7;
}

.training-section h2 {
    font-size: 30px;
    margin-bottom: 20px;
}

.training-section .intro {
    font-size: 17px;
    color: #444;
    margin-bottom: 40px;
    max-width: 700px;
}

.training-box {
    background: #fafafa;
    border: 1px solid #eee;
    padding: 25px;
    border-radius: 10px;
    margin-bottom: 30px;
}

.training-box h3 {
    color: #d40000;
    margin-bottom: 10px;
}

.training-box ul {
    margin: 0;
    padding-left: 20px;
}

.training-box ul li {
    margin-bottom: 6px;
}

/* CTA */
.cta-btn {
    display: inline-block;
    padding: 12px 28px;
    background: #d40000;
    color: #fff;
    text-decoration: none;
    border-radius: 6px;
    margin-top: 20px;
    transition: 0.2s;
}

.cta-btn:hover {
    background: #a80000;
}

.trainings-final-cta {
    padding: 80px 0;
    text-align: center;
    background: #111;
    color: #fff;
}

.trainings-final-cta h2 {
    font-size: 32px;
    margin-bottom: 10px;
}

.trainings-final-cta p {
    font-size: 18px;
    margin-bottom: 20px;
}

.trainings-final-cta .big {
    padding: 14px 36px;
    font-size: 18px;
}

/* RESPONSYWNOŚĆ – szkolenia */
@media (max-width: 768px) {
    .training-section .intro {
        font-size: 16px;
    }
}

/* HERO - instruktorzy (osobna podstrona) */
.instructors-hero {
    padding: 80px 0;
    text-align: center;
    background: #f7f9fc;
}

.instructors-hero h1 {
    font-size: 38px;
    margin-bottom: 10px;
}

.instructors-hero p {
    font-size: 18px;
    color: #444;
}

/* GRID 2×2 — styl C (podstrona instruktorzy) */
.instructors-grid-page .container {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(320px, 1fr));
    gap: 40px;
    padding: 60px 0;
    justify-content: center;
    justify-items: center;
}

.instructors-grid-page .instructor-card {
    background: #fff;
    padding: 30px;
    border-radius: 14px;
    box-shadow: 0 4px 20px rgba(0,0,0,0.06);
    text-align: center;
    transition: 0.3s;
    width: 100%;
    max-width: 420px;
}

.instructors-grid-page .instructor-card:hover {
    transform: translateY(-4px);
}

.instructors-grid-page .instructor-photo img {
    width: 160px;
    height: 160px;
    border-radius: 50%;
    object-fit: cover;
    margin-bottom: 20px;
    border: 4px solid #d40000;
}

/* PROFILE 1×1 — styl B */
.instructor-profile {
    padding: 80px 0;
    border-top: 1px solid #eee;
}

.instructor-profile.alt {
    background: #f7f7f7;
}

.profile-layout {
    display: flex;
    gap: 40px;
    align-items: flex-start;
    flex-wrap: wrap;
}

.profile-photo img {
    width: 220px;
    height: 220px;
    border-radius: 50%;
    object-fit: cover;
    border: 5px solid #d40000;
}

.profile-info h3 {
    color: #d40000;
    margin-top: 20px;
}

.profile-info ul {
    padding-left: 20px;
}

/* CTA – instruktorzy */
.instructors-final-cta {
    padding: 80px 0;
    text-align: center;
    background: #111;
    color: #fff;
}

.instructors-final-cta .big {
    padding: 14px 36px;
    font-size: 18px;
}

/* ============================
   KONTAKT — HERO
============================ */
.contact-hero {
    padding: 80px 0;
    text-align: center;
    background: #f7f9fc;
}

.contact-hero h1 {
    font-size: 38px;
    margin-bottom: 10px;
}

.contact-hero p {
    font-size: 18px;
    color: #444;
    max-width: 700px;
    margin: 0 auto;
}

/* ============================
   KONTAKT — DANE
============================ */
.contact-info {
    padding: 60px 0;
    text-align: center;
}

.contact-info p {
    font-size: 18px;
    color: #444;
    line-height: 1.6;
}

/* ============================
   KONTAKT — FORMULARZ
============================ */
.contact-form-section {
    padding: 60px 0;
    background: #f7f7f7;
}

.contact-box {
    background: #fff;
    padding: 40px;
    border-radius: 12px;
    box-shadow: 0 4px 20px rgba(0,0,0,0.06);
}

.contact-form {
    width: 100%;
}

.form-grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 20px;
}

.contact-form input,
.contact-form textarea {
    width: 100%;
    padding: 12px;
    border: 1px solid #ddd;
    border-radius: 6px;
    font-size: 16px;
    color: #111;
}

.contact-form textarea {
    resize: vertical;
}

.contact-form .cta-btn {
    margin-top: 20px;
}

/* RESPONSYWNOŚĆ */
@media (max-width: 768px) {
    .form-grid {
        grid-template-columns: 1fr;
    }

    .contact-box {
        padding: 25px;
    }
}

.contact-grid {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 30px;
    margin-top: 40px;
}

.contact-box-item {
    background: #fafafa;
    padding: 25px;
    border-radius: 12px;
    border: 1px solid #eee;
    text-align: center;
    box-shadow: 0 4px 20px rgba(0,0,0,0.04);
}

.contact-box-item h3 {
    font-size: 20px;
    color: #d40000;
    margin-bottom: 10px;
}

.contact-box-item p {
    font-size: 16px;
    color: #444;
    line-height: 1.6;
}

@media (max-width: 768px) {
    .contact-grid {
        grid-template-columns: 1fr;
    }
}

.contact-form select {
    width: 100%;
    padding: 12px;
    border: 1px solid #ddd;
    border-radius: 6px;
    font-size: 16px;
    color: #111;
    background: #fff;
}

/* IKONY W BOXACH */
.contact-icon {
    font-size: 36px;
    margin-bottom: 12px;
    opacity: 0.9;
}

/* MAPA */
.contact-map {
    padding: 60px 0;
}

/* SELECT */
.contact-form select {
    width: 100%;
    padding: 12px;
    border: 1px solid #ddd;
    border-radius: 6px;
    font-size: 16px;
    color: #111;
    background: #fff;
}

/* FADE-IN */
.fade-in {
    opacity: 0;
    transform: translateY(20px);
    animation: fadeInMove 0.6s ease-out forwards;
}

@keyframes fadeInMove {
    to {
        opacity: 1;
        transform: translateY(0);
    }
}

.contact-box-item {
    transition: transform 0.25s ease, box-shadow 0.25s ease;
}

.contact-box-item:hover {
    transform: translateY(-6px);
    box-shadow: 0 8px 26px rgba(0,0,0,0.08);
}

.contact-form input:focus,
.contact-form textarea:focus,
.contact-form select:focus {
    border-color: #d40000;
    box-shadow: 0 0 0 3px rgba(212,0,0,0.15);
    outline: none;
    transition: 0.2s;
}

#azl-map {
    width: 100%;
    height: 380px;
    border-radius: 12px;
    overflow: hidden;
}

.map-box {
    border-radius: 12px;
    overflow: hidden;
    box-shadow: 0 4px 20px rgba(0,0,0,0.06);
}
