@import url('https://fonts.googleapis.com/css2?family=Nunito:wght@400;600;700;800&display=swap');

* { margin: 0; padding: 0; box-sizing: border-box; }
body { font-family: 'Nunito', Arial, sans-serif; background: #e8f4ff; color: #1a2a3a; line-height: 1.7; }

header {
  background: linear-gradient(135deg, #0057c8 0%, #1a7fd4 100%);
  color: white; padding: 16px 24px;
  position: sticky; top: 0; z-index: 1000;
  box-shadow: 0 3px 14px rgba(0,70,200,0.3);
}
.header-inner {
  max-width: 1000px; margin: 0 auto;
  display: flex; align-items: center; justify-content: space-between; gap: 16px;
}
.brand { display: flex; align-items: center; gap: 12px; text-decoration: none; }
.brand img { height: 52px; border-radius: 8px; background: white; padding: 3px; }
.brand h1 { font-size: 18px; font-weight: 800; color: white; line-height: 1.2; }
.brand p  { font-size: 11px; color: white; opacity: 0.85; }

.desktop-nav ul { list-style: none; display: flex; gap: 2px; flex-wrap: wrap; }
.desktop-nav a {
  color: white; text-decoration: none; font-size: 13px; font-weight: 700;
  padding: 8px 11px; border-radius: 8px; transition: background 0.2s; display: block;
}
.desktop-nav a:hover  { background: rgba(255,255,255,0.18); }
.desktop-nav a.active { background: rgba(255,255,255,0.3); }

.burger-btn {
  background: none; border: none; cursor: pointer;
  display: none; flex-direction: column; gap: 5px; padding: 7px; border-radius: 7px;
}
.burger-btn span { display: block; width: 24px; height: 2.5px; background: white; border-radius: 2px; transition: 0.3s; }
.burger-btn.open span:nth-child(1) { transform: rotate(45deg) translate(5px,5px); }
.burger-btn.open span:nth-child(2) { opacity: 0; }
.burger-btn.open span:nth-child(3) { transform: rotate(-45deg) translate(5px,-5px); }

.overlay { display:none; position:fixed; inset:0; background:rgba(0,0,0,0.5); z-index:998; }
.overlay.active { display:block; }

.mobile-nav {
  position: fixed; top:0; right:-110%; width: min(300px,82vw); height:100vh;
  background:#003fa0; padding:88px 0 40px; z-index:999;
  display:flex; flex-direction:column;
  transition: right 0.35s cubic-bezier(.4,0,.2,1);
  box-shadow: -6px 0 24px rgba(0,0,0,0.25); overflow-y:auto;
}
.mobile-nav.open { right:0; }
.mobile-nav a {
  color:white; text-decoration:none; font-size:17px; font-weight:700;
  padding:15px 28px; border-left:3px solid transparent; transition:0.2s;
}
.mobile-nav a:hover  { background:rgba(255,255,255,0.12); border-left-color:#7dd3fc; }
.mobile-nav a.active { background:rgba(255,255,255,0.2);  border-left-color:#7dd3fc; }

main { max-width: 920px; margin: 0 auto; padding: 28px 18px 56px; animation: fadeUp 0.3s ease; }
@keyframes fadeUp { from { opacity:0; transform:translateY(10px); } to { opacity:1; transform:translateY(0); } }

.card {
  background: white; border-radius: 18px; padding: 34px 36px;
  margin-bottom: 22px; border: 1px solid #bdd9f5;
  box-shadow: 0 3px 14px rgba(0,80,200,0.08);
}
.card h2 { font-size: 23px; font-weight: 800; color: #0057c8; margin-bottom: 16px; }
.card p  { color: #2c3e50; margin-bottom: 10px; }
.card ul { padding-left: 22px; }
.card ul li { margin-bottom: 8px; color: #2c3e50; }

.hero-card {
  background: linear-gradient(135deg, #deeeff 0%, #cce4ff 100%);
  border-color: #8ec5f5; text-align: center; padding: 44px 36px;
}
.hero-card h2 { font-size: 30px; color: #003fa0; }
.hero-card p  { max-width: 620px; margin: 0 auto 10px; font-size: 16px; }

.btn {
  display: inline-block; background: #0057c8; color: white;
  padding: 12px 28px; border-radius: 10px; font-family: inherit;
  font-size: 15px; font-weight: 700; text-decoration: none;
  margin-top: 14px; transition: background 0.2s, transform 0.15s; border: none; cursor: pointer;
}
.btn:hover { background: #003fa0; transform: translateY(-1px); }

.event-item {
  background: #f0f7ff; border-radius: 13px; padding: 22px 24px;
  margin-bottom: 16px; border-left: 5px solid #1a7fd4;
}
.event-item h3  { color: #0057c8; font-size: 17px; font-weight: 800; margin-bottom: 5px; }
.event-item .date { font-size: 13px; font-weight: 700; color: #1a7fd4; margin-bottom: 9px; }

.grid2 { display: grid; grid-template-columns: 1fr 1fr; gap: 14px; margin-top: 14px; }
.grid3 { display: grid; grid-template-columns: repeat(auto-fill, minmax(155px,1fr)); gap: 13px; margin-top: 14px; }

.box { background: #f0f7ff; border-radius: 13px; padding: 18px 16px; border: 1px solid #bdd9f5; }
.box h3 { color: #0057c8; font-size: 15px; font-weight: 700; margin-bottom: 6px; }
.box p  { font-size: 14px; color: #334; margin: 4px 0; }
.box-link { text-decoration: none; display: block; transition: transform 0.15s, box-shadow 0.15s; }
.box-link:hover { transform: translateY(-2px); box-shadow: 0 6px 18px rgba(0,80,200,0.12); }

.club-pill {
  background: #e0f0ff; color: #003fa0; border-radius: 13px;
  padding: 16px 12px; text-align: center; font-size: 14px; font-weight: 700;
  border: 1px solid #8ec5f5; transition: transform 0.15s;
}
.club-pill:hover { transform: translateY(-2px); }
.club-pill .e { font-size: 28px; display: block; margin-bottom: 7px; }

.galerie-grid { display: grid; grid-template-columns: repeat(3,1fr); gap: 11px; margin-top: 14px; }
.gal-ph {
  background: linear-gradient(135deg,#cce4ff,#b0d4f5); border-radius: 11px;
  aspect-ratio: 4/3; display: flex; align-items: center; justify-content: center;
  font-size: 32px; border: 1px solid #8ec5f5;
}

.price-big { font-size: 42px; font-weight: 800; color: #0057c8; }
.badge {
  display: inline-block; background: #0057c8; color: white;
  font-size: 12px; font-weight: 700; padding: 3px 11px;
  border-radius: 20px; margin-left: 10px; vertical-align: middle;
}

.contact-box { background: #f0f7ff; border-radius: 13px; padding: 20px; border: 1px solid #bdd9f5; }
.contact-box p  { font-size: 15px; color: #334; margin: 5px 0; }
.contact-box a  { color: #0057c8; font-weight: 600; text-decoration: none; }
.contact-box a:hover { text-decoration: underline; }

footer {
  background: linear-gradient(135deg,#003fa0,#0066cc);
  color: white; text-align: center; padding: 30px 20px; font-size: 14px;
}
footer p { margin: 4px 0; opacity: 0.9; }
footer .footer-title { font-size: 18px; font-weight: 800; margin-bottom: 6px; opacity: 1; }

@media (max-width: 660px) {
  .desktop-nav { display: none !important; }
  .burger-btn  { display: flex !important; }
  .grid2, .galerie-grid { grid-template-columns: 1fr 1fr; }
  .card { padding: 22px 16px; }
  .hero-card { padding: 30px 16px; }
  .hero-card h2 { font-size: 22px; }
}
@media (min-width: 661px) {
  .burger-btn { display: none !important; }
}
