
*{
margin:0;
padding:0;
box-sizing:border-box;
}

html{
scroll-behavior:smooth;
}

body{
font-family:'Inter',system-ui,sans-serif;
background:#e8f4fb;
color:#0d2b40;
line-height:1.7;
}

h1,h2,h3{
font-family:'Playfair Display',Georgia,serif;
font-weight:700;
letter-spacing:0.01em;
}

/* ========= STICKY NAVBAR ========= */

.navbar{
position:fixed;
top:0;
left:0;
right:0;
z-index:1000;
background:rgba(8,28,48,0.85);
backdrop-filter:blur(16px);
-webkit-backdrop-filter:blur(16px);
border-bottom:1px solid rgba(108,231,255,0.1);
transition:background 0.4s,box-shadow 0.4s;
}

.navbar-scrolled{
background:rgba(8,28,48,0.96);
box-shadow:0 2px 24px rgba(0,0,0,0.3);
}

.nav-inner{
display:flex;
justify-content:space-between;
align-items:center;
padding:12px 8%;
max-width:1400px;
margin:0 auto;
}

.logo{
display:flex;
align-items:center;
gap:12px;
flex-shrink:0;
}

.logo-img{
width:44px;
height:44px;
border-radius:50%;
object-fit:cover;
box-shadow:0 2px 12px rgba(108,231,255,0.3);
}

.logo h1{
font-size:26px;
color:#ffffff;
font-family:'Playfair Display',Georgia,serif;
font-weight:700;
letter-spacing:0.03em;
}

.logo p{
font-size:11px;
color:#a8d8ee;
letter-spacing:0.14em;
text-transform:uppercase;
font-family:'Inter',sans-serif;
font-weight:500;
}

.menu{
display:flex;
gap:6px;
list-style:none;
align-items:center;
}

.menu a{
text-decoration:none;
color:rgba(255,255,255,0.75);
font-weight:500;
font-size:13px;
letter-spacing:0.06em;
text-transform:uppercase;
transition:all 0.3s;
padding:8px 14px;
border-radius:8px;
}

.menu a:hover{
color:#ffffff;
background:rgba(108,231,255,0.1);
}

.menu a.active{
color:#ffffff;
background:rgba(91,216,248,0.15);
}

.nav-link-highlight{
position:relative;
background:linear-gradient(135deg,rgba(91,216,248,0.2),rgba(26,127,212,0.2)) !important;
border:1px solid rgba(91,216,248,0.3) !important;
color:#ffffff !important;
font-weight:600 !important;
}

.nav-link-highlight:hover{
background:linear-gradient(135deg,rgba(91,216,248,0.3),rgba(26,127,212,0.3)) !important;
}

.menu-toggle{
display:none;
background:none;
border:none;
cursor:pointer;
flex-direction:column;
gap:5px;
padding:6px;
z-index:10;
}

.menu-toggle span{
display:block;
width:24px;
height:2px;
background:#fff;
border-radius:2px;
transition:0.3s;
}

/* ========= TAB SYSTEM ========= */

.tab-content{
display:none;
}

.tab-content.tab-active{
display:block;
}

/* ========= HERO ========= */

.hero{
min-height:100vh;
padding:100px 8% 60px;
position:relative;
overflow:hidden;
display:flex;
align-items:center;
}

.hero::before,
.hero::after{
content:'';
position:absolute;
top:0;left:0;right:0;bottom:0;
background-size:cover;
background-position:center;
z-index:0;
}

.hero::before{
background:
linear-gradient(170deg,rgba(8,28,48,0.7) 0%,rgba(8,28,48,0.4) 100%),
url('https://images.unsplash.com/photo-1491002052546-bf38f186af56?q=80&w=1920&auto=format&fit=crop');
background-size:cover;
background-position:center;
animation:crossfade 10s ease-in-out infinite;
}

