/* ═══════════════════════════════════════════════════
   Golf Club Chateau St. Havel – podle nahled-redesign.html
   Inter (Google Fonts) | Font Awesome 6.5
═══════════════════════════════════════════════════ */
*, *::before, *::after { box-sizing: border-box; margin: 0; padding: 0; }

:root {
  --yellow:  #DDD142;
  --yellow-h:#CCC035;
  --black:   #111111;
  --gray-bg: #F5F5ED;
  --gray-lt: #F8F8F4;
  --gray-bd: #E8E8E8;
  --text:    #111111;
  --text-m:  #555555;
  --text-l:  #888888;
  --white:   #FFFFFF;
  --radius:  12px;
  --font:    'Inter', system-ui, sans-serif;
  --max:     1280px;
}

html { scroll-behavior: smooth; }
body { font-family: var(--font); color: var(--text); background: var(--white); -webkit-font-smoothing: antialiased; line-height: 1.6; }
img  { display: block; max-width: 100%; }
a    { color: inherit; text-decoration: none; }
ul   { list-style: none; }
button { font-family: var(--font); }

.container { max-width: var(--max); margin: 0 auto; padding: 0 40px; }

/* ── TLAČÍTKA ─── */
.btn {
  display: inline-flex; align-items: center; gap: 8px;
  font-family: var(--font); font-size: 16px; font-weight: 500;
  padding: 11px 22px; border-radius: 999px; cursor: pointer;
  border: none; transition: .18s ease; white-space: nowrap; text-decoration: none;
}
.btn-yellow       { background: var(--yellow); color: var(--black); }
.btn-yellow:hover { background: var(--yellow-h); }
.btn-black        { background: var(--black); color: var(--white); }
.btn-black:hover  { background: #333; }
.btn-outline      { background: transparent; color: var(--black); border: 1.5px solid var(--black); }
.btn-outline:hover{ background: var(--black); color: var(--white); }
.btn-sm  { font-size: 17px; padding: 14px 20px; }
.btn-xs  { font-size: 10px; padding: 5px 11px; }
.btn-lg  { font-size: 15px; padding: 14px 28px; }

/* ── NAV ─── */
.nav {
  position: sticky; top: 0; z-index: 100;
  background: var(--white);
  border-bottom: 1px solid var(--gray-bd);
  padding: 0 40px; height: 80px;
  display: flex; align-items: center; justify-content: space-between;
}
.nav-logo { display: flex; align-items: center; gap: 10px; }
.nav-logo img { height: 75px; width: auto; }
.nav-links { display: flex; gap: 4px; }
.nav-links a { font-size: 17px; font-weight: 400; color: var(--text-m); padding: 7px 14px; border-radius: 8px; transition: .15s; }
.nav-links a:hover, .nav-links a.active { color: var(--black); background: var(--gray-lt); }

/* Dropdown */
.nav-item { position: relative; }
.nav-item > a, .nav-item > span {
  font-size: 17px; font-weight: 400; color: var(--text-m);
  padding: 7px 14px; border-radius: 8px; transition: .15s;
  display: flex; align-items: center; gap: 5px; cursor: pointer; user-select: none;
}
.nav-item > a:hover, .nav-item > span:hover,
.nav-item.active > a { color: var(--black); background: var(--gray-lt); }
.drop-arrow { font-size: 10px; opacity: .5; transition: transform .2s; }
.nav-item:hover .drop-arrow { transform: rotate(180deg); }

.nav-dropdown {
  position: absolute; top: calc(100% + 8px); left: 50%;
  transform: translateX(-50%) translateY(-4px);
  background: var(--white); border: 1px solid var(--gray-bd);
  border-radius: var(--radius);
  box-shadow: 0 16px 48px rgba(0,0,0,.12);
  min-width: 220px; padding: 8px 0;
  opacity: 0; pointer-events: none;
  transition: opacity .15s, transform .15s;
}
.nav-item:hover .nav-dropdown {
  opacity: 1; pointer-events: auto;
  transform: translateX(-50%) translateY(0);
}
/* Neviditelný most přes mezeru – zabraňuje ztrátě hoveru při přejíždění myší */
.nav-dropdown::before {
  content: ''; position: absolute;
  top: -8px; left: 0; right: 0; height: 8px;
}
.nav-dropdown a {
  display: block; padding: 10px 20px;
  font-size: 14px; color: var(--text-m); transition: .12s;
}
.nav-dropdown a:hover { background: var(--gray-lt); color: var(--black); padding-left: 26px; }

.nav-right { display: flex; align-items: center; gap: 17px; }

/* Hamburger */
.hamburger {
  display: none; flex-direction: column; justify-content: center; gap: 5px;
  width: 40px; height: 40px; padding: 8px;
  background: none; border: none; cursor: pointer; flex-shrink: 0;
}
.hamburger span { display: block; width: 100%; height: 2px; background: var(--black); border-radius: 2px; transition: transform .25s, opacity .2s; }
.hamburger.open span:nth-child(1) { transform: translateY(7px) rotate(45deg); }
.hamburger.open span:nth-child(2) { opacity: 0; }
.hamburger.open span:nth-child(3) { transform: translateY(-7px) rotate(-45deg); }

/* Mobilní nav */
.mobile-nav { display: none; background: var(--white); border-top: 1px solid var(--gray-bd); }
.mobile-nav.open { display: block; }
.mobile-nav-inner { padding: 12px 28px 24px; }
.mobile-nav-item { border-bottom: 1px solid var(--gray-bd); }
.mobile-nav-item > a, .mobile-nav-item > button {
  display: flex; align-items: center; justify-content: space-between;
  width: 100%; padding: 13px 0; font-size: 16px; font-weight: 500;
  color: var(--text-m); cursor: pointer; background: none; border: none;
  transition: color .15s; font-family: var(--font); text-align: left;
}
.mobile-nav-item > a:hover, .mobile-nav-item > button:hover { color: var(--black); }
.mobile-sub { padding: 4px 0 10px 14px; display: none; }
.mobile-sub.open { display: block; }
.mobile-sub a { display: block; padding: 8px 0; font-size: 14px; color: var(--text-l); }
.mobile-sub a:hover { color: var(--black); }
.mobile-cta { padding-top: 18px; display: block; border-bottom: none !important; }

/* ── HERO ─── */
.hero { padding: 48px 40px 0; }
.hero-image {
  width: 100%; height: 420px;
  border-radius: 20px; overflow: hidden;
  position: relative; background: #2A4A35;
}
.hero-image img {
  width: 100%; height: 100%; object-fit: cover;
  transition: transform 6s ease;
}
.hero-image:hover img { transform: scale(1.04); }

.hero-overlay-card {
  position: absolute; bottom: 20px; left: 20px;
  background: rgba(4,4,4,.49);
  color: white; backdrop-filter: blur(1px);
  border-radius: var(--radius); padding: 18px 20px;
  max-width: 650px;
  box-shadow: 0 8px 32px rgba(0,0,0,.15);
}
.hero-h1 { font-size: clamp(32px, 4vw, 52px); color: var(--white); font-weight: 700; line-height: 1; letter-spacing: -.03em; }
.hero-h1 span { font-size: clamp(24px, 3vw, 40px); font-weight: 700; line-height: .5; letter-spacing: -.03em; }
.hero-overlay-card p { font-size: 13px; font-weight: 600; color: var(--white); margin-bottom: 12px; line-height: 1.4; margin-top: 30px; }

.hero-overlay-card-right {
  position: absolute; bottom: 20px; right: 20px;
  background: rgba(4,4,4,.49);
  color: white; backdrop-filter: blur(1px);
  border-radius: var(--radius); padding: 18px 20px;
  max-width: 300px;
  box-shadow: 0 8px 32px rgba(0,0,0,.15);
}
.hero-sub { font-size: 13px; color: var(--white); max-width: 260px; line-height: 1.7; margin-bottom: 14px; }

/* ── STATS BAR ─── */
.stats-bar {
  background: var(--white);
  border-top: 3px solid var(--yellow);
  border-bottom: 1px solid var(--gray-bd);
  display: grid; grid-template-columns: repeat(4, 1fr);
}
.stat { padding: 20px 32px; display: flex; align-items: center; gap: 14px; border-right: 1px solid var(--gray-bd); }
.stat:last-child { border-right: none; }
.stat-ico { width: 38px; height: 38px; border-radius: 50%; background: var(--gray-lt); display: flex; align-items: center; justify-content: center; color: var(--black); font-size: 16px; flex-shrink: 0; }
.stat-val { font-size: 18px; font-weight: 800; color: var(--black); display: block; line-height: 1.1; }
.stat-lbl { font-size: 11px; color: var(--text-l); font-weight: 500; letter-spacing: .03em; }

/* ── SEKCE ─── */
.section { padding: 72px 0; }
.section-alt { background: var(--gray-bg); }
.sec-head { text-align: center; margin-bottom: 48px; }
.sec-head h2 { font-size: clamp(24px, 3vw, 36px); font-weight: 800; letter-spacing: -.025em; margin-bottom: 8px; }
.sec-head p  { font-size: 16px; color: var(--text-l); }

/* ── AREA GRID ─── */
.area-grid { display: grid; grid-template-columns: repeat(3, 1fr); gap: 16px; }
.area-card { display: flex; align-items: stretch; border: 1.5px solid var(--gray-bd); border-radius: 14px; overflow: hidden; cursor: pointer; transition: .2s; background: var(--white); }
.area-card:hover { border-color: #aaa; box-shadow: 0 4px 20px rgba(0,0,0,.08); }
.area-card.active { background: #1a1a1a; border-color: #1a1a1a; }
.area-thumb { flex-shrink: 0; padding: 10px 0 10px 12px; }
.area-thumb img { width: 100px; height: 100px; object-fit: cover; display: block; border-radius: 10px; }
.area-body { padding: 20px 24px; flex: 1; display: flex; flex-direction: column; justify-content: center; gap: 14px; }
.area-body h4 { font-size: 18px; font-weight: 400; color: var(--text); line-height: 1.3; }
.area-card.active .area-body h4 { color: var(--white); }
.area-btn { font-size: 12px; font-weight: 600; background: transparent; color: var(--black); padding: 7px 18px; border-radius: 999px; display: inline-flex; align-items: center; gap: 6px; border: 1.5px solid #ccc; transition: .15s; align-self: flex-start; white-space: nowrap; text-decoration: none; }
.area-btn:hover { background: var(--black); color: var(--white); border-color: var(--black); }
.area-card.active .area-btn { background: var(--white); color: var(--black); border-color: var(--white); }
.area-card.active .area-btn:hover { background: #eee; }
.area-scroll-indicator { display: flex; justify-content: center; margin-top: 24px; }
.area-scroll-pill { width: 64px; height: 5px; background: var(--black); border-radius: 999px; }

/* ── COURSES ─── */
.courses-layout { display: grid; grid-template-columns: 1fr 1.1fr 1fr; gap: 24px; align-items: start; }
.courses-left h2 { font-size: clamp(26px, 3.5vw, 44px); font-weight: 800; line-height: 1.1; letter-spacing: -.03em; margin-bottom: 16px; }
.courses-left p  { font-size: 16px; color: var(--text-m); line-height: 1.75; margin-bottom: 24px; }
.courses-photo { border-radius: 18px; overflow: hidden; height: 380px; background: #3D6B4F; }
.courses-photo img { width: 100%; height: 100%; object-fit: cover; object-position: top center; }
.mini-stack { display: flex; flex-direction: column; gap: 12px; }
.mini-card { background: var(--gray-lt); border-radius: var(--radius); overflow: hidden; }
.mini-card-img { height: 100px; background: #4A6235; }
.mini-card-img img { width: 100%; height: 100%; object-fit: cover; }
.mini-card-body { padding: 12px 14px; }
.mini-card-tag { font-size: 9px; font-weight: 700; color: var(--text-l); letter-spacing: .08em; text-transform: uppercase; margin-bottom: 4px; display: flex; align-items: center; gap: 4px; }
.mini-card-body h5 { font-size: 16px; font-weight: 700; color: var(--black); margin-bottom: 3px; line-height: 1.3; }
.mini-card-body p  { font-size: 16px; color: var(--text-m); line-height: 1.55; }
.join-pill { background: var(--gray-lt); border-radius: var(--radius); padding: 12px 14px; display: flex; align-items: center; gap: 10px; }
.join-pill-ico { width: 32px; height: 32px; border-radius: 50%; background: var(--yellow); display: flex; align-items: center; justify-content: center; font-size: 14px; flex-shrink: 0; }
.join-pill p { font-size: 14px; color: var(--text-m); flex: 1; line-height: 1.5; }

/* ── EVENT BANNER ─── */
.event-banner { position: relative; height: 360px; border-radius: 20px; overflow: hidden; display: flex; align-items: center; margin: 0 0px; background: #1C3829; }
.event-banner-bg { position: absolute; inset: 0; }
.event-banner-bg img { width: 100%; height: 100%; object-fit: cover; }
.event-ov { position: absolute; inset: 0; background: linear-gradient(90deg, rgba(10,20,12,.8) 20%, rgba(10,20,12,.08) 100%); }
.event-body { position: relative; z-index: 1; padding: 56px; max-width: 480px; }
.event-body h2 { font-size: clamp(28px, 4vw, 48px); font-weight: 800; color: var(--white); line-height: 1.1; letter-spacing: -.03em; margin-bottom: 14px; }
.event-body p  { font-size: 16px; color: rgba(255,255,255,.65); max-width: 400px; line-height: 1.7; margin-bottom: 24px; }
.event-stat { position: absolute; right: 56px; bottom: 56px; z-index: 1; text-align: center; background: var(--white); padding: 10px 16px; border-radius: var(--radius); }
.event-stat .num { font-size: 52px; font-weight: 800; color: var(--black); display: block; line-height: 1; }
.event-stat .lbl { font-size: 13px; color: rgba(2,2,2,.5); font-weight: 500; margin-top: 4px; }

/* ── PRICING CARDS ─── */
.pricing-grid { display: grid; grid-template-columns: repeat(3, 1fr); gap: 24px; margin-bottom: 40px; }
.pricing-card { background: var(--white); border-radius: 20px; padding: 36px 30px 32px; display: flex; flex-direction: column; border: 1.5px solid #D4E0C8; transition: .2s; }
.pricing-card.featured { background: #31a12c; border-color: #23791f; }
.pricing-accent { width: 48px; height: 3px; background: var(--yellow); border-radius: 999px; margin-bottom: 26px; }
.pricing-title { font-size: 16px; font-weight: 800; letter-spacing: .1em; text-transform: uppercase; color: #2A5039; text-align: center; margin-bottom: 10px; }
.pricing-card.featured .pricing-title { color: var(--yellow); }
.pricing-desc { font-size: 13px; color: var(--text-m); text-align: center; line-height: 1.65; margin-bottom: 22px; }
.pricing-card.featured .pricing-desc { color: rgba(255,255,255,.5); }
.pricing-amount { display: flex; align-items: flex-start; justify-content: center; gap: 2px; margin-bottom: 22px; }
.pricing-currency { font-size: 20px; font-weight: 700; color: #2A5039; margin-top: 10px; }
.pricing-card.featured .pricing-currency { color: var(--white); }
.pricing-number { font-size: 64px; font-weight: 800; line-height: 1; letter-spacing: -.04em; color: var(--black); }
.pricing-card.featured .pricing-number { color: var(--white); }
.pricing-period { font-size: 12px; color: #2A5039; font-weight: 600; align-self: flex-end; margin-bottom: 10px; margin-left: 3px; }
.pricing-card.featured .pricing-period { color: var(--white); }
.pricing-divider { height: 1px; background: #C8D8BC; margin-bottom: 22px; }
.pricing-card.featured .pricing-divider { background: rgba(255,255,255,.15); }
.pricing-features { list-style: none; display: flex; flex-direction: column; gap: 12px; margin-bottom: 30px; flex: 1; }
.pricing-features li { display: flex; align-items: center; gap: 10px; font-size: 13px; font-weight: 500; color: #2A4A35; }
.pricing-features li.inactive { color: #9EB89A; }
.pricing-features li::before { content: '•'; font-size: 20px; line-height: 1; flex-shrink: 0; color: #2A5039; }
.pricing-features li.inactive::before { color: #B8CEB4; }
.pricing-card.featured .pricing-features li { color: rgba(255,255,255,.9); }
.pricing-card.featured .pricing-features li.inactive { color: rgba(255,255,255,.28); }
.pricing-card.featured .pricing-features li::before { color: var(--yellow); }
.pricing-btn { display: block; width: 100%; padding: 14px 20px; border-radius: 12px; border: none; cursor: pointer; font-family: var(--font); font-size: 14px; font-weight: 700; text-align: center; transition: .2s; text-decoration: none; background: #31a12c; color: var(--white); }
.pricing-btn:hover { background: #1C3829; }
.pricing-card.featured .pricing-btn { background: var(--yellow); color: var(--black); }
.pricing-card.featured .pricing-btn:hover { background: var(--yellow-h); }
.prod-cta { text-align: center; }

/* ── NEWS ─── */
.news-layout { display: grid; grid-template-columns: 1.2fr 1fr; gap: 24px; }
.news-feat-img { height: 260px; width: 100%; border-radius: var(--radius); overflow: hidden; background: #3D6B4F; margin-bottom: 16px; display: block; }
.news-feat-img img { width: 100%; height: 100%; object-fit: cover; transition: transform .5s; }
.news-feat-img:hover img { transform: scale(1.04); }
.news-date { font-size: 11px; color: var(--text-l); font-weight: 500; margin-bottom: 6px; }
.news-feat h3 { font-size: 19px; font-weight: 700; color: var(--black); line-height: 1.3; margin-bottom: 12px; letter-spacing: -.01em; }
.news-list { display: flex; flex-direction: column; gap: 16px; }
.news-item { display: grid; grid-template-columns: 80px 1fr; gap: 12px; align-items: start; }
.news-item-img { width: 80px; height: 64px; border-radius: 8px; overflow: hidden; background: #4A7C59; flex-shrink: 0; display: block; }
.news-item-img img { width: 100%; height: 100%; object-fit: cover; }
.news-item h4 { font-size: 12.5px; font-weight: 700; color: var(--black); line-height: 1.35; margin-bottom: 8px; }

/* ── PARTNER GRID ─── */
.partner-grid { display: grid; grid-template-columns: repeat(3, 1fr); gap: 16px; }
.partner-card { height: 280px; position: relative; overflow: hidden; border-radius: 20px; display: flex; align-items: flex-end; background: #2A4A35; cursor: pointer; text-decoration: none; }
.partner-bg { position: absolute; inset: 0; background-size: cover; background-position: center; transition: transform .5s ease; }
.partner-card:hover .partner-bg { transform: scale(1.05); }
.partner-ov { position: absolute; inset: 0; background: linear-gradient(to top, rgba(10,20,12,.66) 10%, rgba(10,20,12,0) 100%); transition: .3s; }
.partner-card:hover .partner-ov { background: linear-gradient(to top, rgba(10,20,12,.66) 10%, rgba(10,20,12,.17) 100%); }
.partner-body { position: relative; z-index: 1; padding: 24px; }
.partner-tag { font-size: 9px; font-weight: 700; color: rgba(255,255,255,.5); letter-spacing: .12em; text-transform: uppercase; margin-bottom: 6px; }
.partner-body h3 { font-size: 20px; font-weight: 700; color: var(--white); margin-bottom: 4px; }
.partner-body p { font-size: 12px; color: rgba(255,255,255,.6); }
.partner-arrow { position: absolute; top: 20px; right: 20px; z-index: 1; width: 36px; height: 36px; border: 1px solid rgba(255,255,255,.25); border-radius: 50%; display: flex; align-items: center; justify-content: center; color: rgba(255,255,255,.5); font-size: 13px; transition: .2s; }
.partner-card:hover .partner-arrow { border-color: var(--yellow); color: var(--yellow); }

/* ── FOOTER ─── */
.footer { background: var(--black); padding: 56px 40px 28px; margin: 0 40px 40px; border-radius: 20px; }
.footer-grid { display: grid; grid-template-columns: 1.6fr 1fr 1fr 1fr; gap: 48px; padding-bottom: 40px; border-bottom: 1px solid rgba(255,255,255,.08); margin-bottom: 24px; }
.footer-logo { display: flex; align-items: center; gap: 10px; font-weight: 800; font-size: 16px; color: var(--white); margin-bottom: 14px; }
.footer-logo img { height: 52px; width: auto; opacity: .9; }
.footer-logo-ico { width: 30px; height: 30px; border-radius: 50%; border: 2px solid rgba(255,255,255,.3); display: flex; align-items: center; justify-content: center; font-size: 11px; color: var(--white); }
.footer p { font-size: 15px; color: rgba(255,255,255,.4); line-height: 1.75; margin-bottom: 16px; }
.footer h5 { font-size: 15px; font-weight: 700; color: var(--white); margin-bottom: 14px; letter-spacing: .05em; text-transform: uppercase; }
.footer ul { display: flex; flex-direction: column; gap: 9px; }
.footer ul li { font-size: 15px; color: rgba(255,255,255,.45); }
.footer ul li a { transition: .15s; }
.footer ul li a:hover { color: var(--yellow); }
.footer-social { display: flex; gap: 8px; margin-top: 4px; }
.soc { width: 32px; height: 32px; border-radius: 50%; border: 1px solid rgba(255,255,255,.15); display: flex; align-items: center; justify-content: center; color: rgba(255,255,255,.4); font-size: 13px; transition: .15s; }
.soc:hover { border-color: var(--yellow); color: var(--yellow); }
.footer-bottom { display: flex; justify-content: space-between; align-items: center; }
.footer-bottom span { font-size: 11px; color: rgba(255,255,255,.25); }
.footer-links { display: flex; gap: 20px; }
.footer-links a { font-size: 11px; color: rgba(255,255,255,.25); transition: .15s; }
.footer-links a:hover { color: rgba(255,255,255,.6); }

/* ── STRÁNKY – generické ─── */
.page-hero { background: var(--gray-bg); padding: 48px 0 40px; border-bottom: 1px solid var(--gray-bd); }
.page-hero h1 { font-size: clamp(28px, 4vw, 48px); font-weight: 800; letter-spacing: -.03em; color: var(--black); }
.page-hero p  { font-size: 16px; color: var(--text-m); margin-top: 8px; }
.page-main { padding: 56px 0 80px; min-height: 50vh; }
.page-content { max-width: 820px; }
.page-content h1 { font-size: clamp(22px, 3vw, 36px); font-weight: 800; letter-spacing: -.02em; margin-bottom: 16px; }
.page-content h2 { font-size: clamp(18px, 2.5vw, 26px); font-weight: 700; margin-top: 36px; margin-bottom: 12px; }
.page-content h3 { font-size: 18px; font-weight: 700; margin-top: 24px; margin-bottom: 8px; }
.page-content p  { font-size: 16px; color: var(--text-m); line-height: 1.8; margin-bottom: 16px; }
.page-content ul, .page-content ol { padding-left: 22px; margin-bottom: 16px; color: var(--text-m); }
.page-content li { list-style: disc; line-height: 1.7; margin-bottom: 6px; font-size: 15px; }
.page-content ol li { list-style: decimal; }
.page-content a { color: var(--black); font-weight: 600; text-decoration: underline; text-underline-offset: 3px; }
.page-content img { border-radius: var(--radius); margin: 12px 0 20px; }
.page-content table { width: 100%; border-collapse: collapse; margin: 20px 0; font-size: 14px; }
.page-content th, .page-content td { padding: 11px 16px; border: 1px solid var(--gray-bd); text-align: left; }
.page-content th { background: var(--gray-lt); font-weight: 600; }
.page-content blockquote { border-left: 3px solid var(--yellow); margin: 24px 0; padding: 12px 20px; background: var(--gray-lt); border-radius: 0 var(--radius) var(--radius) 0; font-size: 16px; color: var(--text-m); font-style: italic; }

/* ── KONTAKTNÍ FORMULÁŘ ─── */
.contact-section { display: grid; grid-template-columns: 1fr 1.3fr; gap: 48px; align-items: start; }
.contact-info h2 { font-size: 28px; font-weight: 800; letter-spacing: -.02em; margin-bottom: 20px; }
.contact-info-item { display: flex; gap: 14px; align-items: flex-start; padding: 14px 0; border-bottom: 1px solid var(--gray-bd); }
.contact-info-item:last-child { border-bottom: none; }
.contact-info-ico { width: 36px; height: 36px; border-radius: 50%; background: var(--gray-lt); display: flex; align-items: center; justify-content: center; font-size: 14px; flex-shrink: 0; margin-top: 2px; }
.contact-info-text strong { font-size: 11px; font-weight: 700; color: var(--text-l); letter-spacing: .04em; text-transform: uppercase; display: block; margin-bottom: 3px; }
.contact-info-text span, .contact-info-text a { font-size: 15px; color: var(--text-m); line-height: 1.55; }
.contact-form-wrap { background: var(--gray-lt); border-radius: 20px; padding: 36px; }
.contact-form-wrap h3 { font-size: 20px; font-weight: 800; margin-bottom: 24px; color: var(--black); }
.form-row  { display: grid; grid-template-columns: 1fr 1fr; gap: 16px; }
.form-group { margin-bottom: 18px; }
.form-group.full { grid-column: 1 / -1; }
.form-label { display: block; font-size: 13px; font-weight: 600; color: var(--black); margin-bottom: 6px; }
.form-label .req, .req { color: #e03; }
.platba-reminder { margin-bottom: 28px; color: var(--text-m); max-width: 440px; }
.form-input, .form-textarea { width: 100%; padding: 12px 16px; border: 1.5px solid var(--gray-bd); border-radius: var(--radius); font-family: var(--font); font-size: 15px; color: var(--black); background: var(--white); transition: border-color .15s; }
.form-input:focus, .form-textarea:focus { outline: none; border-color: var(--black); }
.form-textarea { min-height: 130px; resize: vertical; line-height: 1.6; }
.form-gdpr { display: flex; gap: 12px; align-items: flex-start; margin-bottom: 22px; }
.form-gdpr input[type="checkbox"] { width: 18px; height: 18px; flex-shrink: 0; margin-top: 3px; cursor: pointer; accent-color: var(--black); }
.form-gdpr label { font-size: 13px; color: var(--text-m); line-height: 1.6; }
.form-gdpr a { color: var(--black); font-weight: 600; }
.form-honeypot { position: absolute; left: -9999px; }

/* ── PAGINACE ─── */
.pagination { display: flex; gap: 6px; justify-content: center; flex-wrap: wrap; margin-top: 40px; }
.pagination a, .pagination span { display: flex; align-items: center; justify-content: center; min-width: 40px; height: 40px; padding: 0 10px; border-radius: 999px; font-size: 14px; font-weight: 600; transition: .15s; text-decoration: none; color: var(--text-m); border: 1.5px solid var(--gray-bd); background: var(--white); }
.pagination a:hover { border-color: var(--black); color: var(--black); }
.pagination .pg-active { background: var(--black); color: var(--white); border-color: var(--black); }
.pagination .pg-dots  { border: none; background: none; color: var(--text-l); min-width: 24px; padding: 0; letter-spacing: .05em; }

/* ── NEWS archiv ─── */
.news-archive { display: grid; grid-template-columns: repeat(3, 1fr); gap: 24px; }
.news-card { border: 1.5px solid var(--gray-bd); border-radius: var(--radius); overflow: hidden; background: var(--white); transition: box-shadow .2s, transform .2s; }
.news-card:hover { box-shadow: 0 8px 32px rgba(0,0,0,.09); transform: translateY(-3px); }
.news-card-img { height: 196px; overflow: hidden; background: var(--gray-lt); display: block; }
.news-card-img img { width: 100%; height: 100%; object-fit: cover; transition: transform .5s; }
.news-card:hover .news-card-img img { transform: scale(1.05); }
.news-card-body { padding: 20px; }
.news-card-date  { font-size: 11px; color: var(--text-l); margin-bottom: 8px; }
.news-card-title { font-size: 16px; font-weight: 700; color: var(--black); line-height: 1.3; margin-bottom: 10px; }
.news-card-excerpt { font-size: 13px; color: var(--text-m); line-height: 1.65; margin-bottom: 16px; }
.news-detail-meta { display: flex; gap: 20px; flex-wrap: wrap; font-size: 13px; color: var(--text-l); margin-bottom: 24px; }
.news-detail-cover { width: 100%; max-height: 480px; object-fit: cover; border-radius: var(--radius); margin-bottom: 32px; display: block; }
.news-detail-body { max-width: 760px; }
.news-detail-body p  { font-size: 16px; color: var(--text-m); line-height: 1.8; margin-bottom: 18px; }
.news-detail-body h2 { font-size: 22px; font-weight: 700; margin-top: 32px; margin-bottom: 12px; }
.news-detail-body h3 { font-size: 18px; font-weight: 700; margin-top: 22px; margin-bottom: 10px; }
.news-detail-body img { border-radius: var(--radius); margin-bottom: 18px; }

/* ── GALERIE ─── */
.gallery-list-grid { display: grid; grid-template-columns: repeat(3, 1fr); gap: 24px; }
.gallery-album-card { border: 1.5px solid var(--gray-bd); border-radius: var(--radius); overflow: hidden; background: var(--white); transition: box-shadow .2s, transform .2s; cursor: pointer; text-decoration: none; display: block; }
.gallery-album-card:hover { box-shadow: 0 8px 28px rgba(0,0,0,.1); transform: translateY(-3px); }
.gallery-album-thumb { height: 200px; overflow: hidden; background: var(--gray-lt); }
.gallery-album-thumb img { width: 100%; height: 100%; object-fit: cover; transition: transform .5s; }
.gallery-album-card:hover .gallery-album-thumb img { transform: scale(1.06); }
.gallery-album-body { padding: 16px 18px; }
.gallery-album-title { font-size: 16px; font-weight: 700; color: var(--black); margin-bottom: 4px; }
.gallery-album-meta  { font-size: 12px; color: var(--text-l); }
.gallery-photo-grid { display: grid; grid-template-columns: repeat(4, 1fr); gap: 8px; }
.gallery-photo-item { aspect-ratio: 1; overflow: hidden; border-radius: 8px; background: var(--gray-lt); cursor: pointer; }
.gallery-photo-item img { width: 100%; height: 100%; object-fit: cover; transition: transform .4s; }
.gallery-photo-item:hover img { transform: scale(1.08); }

/* ── 404 ─── */
.not-found { min-height: 55vh; display: flex; align-items: center; justify-content: center; text-align: center; padding: 80px 20px; flex-direction: column; }
.not-found-code { font-size: 120px; font-weight: 800; color: var(--yellow); line-height: 1; display: block; }
.not-found h1 { font-size: 32px; font-weight: 800; color: var(--black); margin-bottom: 12px; }
.not-found p  { font-size: 16px; color: var(--text-m); margin-bottom: 28px; max-width: 380px; }

/* ── VÝSLEDEK FORMULÁŘE ─── */
.result-page { min-height: 50vh; display: flex; align-items: center; justify-content: center; text-align: center; padding: 80px 20px; flex-direction: column; }
.result-ico { font-size: 56px; margin-bottom: 20px; display: block; }
.result-ico.ok    { color: var(--yellow); }
.result-ico.error { color: #e03; }
.result-page h1 { font-size: 32px; font-weight: 800; color: var(--black); margin-bottom: 12px; }
.result-page p  { font-size: 16px; color: var(--text-m); margin-bottom: 28px; max-width: 440px; }

/* ── PŘIHLÁŠKA KE ČLENSTVÍ ─── */

/* Kontejner formuláře – centrovaný, ne přes celou šířku */
.prihlaska-wrap { max-width: 640px; margin: 0 auto; }

/* Sekce formuláře */
.prihlaska-section {
  background: var(--gray-lt);
  border: 1.5px solid var(--gray-bd);
  border-radius: var(--radius);
  padding: 28px 32px;
  margin-bottom: 20px;
}
.prihlaska-sec-title {
  font-size: 11px;
  font-weight: 700;
  letter-spacing: .1em;
  text-transform: uppercase;
  color: var(--text-l);
  padding-bottom: 14px;
  margin-bottom: 22px;
  border-bottom: 1.5px solid var(--gray-bd);
}

/* Select – stejný vzhled jako form-input, navíc šipka */
.form-select {
  width: 100%;
  padding: 12px 42px 12px 16px;
  border: 1.5px solid var(--gray-bd);
  border-radius: var(--radius);
  font-family: var(--font);
  font-size: 15px;     /* nutné – prohlížeče jinak použijí vlastní velikost */
  color: var(--black);
  background: var(--white) url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' width='16' height='16' fill='%23555' viewBox='0 0 16 16'%3E%3Cpath d='M7.247 11.14L2.451 5.658C1.885 5.013 2.345 4 3.204 4h9.592a1 1 0 0 1 .753 1.659l-4.796 5.48a1 1 0 0 1-1.506 0z'/%3E%3C/svg%3E") no-repeat right 14px center;
  appearance: none;
  cursor: pointer;
  transition: border-color .15s;
}
.form-select:focus { outline: none; border-color: var(--black); }

/* Radio skupiny (ne / ano) */
.radio-group {
  display: flex;
  align-items: center;
  gap: 24px;
  flex-wrap: wrap;
  margin-top: 6px;
  padding: 10px 0;
}
.radio-group label {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  cursor: pointer;
  user-select: none;
}
.radio-group input[type="radio"] {
  width: 18px;
  height: 18px;
  flex-shrink: 0;
  accent-color: var(--black);
  cursor: pointer;
}

/* HCP input – stejná výška jako ostatní inputy, skrytý dokud není potřeba */
.hcp-input {
  padding: 12px 16px;     /* shodné s .form-input */
  border: 1.5px solid var(--gray-bd);
  border-radius: var(--radius);
  font-family: var(--font);
  font-size: 15px;
  width: 150px;
  transition: border-color .15s;
  display: none;
}
.hcp-input.visible { display: inline-block; }
.hcp-input:focus { outline: none; border-color: var(--black); }

/* Úzký input (rodné číslo) */
.input-narrow { max-width: 220px; }

/* Platební info box */
.platba-info {
  background: var(--white);
  border: 1.5px solid var(--gray-bd);
  border-left: 4px solid var(--yellow);
  border-radius: 8px;
  padding: 16px 20px;
  color: var(--text-m);
  line-height: 1.75;
}

/* Prohlášení – oddělené bloky */
.prohlaseni-block { padding: 20px 0; border-bottom: 1px solid var(--gray-bd); }
.prohlaseni-block:first-child { padding-top: 0; }
.prohlaseni-block:last-child  { padding-bottom: 0; border-bottom: none; }
.prohlaseni-text  { color: var(--text-m); line-height: 1.75; margin-bottom: 12px; }

/* Chybový box */
.prihlaska-errors {
  background: #fef2f2;
  border: 1.5px solid #fca5a5;
  border-radius: 8px;
  padding: 16px 20px;
  margin-bottom: 24px;
  color: #b91c1c;
}
.prihlaska-errors ul  { margin: 8px 0 0 18px; }
.prihlaska-errors li  { list-style: disc; line-height: 1.8; }

/* Odeslací tlačítko – centrované, ne přes celou šířku */
.prihlaska-submit-wrap { margin-top: 8px; text-align: center; }
.prihlaska-submit-btn  { padding: 14px 56px; }
.prihlaska-note        { color: var(--text-l); margin-top: 12px; }

/* ── BREADCRUMB ─── */
.breadcrumb { display: flex; align-items: center; gap: 8px; flex-wrap: wrap; font-size: 13px; color: var(--text-l); margin-bottom: 20px; }
.breadcrumb a { color: var(--text-l); transition: color .15s; }
.breadcrumb a:hover { color: var(--black); }
.back-link { display: inline-flex; align-items: center; gap: 6px; font-size: 14px; color: var(--text-m); margin-bottom: 28px; transition: color .15s; }
.back-link:hover { color: var(--black); }
.divider { height: 1px; background: var(--gray-bd); margin: 40px 0; }

/* ── MAPA ─── */
.map-wrap { border-radius: var(--radius); overflow: hidden; margin-top: 48px; }
.map-wrap iframe { display: block; width: 100%; height: 440px; border: 0; }

/* ── SCROLL TOP ─── */
#goTopBtn { position: fixed; bottom: 24px; right: 24px; z-index: 900; background: var(--black); color: var(--white); width: 44px; height: 44px; border-radius: 50%; display: none; align-items: center; justify-content: center; border: none; cursor: pointer; font-size: 16px; box-shadow: 0 4px 20px rgba(0,0,0,.25); transition: background .15s; }
#goTopBtn.show { display: flex; }
#goTopBtn:hover { background: #333; }

/* ── KARTY GOLFOVÝCH KURZŮ ─── */
.courses-page-section {
  padding: 60px 0 80px;
}
.courses-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 36px;
  margin-top: 8px;
}
.course-card {
  background: var(--white);
  border: 1.5px solid var(--gray-bd);
  border-radius: var(--radius);
  overflow: hidden;
  display: flex;
  flex-direction: column;
  transition: box-shadow .18s, transform .18s;
}
.course-card:hover {
  box-shadow: 0 8px 32px rgba(0,0,0,.12);
  transform: translateY(-4px);
}
.course-card-img {
  position: relative;
  width: 100%;
  aspect-ratio: 4/3;
  overflow: hidden;
  background: var(--gray-bg);
}
.course-card-img img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform .3s;
}
.course-card:hover .course-card-img img { transform: scale(1.04); }
.course-card-img--empty {
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 2.5rem;
  color: var(--text-l);
}
.course-card-price {
  position: absolute;
  top: 14px;
  right: 14px;
  background: var(--yellow);
  color: var(--black);
  font-size: 13px;
  font-weight: 600;
  padding: 5px 14px;
  border-radius: 999px;
  white-space: nowrap;
}
.course-card-body {
  display: flex;
  flex-direction: column;
  flex: 1;
  padding: 28px 28px 32px;
  gap: 14px;
}
.course-card-title {
  font-size: 19px;
  font-weight: 600;
  line-height: 1.35;
  color: var(--black);
}
.course-card-price-row {
  display: flex;
  align-items: baseline;
  gap: 6px;
  padding: 10px 14px;
  background: var(--gray-bg);
  border-radius: 8px;
}
.course-card-price-label {
  font-size: 13px;
  color: var(--text-m);
  white-space: nowrap;
}
.course-card-price-value {
  font-size: 17px;
  font-weight: 700;
  color: var(--black);
}
.course-card-desc {
  font-size: 14px;
  color: var(--text-m);
  line-height: 1.7;
  flex: 1;
}
.course-card-btn {
  align-self: flex-start;
  font-size: 14px;
  padding: 10px 22px;
  margin-top: 6px;
}

/* ════════════════════════
   RESPONSIVITA
════════════════════════ */
@media (max-width: 900px) {
  .nav-links { display: none; }
  .hamburger { display: flex; }
  .nav-right .btn { display: none; }
  .hero { padding: 20px 20px 0; }
  .hero-image { height: 280px; }
  .hero-overlay-card-right { display: none; }
  .stats-bar { grid-template-columns: 1fr 1fr; }
  .area-grid { grid-template-columns: 1fr; }
  .courses-layout { grid-template-columns: 1fr; }
  .courses-photo { height: 240px; }
  .pricing-grid { grid-template-columns: 1fr; max-width: 380px; margin: 0 auto 40px; }
  .news-layout { grid-template-columns: 1fr; }
  .partner-grid { grid-template-columns: 1fr; }
  .footer { margin: 0 20px 20px; }
  .footer-grid { grid-template-columns: 1fr 1fr; gap: 28px; }
  .event-banner { margin: 0 20px; height: 300px; }
  .event-stat { display: none; }
  .container { padding-left: 20px; padding-right: 20px; }
  .contact-section { grid-template-columns: 1fr; }
  .form-row { grid-template-columns: 1fr; }
  .courses-grid { grid-template-columns: 1fr 1fr; }
}
@media (max-width: 600px) {
  .stats-bar { grid-template-columns: 1fr; }
  .footer-grid { grid-template-columns: 1fr; }
  .news-archive { grid-template-columns: 1fr; }
  .gallery-list-grid { grid-template-columns: 1fr; }
  .gallery-photo-grid { grid-template-columns: 1fr 1fr; }
  .not-found-code { font-size: 80px; }
  .courses-grid { grid-template-columns: 1fr; }
}