.hero::after{
background:
linear-gradient(170deg,rgba(8,28,48,0.65) 0%,rgba(8,28,48,0.35) 100%),
url('https://images.unsplash.com/photo-1542332213-31f87348057f?q=80&w=1920&auto=format&fit=crop');
background-size:cover;
background-position:center;
animation:crossfade 10s ease-in-out infinite;
animation-delay:-5s;
}

@keyframes crossfade{
0%,45%{opacity:1}
50%,95%{opacity:0}
100%{opacity:1}
}

.hero>*{
position:relative;
z-index:1;
}

.hero-content{
max-width:720px;
}

.hero-content h2{
font-size:58px;
line-height:1.1;
margin-bottom:24px;
color:#ffffff;
font-family:'Playfair Display',Georgia,serif;
font-weight:800;
}

.hero-content p{
font-size:18px;
color:rgba(200,223,233,0.9);
margin-bottom:40px;
font-weight:300;
line-height:1.8;
}

.hero-buttons{
display:flex;
gap:16px;
}

.btn-primary,
.btn-secondary{
padding:14px 30px;
border-radius:10px;
font-weight:600;
font-size:13px;
letter-spacing:0.08em;
text-decoration:none;
text-transform:uppercase;
transition:all 0.3s;
font-family:'Inter',sans-serif;
}

.btn-primary{
background:linear-gradient(135deg,#5bd8f8,#1a7fd4);
color:#ffffff;
box-shadow:0 4px 20px rgba(27,127,212,0.35);
}

.btn-primary:hover{
box-shadow:0 8px 30px rgba(27,127,212,0.5);
transform:translateY(-2px);
}

.btn-secondary{
border:2px solid rgba(108,231,255,0.5);
color:white;
background:rgba(255,255,255,0.05);
}

.btn-secondary:hover{
background:rgba(108,231,255,0.12);
border-color:rgba(108,231,255,0.8);
transform:translateY(-2px);
}

/* ========= SECTIONS ========= */

.section{
padding:90px 8%;
background:#f0f8fd;
}

.alt{
background:#e4f1fa;
}

.section h2{
font-size:42px;
margin-bottom:28px;
color:#0a2440;
font-weight:800;
}

.section-text{
margin-bottom:32px;
color:#4a7a96;
font-size:16px;
max-width:640px;
line-height:1.8;
}

/* ========= CARDS ========= */

.cards{
display:grid;
grid-template-columns:repeat(auto-fit,minmax(280px,1fr));
gap:22px;
}

.card{
background:#ffffff;
padding:30px;
border-radius:14px;
border:1px solid rgba(194,223,240,0.7);
transition:all 0.3s;
box-shadow:0 2px 16px rgba(14,80,130,0.05);
}

.card:hover{
transform:translateY(-4px);
border-color:#5bd8f8;
box-shadow:0 8px 32px rgba(27,127,212,0.12);
}

.card h3{
font-size:22px;
margin-bottom:12px;
color:#0a2440;
}

.card p{
color:#4a7a96;
font-size:14.5px;
line-height:1.7;
}

.card-img{
width:calc(100% + 60px);
height:200px;
object-fit:cover;
border-radius:13px 13px 0 0;
margin:-30px -30px 18px -30px;
display:block;
}

.card-icon{
font-size:30px;
margin-bottom:10px;
}

.card-link{
display:inline-block;
margin-top:14px;
font-size:13px;
font-weight:600;
color:#1a7fd4;
text-decoration:none;
letter-spacing:0.04em;
transition:0.3s;
}

.card-link:hover{
color:#5bd8f8;
}

/* ========= MAP ========= */

.map-container{
border-radius:14px;
overflow:hidden;
box-shadow:0 2px 16px rgba(14,80,130,0.06);
}

.map-container iframe{
display:block;
}

.map-legend{
display:flex;
gap:24px;
margin-bottom:18px;
flex-wrap:wrap;
}

.legend-item{
display:flex;
align-items:center;
gap:8px;
font-size:13px;
font-weight:600;
color:#0a2440;
}

.legend-dot{
width:14px;
height:14px;
border-radius:50%;
border:2.5px solid #fff;
box-shadow:0 1px 4px rgba(0,0,0,0.18);
flex-shrink:0;
}

.legend-blue{background:#1a7fd4}
.legend-green{background:#27ae60}
.legend-orange{background:#e67e22}

.map-marker{
background:transparent !important;
border:none !important;
}

/* ========= REGIONS ========= */

.region-heading{
font-size:26px;
color:#0a2440;
margin-top:48px;
margin-bottom:20px;
padding-bottom:10px;
border-bottom:2px solid #5bd8f8;
display:inline-block;
}

.region-heading:first-of-type{
margin-top:10px;
}

/* ========= CONTENT BOX ========= */

.content-box{
background:#ffffff;
padding:36px;
border-radius:14px;
border:1px solid rgba(194,223,240,0.7);
box-shadow:0 2px 16px rgba(14,80,130,0.05);
}

.content-box p{
color:#0a2440;
font-weight:600;
font-size:15px;
}

.content-box ul{
margin-top:18px;
padding-left:22px;
}

.content-box li{
margin-bottom:12px;
color:#4a7a96;
}

/* ========= TRAINING ========= */

.training-grid{
display:grid;
grid-template-columns:repeat(auto-fit,minmax(240px,1fr));
gap:22px;
margin-top:24px;
}

.training-item{
background:#f0f8fd;
padding:24px;
border-radius:12px;
border:1px solid rgba(194,223,240,0.7);
}

.training-item strong{
display:block;
margin-bottom:8px;
font-size:16px;
color:#0a2440;
font-family:'Playfair Display',Georgia,serif;
font-weight:700;
}

.training-item p{
color:#4a7a96;
font-size:14px;
margin:0;
line-height:1.7;
}

/* ========= CALENDAR ========= */

.btn-back{
display:inline-block;
margin-bottom:32px;
padding:10px 22px;
border-radius:10px;
font-size:13px;
font-weight:600;
letter-spacing:0.06em;
text-transform:uppercase;
text-decoration:none;
color:#1a7fd4;
background:rgba(27,127,212,0.08);
border:1px solid rgba(27,127,212,0.2);
transition:all 0.3s;
font-family:'Inter',sans-serif;
}

.btn-back:hover{
background:rgba(27,127,212,0.15);
border-color:rgba(27,127,212,0.4);
}

.calendar-timeline{
display:flex;
flex-direction:column;
gap:0;
}

.calendar-month{
border-left:3px solid #5bd8f8;
padding-left:28px;
padding-bottom:32px;
position:relative;
}

.calendar-month:last-child{
padding-bottom:0;
}

.month-label{
font-family:'Playfair Display',Georgia,serif;
font-size:26px;
font-weight:700;
color:#0a2440;
margin-bottom:18px;
position:relative;
}

.month-label::before{
content:'';
position:absolute;
left:-35.5px;
top:8px;
width:14px;
height:14px;
border-radius:50%;
background:#5bd8f8;
border:3px solid #e4f1fa;
}

.calendar-events{
display:flex;
flex-direction:column;
gap:14px;
}

.calendar-event{
background:#ffffff;
padding:24px 28px;
border-radius:14px;
border:1px solid rgba(194,223,240,0.7);
box-shadow:0 2px 12px rgba(14,80,130,0.05);
transition:all 0.3s;
}

.calendar-event:hover{
transform:translateY(-3px);
border-color:#5bd8f8;
box-shadow:0 8px 24px rgba(27,127,212,0.12);
}

.calendar-event-highlight{
border-left:4px solid #1a7fd4;
background:linear-gradient(135deg,#f6fbff,#eaf5fd);
}

.event-date{
font-size:12px;
font-weight:700;
color:#1a7fd4;
text-transform:uppercase;
letter-spacing:0.1em;
margin-bottom:6px;
font-family:'Inter',sans-serif;
}

.event-info h3{
font-size:21px;
margin-bottom:6px;
color:#0a2440;
}

.event-location{
font-size:13px;
font-weight:600;
color:#5bd8f8;
margin-bottom:8px;
letter-spacing:0.03em;
}

.event-info p{
color:#4a7a96;
font-size:14px;
line-height:1.7;
}

.event-fb-link{
display:inline-block;
margin-top:12px;
font-size:13px;
font-weight:600;
color:#1a7fd4;
text-decoration:none;
letter-spacing:0.03em;
transition:0.3s;
padding:6px 14px;
border-radius:8px;
background:rgba(27,127,212,0.07);
}

.event-fb-link:hover{
background:rgba(27,127,212,0.15);
color:#0a2440;
}

.event-fb-link::before{
content:'📘 ';
}

.calendar-note{
margin-top:32px;
padding:18px 24px;
background:rgba(27,127,212,0.05);
border-radius:12px;
border:1px dashed rgba(91,216,248,0.5);
}

.calendar-note p{
font-size:13px;
color:#4a7a96;
font-style:italic;
}

/* ========= FOOTER ========= */

.footer{
padding:50px 8%;
text-align:center;
background:#daeef9;
border-top:1px solid #b8d8ec;
}

.footer-logo{
width:46px;
height:46px;
border-radius:50%;
object-fit:cover;
margin-bottom:12px;
opacity:0.85;
}

.footer h3{
font-size:24px;
margin-bottom:8px;
color:#0a2440;
letter-spacing:0.04em;
}

.footer p{
color:#4a7a96;
font-size:14px;
letter-spacing:0.04em;
}

.social-links{
display:flex;
justify-content:center;
gap:16px;
margin-top:20px;
}

.social-link{
display:inline-block;
padding:10px 22px;
border-radius:10px;
background:linear-gradient(135deg,#5bd8f8,#1a7fd4);
color:#ffffff;
text-decoration:none;
font-weight:600;
font-size:13px;
letter-spacing:0.05em;
transition:all 0.3s;
box-shadow:0 2px 12px rgba(27,127,212,0.25);
}

.social-link:hover{
transform:translateY(-2px);
box-shadow:0 6px 20px rgba(27,127,212,0.4);
}

.contact-info{
display:flex;
justify-content:center;
gap:24px;
margin-top:18px;
flex-wrap:wrap;
}

.contact-link{
color:#0a2440;
text-decoration:none;
font-size:14px;
font-weight:500;
transition:color 0.3s;
}

.contact-link:hover{
color:#1a7fd4;
}

/* ========= MINI CALENDAR GRID ========= */

.mini-calendar-section{
margin-bottom:42px;
}

.mini-calendar-title{
font-family:'Playfair Display',Georgia,serif;
font-size:28px;
font-weight:700;
color:#0a2440;
margin-bottom:8px;
}

.mini-calendar-subtitle{
font-size:13px;
color:#4a7a96;
margin-bottom:24px;
}

.mini-calendars-grid{
display:grid;
grid-template-columns:repeat(auto-fill,minmax(220px,1fr));
gap:18px;
}

.mini-cal{
background:#ffffff;
border-radius:12px;
border:1px solid rgba(194,223,240,0.7);
box-shadow:0 2px 10px rgba(14,80,130,0.05);
padding:16px;
}

.mini-cal-header{
font-family:'Playfair Display',Georgia,serif;
font-size:16px;
font-weight:700;
color:#0a2440;
text-align:center;
margin-bottom:10px;
padding-bottom:8px;
border-bottom:2px solid #5bd8f8;
}

.mini-cal-grid{
display:grid;
grid-template-columns:repeat(7,1fr);
gap:2px;
text-align:center;
}

.mini-cal-dow{
font-size:10px;
font-weight:700;
color:#1a7fd4;
text-transform:uppercase;
letter-spacing:0.05em;
padding:4px 0;
font-family:'Inter',sans-serif;
}

.mini-cal-day{
font-size:12px;
font-family:'Inter',sans-serif;
font-weight:400;
color:#4a7a96;
padding:4px 0;
border-radius:6px;
transition:all 0.2s;
position:relative;
cursor:default;
line-height:1.4;
}

.mini-cal-day.empty{
visibility:hidden;
}

.mini-cal-day.has-event{
background:linear-gradient(135deg,#5bd8f8,#1a7fd4);
color:#ffffff;
font-weight:700;
cursor:pointer;
box-shadow:0 1px 6px rgba(27,127,212,0.3);
}

.mini-cal-day.has-event-highlight{
background:linear-gradient(135deg,#ff9f43,#e74c3c);
color:#ffffff;
font-weight:700;
cursor:pointer;
box-shadow:0 1px 6px rgba(231,76,60,0.35);
}

.mini-cal-day.has-event:hover,
.mini-cal-day.has-event-highlight:hover{
transform:scale(1.25);
z-index:2;
box-shadow:0 3px 12px rgba(27,127,212,0.4);
}

.mini-cal-day .day-tooltip{
display:none;
position:absolute;
bottom:calc(100% + 6px);
left:50%;
transform:translateX(-50%);
background:#0a2440;
color:#ffffff;
font-size:11px;
font-weight:500;
padding:6px 10px;
border-radius:8px;
white-space:nowrap;
z-index:100;
box-shadow:0 4px 16px rgba(0,0,0,0.3);
max-width:220px;
white-space:normal;
text-align:center;
line-height:1.4;
}

.mini-cal-day .day-tooltip::after{
content:'';
position:absolute;
top:100%;
left:50%;
transform:translateX(-50%);
border:5px solid transparent;
border-top-color:#0a2440;
}

.mini-cal-day:hover .day-tooltip{
display:block;
}

.timeline-heading{
font-family:'Playfair Display',Georgia,serif;
font-size:24px;
font-weight:700;
color:#0a2440;
margin-bottom:22px;
padding-bottom:10px;
border-bottom:2px solid rgba(91,216,248,0.3);
}

/* ========= CALENDAR TAB HEADER ========= */

#tab-kalendarz .section{
padding-top:110px;
}

/* ========= SCROLL ANIMATIONS ========= */

.fade-in{
opacity:0;
transform:translateY(24px);
transition:opacity 0.6s ease,transform 0.6s ease;
}

.fade-in.visible{
opacity:1;
transform:translateY(0);
}

/* ========= ABOUT SECTION ========= */

.about-grid{
display:grid;
grid-template-columns:1.2fr 1fr;
gap:40px;
align-items:start;
}

.about-lead{
font-family:'Playfair Display',Georgia,serif;
font-size:24px;
font-weight:700;
color:#0a2440;
margin-bottom:18px;
line-height:1.4;
}

.about-text p{
color:#4a7a96;
font-size:15px;
line-height:1.8;
margin-bottom:14px;
}

.about-stats{
display:flex;
gap:32px;
margin-top:28px;
padding-top:24px;
border-top:2px solid rgba(91,216,248,0.3);
}

.stat{
display:flex;
flex-direction:column;
align-items:center;
}

.stat-number{
font-family:'Playfair Display',Georgia,serif;
font-size:38px;
font-weight:800;
color:#1a7fd4;
line-height:1;
}

.stat-label{
font-size:12px;
font-weight:600;
color:#4a7a96;
text-transform:uppercase;
letter-spacing:0.08em;
margin-top:4px;
}

.about-values{
display:flex;
flex-direction:column;
gap:16px;
}

.value-item{
background:#ffffff;
padding:22px 24px;
border-radius:12px;
border:1px solid rgba(194,223,240,0.7);
box-shadow:0 2px 12px rgba(14,80,130,0.05);
transition:all 0.3s;
}

.value-item:hover{
transform:translateX(6px);
border-color:#5bd8f8;
box-shadow:0 4px 20px rgba(27,127,212,0.1);
}

.value-icon{
font-size:22px;
margin-right:10px;
}

.value-item strong{
font-family:'Playfair Display',Georgia,serif;
font-size:17px;
color:#0a2440;
}

.value-item p{
color:#4a7a96;
font-size:13.5px;
line-height:1.7;
margin-top:6px;
}

/* ========= CONTACT FORM ========= */

.contact-grid{
display:grid;
grid-template-columns:1.4fr 1fr;
gap:36px;
align-items:start;
}

.contact-form-wrapper{
background:#ffffff;
padding:36px;
border-radius:14px;
border:1px solid rgba(194,223,240,0.7);
box-shadow:0 2px 16px rgba(14,80,130,0.05);
}

.hidden-field{
display:none;
}

.form-group{
margin-bottom:20px;
}

.form-group label{
display:block;
font-size:13px;
font-weight:600;
color:#0a2440;
margin-bottom:6px;
letter-spacing:0.04em;
text-transform:uppercase;
font-family:'Inter',sans-serif;
}

.form-group input,
.form-group select,
.form-group textarea{
width:100%;
padding:12px 16px;
border:1.5px solid rgba(194,223,240,0.9);
border-radius:10px;
font-size:15px;
font-family:'Inter',sans-serif;
color:#0a2440;
background:#f8fcff;
transition:all 0.3s;
outline:none;
}

.form-group input:focus,
.form-group select:focus,
.form-group textarea:focus{
border-color:#5bd8f8;
box-shadow:0 0 0 3px rgba(91,216,248,0.15);
background:#ffffff;
}

.form-group textarea{
resize:vertical;
min-height:120px;
}

.form-group select{
cursor:pointer;
appearance:none;
background-image:url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' width='12' height='12' viewBox='0 0 12 12'%3E%3Cpath fill='%234a7a96' d='M6 8L1 3h10z'/%3E%3C/svg%3E");
background-repeat:no-repeat;
background-position:right 14px center;
padding-right:36px;
}

.btn-submit{
width:100%;
padding:14px 30px;
border:none;
border-radius:10px;
font-weight:600;
font-size:14px;
letter-spacing:0.06em;
text-transform:uppercase;
cursor:pointer;
background:linear-gradient(135deg,#5bd8f8,#1a7fd4);
color:#ffffff;
box-shadow:0 4px 20px rgba(27,127,212,0.3);
transition:all 0.3s;
font-family:'Inter',sans-serif;
}

.btn-submit:hover{
box-shadow:0 8px 30px rgba(27,127,212,0.45);
transform:translateY(-2px);
}

.form-success{
text-align:center;
padding:40px 20px;
}

.form-success span{
display:inline-flex;
align-items:center;
justify-content:center;
width:60px;
height:60px;
border-radius:50%;
background:linear-gradient(135deg,#5bd8f8,#1a7fd4);
color:#ffffff;
font-size:28px;
font-weight:700;
margin-bottom:16px;
}

.form-success h3{
font-family:'Playfair Display',Georgia,serif;
font-size:24px;
color:#0a2440;
margin-bottom:8px;
}

.form-success p{
color:#4a7a96;
font-size:15px;
}

.contact-sidebar{
display:flex;
flex-direction:column;
gap:20px;
}

.contact-card{
background:#ffffff;
padding:28px;
border-radius:14px;
border:1px solid rgba(194,223,240,0.7);
box-shadow:0 2px 12px rgba(14,80,130,0.05);
}

.contact-card h3{
font-size:18px;
color:#0a2440;
margin-bottom:16px;
}

.contact-detail{
display:flex;
align-items:center;
gap:12px;
padding:10px 0;
border-bottom:1px solid rgba(194,223,240,0.5);
}

.contact-detail:last-child{
border-bottom:none;
}

.contact-detail span{
font-size:18px;
flex-shrink:0;
}

.contact-detail a{
color:#1a7fd4;
text-decoration:none;
font-weight:500;
font-size:14px;
transition:color 0.3s;
}

.contact-detail a:hover{
color:#0a2440;
}

.contact-social{
display:flex;
flex-direction:column;
gap:10px;
}

.contact-social-link{
display:block;
padding:10px 18px;
border-radius:10px;
background:linear-gradient(135deg,rgba(91,216,248,0.1),rgba(26,127,212,0.1));
color:#1a7fd4;
text-decoration:none;
font-weight:600;
font-size:13px;
letter-spacing:0.04em;
transition:all 0.3s;
text-align:center;
border:1px solid rgba(27,127,212,0.15);
}

.contact-social-link:hover{
background:linear-gradient(135deg,#5bd8f8,#1a7fd4);
color:#ffffff;
transform:translateY(-2px);
box-shadow:0 4px 16px rgba(27,127,212,0.3);
}

/* ========= CTA SECTION ========= */

.cta-section{
padding:80px 8%;
background:linear-gradient(135deg,#0a2440 0%,#0d3a5c 50%,#0a2440 100%);
text-align:center;
position:relative;
overflow:hidden;
}

.cta-section::before{
content:'';
position:absolute;
top:-50%;
left:-25%;
width:150%;
height:200%;
background:radial-gradient(ellipse at center,rgba(91,216,248,0.08) 0%,transparent 70%);
pointer-events:none;
}

.cta-content{
position:relative;
z-index:1;
max-width:640px;
margin:0 auto;
}

.cta-content h2{
font-family:'Playfair Display',Georgia,serif;
font-size:38px;
font-weight:800;
color:#ffffff;
margin-bottom:16px;
line-height:1.2;
}

.cta-content p{
color:rgba(200,223,233,0.85);
font-size:17px;
margin-bottom:32px;
line-height:1.7;
}

.cta-buttons{
display:flex;
gap:16px;
justify-content:center;
flex-wrap:wrap;
}

/* ========= RESPONSIVE ========= */

@media(max-width:900px){

.nav-inner{
padding:10px 5%;
}

.menu-toggle{
display:flex;
position:absolute;
right:5%;
top:18px;
}

.menu{
display:none;
flex-direction:column;
width:100%;
text-align:center;
gap:4px;
padding:16px 0;
background:rgba(10,36,64,0.95);
border-radius:12px;
backdrop-filter:blur(12px);
position:absolute;
top:66px;
left:0;
right:0;
margin:0 5%;
width:90%;
}

.menu.open{
display:flex;
}

.menu a{
padding:10px 16px;
font-size:13px;
}

.hero{
padding:90px 6% 50px;
min-height:90vh;
}

.hero-content h2{
font-size:36px;
}

.hero-buttons{
flex-direction:column;
}

.section{
padding:60px 5%;
}

.section h2{
font-size:32px;
}

.region-heading{
font-size:22px;
}

.training-grid{
grid-template-columns:1fr;
}

.card-img{
height:160px;
}

.social-links{
flex-direction:column;
align-items:center;
}

.calendar-month{
padding-left:20px;
}

.month-label{
font-size:22px;
}

.month-label::before{
left:-27.5px;
width:12px;
height:12px;
}

.calendar-event{
padding:18px 20px;
}

.event-info h3{
font-size:19px;
}

#tab-kalendarz .section{
padding-top:90px;
}

.mini-calendars-grid{
grid-template-columns:repeat(auto-fill,minmax(180px,1fr));
gap:12px;
}

.mini-cal{
padding:12px;
}

.mini-cal-header{
font-size:14px;
}

.mini-cal-day{
font-size:11px;
padding:3px 0;
}

.mini-cal-dow{
font-size:9px;
}

.mini-calendar-title{
font-size:22px;
}

.timeline-heading{
font-size:20px;
}

.about-grid{
grid-template-columns:1fr;
gap:28px;
}

.about-stats{
gap:20px;
justify-content:center;
}

.stat-number{
font-size:30px;
}

.contact-grid{
grid-template-columns:1fr;
gap:24px;
}

.contact-form-wrapper{
padding:24px;
}

.cta-section{
padding:60px 6%;
}

.cta-content h2{
font-size:28px;
}

.cta-buttons{
flex-direction:column;
align-items:center;
}

}
