@charset "UTF-8";
/* ===================================================================
   1. Globální nastavení, fonty a proměnné
   =================================================================== */
@import url("https://fonts.googleapis.com/css2?family=Open+Sans:ital,wght@0,300..800;1,300..800&family=Oswald:wght@200..700&display=swap&subset=latin-ext");
:root {
  --barva-textu: #000;
  --nadpis: #30a649;
  --color-strong: #a2acbb;
  --stranka-max-width: 1400px;
}

/* ===================================================================
   2. Základní styly (MOBILE FIRST)
      - Toto platí pro všechny velikosti obrazovek, pokud není
        později přepsáno v @media.
   =================================================================== */
*,
*::before,
*::after {
  margin: 0;
  padding: 0;
  box-sizing: border-box;
}

html, body {
  width: 100%;
  min-height: 100%;
  font-family: "Open Sans", sans-serif;
  color: var(--barva-textu);
  background: #fff;
  line-height: 1.6;
}

input, select, textarea {
  border-radius: 0; /* Odstraní zaoblení */
}

img,
iframe {
  max-width: 100%;
  height: auto;
  display: block;
  margin: 10px auto;
  padding: 0 !important;
  float: none !important;
}

.all {
  max-width: var(--stranka-max-width);
  margin: 0 auto;
  padding: 0 10px;
  position: relative;
}

.clear {
  clear: both;
  line-height: 0;
}

.preteceni {
  overflow: hidden;
}

.pouze-desktop {
  display: none;
}

.left, .right {
  float: none;
}

.fancybox-lock body {
  overflow: visible !important;
}

.icon-basket:before {
  content: "\e800";
}

.icon-facebook:before {
  content: "\f09a";
}

.icon-youtube:before {
  content: "\f313";
}

.icon-instagram:before {
  content: "\f31e";
}

.alert {
  width: 100%;
  padding: 20px;
  text-align: center;
  font-size: 1.2em;
  text-transform: uppercase;
  text-shadow: 0 -1px 0 rgba(0, 0, 0, 0.4);
  position: fixed;
  top: 0;
  left: 0;
  right: 0;
  z-index: 999;
}

.alert-ok {
  background: #7eb62e;
  color: #fff;
}

.alert-err {
  background: #f64b2f;
  color: #fff;
}

#back-top {
  position: fixed;
  bottom: 20px;
  right: 20px;
  z-index: 997;
}

#back-top a {
  width: 70px;
  display: block;
}

#back-top a:hover span {
  background-color: #ced9db;
}

#back-top span {
  width: 70px;
  height: 70px;
  display: block;
  margin-bottom: 7px;
  background: rgba(0, 0, 0, 0.2) url("../images/up-arrow.png") no-repeat center center;
  border-radius: 50%;
}

/* ===================================================================
   3. Vylepšení pro tablety a větší zařízení
   =================================================================== */
@media (min-width: 768px) {
  .all {
    padding: 10px;
  }
  .pouze-desktop {
    display: block;
  }
  .left {
    float: left;
  }
  .right {
    float: right;
  }
}
/* ===================================================================
   4. Importy specifických komponent (měly by také být Mobile First)
   =================================================================== */
.top {
  position: fixed;
  top: 0;
  left: 0;
  width: 100%;
  height: var(--header-height);
  background: #fff;
  border-bottom: 1px solid #e0e0e0;
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 0 10px;
  z-index: 10001;
  box-shadow: 0 2px 5px rgba(0, 0, 0, 0.1);
  font-family: "Oswald", sans-serif;
}

.logo img {
  height: 40px;
  width: auto;
}

/* Hidden checkbox for toggle functionality */
#nav-toggle {
  display: none;
}

/* Hamburger button - mobile */
.button_container {
  position: relative;
  height: 44px;
  width: 44px;
  cursor: pointer;
  z-index: 10002;
  display: flex;
  flex-direction: column;
  justify-content: center;
  align-items: center;
  transition: opacity 0.25s ease;
}

.button_container:hover {
  opacity: 0.7;
}

/* Hamburger lines */
.button_container span {
  background: var(--barva-textu);
  height: 3px;
  width: 24px;
  display: block;
  margin: 3px 0;
  transition: all 0.35s ease;
  transform-origin: center;
}

/* Overlay menu - mobile */
.overlay {
  position: fixed;
  background: rgba(0, 0, 0, 0.95);
  -webkit-backdrop-filter: blur(10px);
          backdrop-filter: blur(10px);
  top: 0;
  left: 0;
  width: 100%;
  height: 100vh;
  opacity: 0;
  visibility: hidden;
  transition: opacity 0.35s ease, visibility 0.35s ease;
  z-index: 10000;
  display: flex;
  align-items: center;
  justify-content: center;
  padding-top: var(--header-height);
}

.overlay nav {
  text-align: center;
  width: 100%;
  font-size: 1.5rem;
}

.overlay ul {
  list-style: none;
  padding: 0;
}

.overlay ul li {
  margin: 15px 0;
  opacity: 0;
  transform: translateY(30px);
  transition: all 0.5s ease;
}

nav li a {
  color: #fff;
  text-decoration: none;
  padding: 15px 30px;
  display: block;
  transition: all 0.3s ease;
}

nav li a:hover,
nav li a:focus {
  color: #ced9db;
}

/* When checkbox is checked - show overlay */
#nav-toggle:checked ~ .overlay {
  opacity: 1;
  visibility: visible;
}

/* Animate menu items when overlay is open */
#nav-toggle:checked ~ .overlay ul li {
  opacity: 1;
  transform: translateY(0);
}

/* Stagger animation for menu items */
#nav-toggle:checked ~ .overlay ul li:nth-child(1) {
  transition-delay: 0.1s;
}

#nav-toggle:checked ~ .overlay ul li:nth-child(2) {
  transition-delay: 0.15s;
}

#nav-toggle:checked ~ .overlay ul li:nth-child(3) {
  transition-delay: 0.2s;
}

#nav-toggle:checked ~ .overlay ul li:nth-child(4) {
  transition-delay: 0.25s;
}

/* Transform hamburger to X when active */
#nav-toggle:checked ~ .button_container span:nth-child(1) {
  transform: rotate(45deg) translate(6px, 6px);
  background: #fff;
}

#nav-toggle:checked ~ .button_container span:nth-child(2) {
  opacity: 0;
}

#nav-toggle:checked ~ .button_container span:nth-child(3) {
  transform: rotate(-45deg) translate(6px, -6px);
  background: #fff;
}

.login-btn {
  background: #28a745;
  color: #fff;
  border-radius: 15px;
  padding: 15px 30px;
  display: inline-block;
  margin: 30px auto 0 auto;
  text-align: center;
  transition: all 0.3s ease;
}

.login-btn:hover {
  background: #ec8914;
}

/* Tablet styles */
@media (min-width: 768px) {
  .top {
    padding: 10px 30px;
  }
  .logo img {
    height: auto;
  }
}
/* Desktop styles - horizontal menu */
@media (min-width: 1024px) {
  .button_container {
    display: none;
  }
  .overlay nav {
    display: flex;
    align-items: center;
    gap: 40px;
  }
  .overlay {
    position: static;
    background: transparent;
    -webkit-backdrop-filter: none;
            backdrop-filter: none;
    width: auto;
    height: auto;
    opacity: 1;
    visibility: visible;
    transition: none;
    z-index: auto;
    display: block;
    padding-top: 0;
  }
  .overlay ul {
    display: flex;
    align-items: center;
    gap: 5px;
  }
  .overlay ul li {
    margin: 0;
    opacity: 1;
    transform: none;
    transition: none;
  }
  nav li a {
    color: var(--barva-textu);
    padding: 10px 15px;
    display: inline-block;
    transition: all 0.3s ease;
  }
  nav li a:hover,
  nav li a:focus {
    color: #ec8914;
    text-decoration: underline;
  }
  .login-btn {
    background: var(--nadpis);
    color: #fff;
    border-radius: 8px;
    padding: 5px 20px;
    transition: all 0.3s ease;
    text-decoration: none;
    white-space: nowrap; /* Zabráni zalomeniu textu */
    flex-shrink: 0; /* Tlačidlo si udrží svoju veľkosť */
    margin: 0;
  }
}
/* --- Základní styly (Mobile First) --- */
.text {
  width: 100%;
  text-align: left;
  padding: 40px 0;
}

.topmezera {
  padding-top: 60px;
}

sup {
  vertical-align: super;
  font-size: smaller;
}

.text em {
  font-size: 80% !important;
}

.text p,
.text ol,
.text ul {
  margin: 15px 0;
  font-size: 1.1em;
}

.text ol,
.text ul {
  padding: 0 0 0 20px;
}

.text ol li {
  list-style: decimal;
  margin: 8px 0;
  padding: 0;
}

.text ul li {
  list-style: none;
  padding: 0;
  margin: 8px 0;
}

.text strong {
  color: var(--color-strong);
}

.text a {
  color: var(--color-strong);
  text-decoration: underline;
}

.text a:hover {
  color: var(--barva-textu);
}

.text a.login-btn {
  background: #28a745;
  color: #fff;
  border-radius: 15px;
  padding: 15px 30px;
  display: block;
  width: -moz-fit-content;
  width: fit-content;
  margin: 30px auto 0 auto;
  text-align: center;
  transition: all 0.3s ease;
  text-decoration: none;
  text-align: center;
}

.text a.login-btn:hover {
  background: #ec8914;
}

.text h1, .text h2, .text h3, .text h4 {
  font-weight: 200;
  line-height: 1.2;
  text-align: center;
  color: var(--nadpis, #000);
  font-family: "Oswald", sans-serif;
}

.text h1 {
  font-size: 3rem;
  padding: 25px 0;
  color: #ec8914;
}

.text h2 {
  font-size: 2.5rem;
  padding: 20px 0;
}

.text h3 {
  font-size: 1.5rem;
  padding: 20px 0;
}

.text h4 {
  font-size: 1.2rem;
  padding: 15px 0;
}

.tmavyblok {
  background: #202729;
  border-radius: 20px;
  padding: 40px 25px;
  font-size: 90%;
}

.placeholder {
  color: #b8b9bc;
}

/* ===================================================================
   Vylepšení pro tablety
   =================================================================== */
@media (min-width: 768px) {
  .text {
    text-align: justify;
  }
  .text h1 {
    font-size: 4.5rem;
  }
  .text h2 {
    font-size: 3.8rem;
  }
  .text h3 {
    font-size: 1.8rem;
    text-align: left;
  }
  .text h1 {
    padding: 80px 0 30px 0;
  }
  .tmavyblok {
    padding: 60px 80px;
    font-size: 100%;
  }
}
/* ===================================================================
   Vylepšení pro velké obrazovky (Desktop)
   =================================================================== */
@media (min-width: 1200px) {
  .text {
    width: 90%;
    margin: 0 auto;
    padding: 30px 0 0;
  }
  .topmezera {
    padding-top: 200px;
  }
  .text p, .text ol, .text ul {
    font-size: 130%;
    line-height: 140%;
  }
  .text h1 {
    font-size: 580%;
    padding: 80px 0 30px 0;
  }
  .text h2 {
    font-size: 480%;
    padding: 40px 0 30px 0;
  }
  .tmavyblok {
    border-radius: 30px;
    padding: 0 100px 60px 100px;
  }
}
/* Mobile-first approach - začínáme od nejmenších obrazovek */
.slider {
  max-width: 100%;
  height: 500px;
  background: url("../images/bgtop.webp") no-repeat center;
  background-size: cover;
  display: flex;
  align-items: center;
  justify-content: center;
  font-family: "Oswald", sans-serif;
}

.sliderspodek {
  max-width: 100%;
  height: 500px;
  background: url("../images/bgspodek.webp") no-repeat left center;
  background-size: cover;
  display: flex;
  align-items: center;
  justify-content: center;
  font-family: "Oswald", sans-serif;
}

.motto {
  max-width: 100%;
  color: #fff;
  text-shadow: #000 2px 2px;
  text-align: center;
  padding: 0 20px; /* Přidáme padding pro mobilní zařízení */
}

.motto h2 {
  font-weight: 400;
  font-size: 3rem; /* Začínáme s mobilní velikostí */
  line-height: 110%;
  padding: 5px 0;
  margin: 10px 0;
  text-transform: uppercase;
}

.motto p {
  max-width: 100%;
  font-weight: 300;
  font-size: 2rem; /* Mobilní velikost textu */
  line-height: 1.2;
  margin: auto;
  padding: 10px 0;
}

.motto a {
  color: #fff;
  border-radius: 8px;
  padding: 15px 30px;
  text-decoration: none;
  margin: 30px 0 0 0;
  display: inline-block;
  font-size: 1.2rem; /* Přizpůsobeno pro mobil */
  text-transform: uppercase;
  text-shadow: none;
}

.motto a:hover {
  background: #ec8914;
  color: #fff;
}

.motto.ms h2 {
  font-size: 1.9rem; /* Mobilní velikost textu */
  line-height: 1.2;
  margin: auto;
  padding: 10px 0;
  max-width: 100%;
}

.motto.ms p {
  font-size: 1.5rem; /* Mobilní velikost textu */
  line-height: 1.2;
  margin: auto;
  padding: 10px 0;
  max-width: 100%;
}

/* Tablety (od 769px) */
@media only screen and (min-width: 769px) {
  .slider {
    height: 700px; /* Fixní výška pro větší obrazovky */
    border-radius: 0; /* Odstraníme border radius na větších obrazovkách */
  }
  .sliderspodek {
    height: 800px;
    justify-content: right;
  }
  .motto {
    max-width: 800px;
    padding: 0; /* Odstraníme padding na větších obrazovkách */
  }
  .motto h2 {
    font-size: 3rem;
    padding: 10px 0;
  }
  .motto p {
    max-width: 500px;
    font-size: 1.8rem;
    padding: 0; /* Reset padding */
  }
  .motto a {
    font-size: 1.4rem;
  }
  .ms {
    margin-right: 40px;
    text-align: right;
    text-shadow: none;
  }
  .ms img {
    margin: 40px 0 0 0;
    padding: 0;
    display: inline-block;
  }
}
/* Desktopy a větší obrazovky (od 1024px) */
@media only screen and (min-width: 1024px) {
  .motto h2 {
    font-size: 4.2rem; /* Původní velikost */
  }
  .motto p {
    font-size: 2.5rem; /* Původní velikost */
  }
  .motto a {
    font-size: 1.5rem;
  }
}
/* Speciální pravidlo pro nízké obrazovky (zachováváme funkčnost) */
@media only screen and (max-height: 600px) {
  .slider {
    min-height: 300px;
  }
  .motto h2 {
    font-size: 1.8rem;
  }
  .motto p {
    font-size: 1rem;
  }
}
.faq {
  max-width: 800px;
  margin: 0 auto;
  padding: 10px;
  font-family: Arial, sans-serif;
}

.faq h2 {
  color: var(--nadpis);
  font-family: "Oswald", sans-serif;
  font-weight: 200;
  font-size: 3rem;
  padding: 30px 0;
}

.faq h3 {
  font-weight: 400;
  font-family: "Oswald", sans-serif;
  font-size: 1.6rem;
  margin: 0; /* Ensure no extra margins interfere */
  color: #000;
  text-align: left;
}

.faq-blok {
  margin-bottom: 10px;
  overflow: hidden;
}

.faq-otazka-odpoved {
  position: relative;
}

.otazka {
  margin: 0 !important;
  padding: 5px 20px 10px 70px !important; /* Adjusted padding for icon space */
  cursor: pointer;
  font-size: 18px;
  font-weight: 600;
  color: #333;
  position: relative;
  transition: background-color 0.3s ease;
  display: flex;
  align-items: center; /* Vertically center content */
  min-height: 60px; /* Ensure consistent height for icon centering */
}

.faq-ikona {
  position: absolute;
  left: 15px; /* Fixed position from left */
  top: 50%; /* Center vertically */
  transform: translateY(-50%); /* Center vertically without affecting rotation */
  width: 35px; /* Consistent icon size */
  height: 35px;
  background: url("../images/lifaq.png") no-repeat center;
  background-size: contain; /* Scale icon properly */
  transition: transform 0.3s ease; /* Smooth rotation */
}

.otazka.active .faq-ikona {
  transform: translateY(-50%) rotate(90deg); /* Rotate while keeping vertical centering */
}

.odpoved {
  padding: 0 20px;
  display: none;
}

.odpoved.active {
  display: block;
}

.odpoved p {
  font-size: 1rem !important;
}

.alert {
  width: 100%;
  padding: 20px;
  text-align: center;
  font-size: 120%;
  text-transform: uppercase;
  -webkit-text-shadow: 0 -1px 0 rgba(0, 0, 0, 0.4);
  -moz-text-shadow: 0 -1px 0 rgba(0, 0, 0, 0.4);
  text-shadow: 0 -1px 0 rgba(0, 0, 0, 0.4);
}

.alert-ok {
  background: #7eb62e;
  color: #fff;
}

.alert-err {
  background: #f64b2f;
  color: #fff;
}

.hlavniblok {
  width: 100%;
  padding: 50px;
  background: #CC3;
}

/* Mobile-first - základní styly pro mobilní zařízení */
.clanky {
  padding: 20px;
  max-width: 1200px;
  margin: 0 auto;
}

.clanek {
  text-align: center;
  margin-bottom: 40px;
}

.clanek img {
  max-width: 60px;
  height: auto;
  margin-bottom: 15px;
}

.clanek h3 {
  font-size: 2.2rem;
  margin: 0 0 10px 0;
}

.clanek p {
  font-size: 1rem;
  margin: 0;
  line-height: 1.5;
}

/* Tablety - přechodová fáze */
@media (min-width: 600px) {
  .clanky {
    padding: 30px;
  }
  .clanek {
    margin-bottom: 50px;
  }
}
/* Desktop - původní design s grid layoutem */
@media (min-width: 768px) {
  .clanky {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 80px;
    padding: 40px;
  }
  .clanek {
    display: grid;
    grid-template-columns: auto 1fr;
    align-items: center;
    -moz-column-gap: 40px;
         column-gap: 40px;
    text-align: left;
    margin-bottom: 0;
  }
  .clanek img {
    grid-column: 1;
    grid-row: 1/3;
    margin-bottom: 0;
  }
  .clanek h3 {
    grid-column: 2;
    grid-row: 1;
    margin-bottom: 5px;
  }
  .clanek p {
    grid-column: 2;
    grid-row: 2;
  }
}
/* Velké obrazovky - další optimalizace */
@media (min-width: 1024px) {
  .clanky {
    gap: 100px;
    padding: 50px;
  }
  .clanek {
    -moz-column-gap: 50px;
         column-gap: 50px;
  }
}
/* Mobile-first CSS pro GOLFPLAY sekci */
.wrap_bl {
  padding: 40px 20px;
  background: #f0f0f0 url("../images/micek.png") no-repeat right bottom;
  text-align: center;
  width: 100%;
}

.wrap_bl h2 {
  font-size: 3rem;
  color: var(--nadpis);
  margin-bottom: 40px;
  margin-top: 0;
  font-weight: 200;
  font-family: "Oswald", sans-serif;
}

.bloky {
  display: flex;
  flex-direction: column;
  gap: 30px;
  max-width: 1200px;
  margin: 0 auto;
}

.blok {
  display: flex;
  flex-direction: column;
  align-items: center;
  padding: 15px 20px;
}

.blok span {
  display: flex;
  align-items: center;
  justify-content: center;
  width: 140px;
  height: 140px;
  background-color: white;
  border-radius: 50%;
  font-size: 4rem;
  margin-bottom: 20px;
  box-shadow: #000 2px 2px;
  font-family: "Oswald", sans-serif;
}

.blok h3 {
  font-size: 2.5rem;
  color: var(--nadpis);
  font-weight: 200;
  margin: 0 0 15px 0;
  font-family: "Oswald", sans-serif;
}

.blok p {
  font-size: 1rem;
  line-height: 1.5;
  margin: 0;
  max-width: 280px;
}

.courses-section {
  background-color: #3e4146;
  color: #f8f9fa;
  padding: 4rem 2rem;
  text-align: center;
}

.courses-section h2 {
  font-family: "Oswald", sans-serif;
  font-size: 3rem;
  font-weight: 400;
  margin: 0 2rem 2rem 2rem;
  line-height: 1.2;
}

.courses-section .subtitle {
  font-size: 1.2rem;
  color: #adb5bd;
  max-width: 600px;
  margin: 0 auto 1.5rem auto;
}

.courses-section .course-count {
  margin-bottom: 0.5rem;
  font-size: 1.1rem;
}

.courses-section .login-btn {
  padding: 15px 40px;
  font-family: "Oswald", sans-serif;
  font-size: 200;
  font-size: 1.6rem;
  text-decoration: none;
  display: inline-flex;
  flex-direction: column;
  align-items: center;
  text-align: center;
}

/* Tablet - od 768px */
@media (min-width: 768px) {
  .wrap_bl {
    padding: 60px 40px;
  }
  .wrap_bl h2 {
    font-size: 4rem;
    margin-bottom: 50px;
  }
  .bloky {
    flex-direction: row;
    gap: 40px;
    justify-content: center;
  }
  .blok {
    flex: 1;
    max-width: 300px;
    padding: 40px 25px;
  }
  .courses-section {
    margin: 3rem 0 0 0;
    padding: 6rem 2rem;
  }
  .courses-section .course-count {
    margin-bottom: 1.5rem;
    font-size: 1.3rem;
  }
  .courses-section .login-btn {
    flex-direction: row; /* Změní skládání bloků VEDLE sebe */
    gap: 0.5em; /* Vytvoří mezi nimi tu požadovanou mezeru */
  }
  .courses-section .subtitle {
    max-width: 800px;
  }
}
/* Desktop - od 1024px */
@media (min-width: 1024px) {
  .wrap_bl h2 {
    font-size: 5rem;
    margin-bottom: 60px;
  }
  .bloky {
    gap: 50px;
  }
  .blok {
    padding: 50px 30px;
  }
  .blok p {
    max-width: 320px;
  }
}
/* Large desktop - od 1440px */
@media (min-width: 1440px) {
  .bloky {
    gap: 60px;
  }
  .blok {
    max-width: 350px;
  }
}
.premium {
  max-width: var(--stranka-max-width);
  margin: 0 auto;
  padding: 20px 10px;
  text-align: center;
  font-family: "Open Sans", sans-serif;
  color: var(--barva-textu);
}

.plan-card {
  background: #fff;
  border: 1px solid #e0e0e0;
  border-radius: 8px;
  padding: 20px;
  margin: 20px 0;
  box-shadow: 0 2px 5px rgba(0, 0, 0, 0.1);
  transition: transform 0.3s ease, box-shadow 0.3s ease;
  display: flex;
  flex-direction: column;
}

.plan-card h2 {
  font-family: "Oswald", sans-serif;
  font-size: 2em;
  color: var(--nadpis);
  margin-bottom: 10px;
  text-transform: uppercase;
}

.plan-card.prem h2 {
  color: #d4a017; /* Gold-like color for Premium to differentiate */
}

.plan-card.prem {
  border: 4px solid var(--nadpis);
}

.plan-price {
  font-size: 3em !important;
  font-weight: 700;
  color: var(--barva-textu);
  margin: 10px 0;
}

.plan-price.padd {
  margin: 0;
  padding: 0;
  line-height: normal;
}

.plan-price span {
  font-size: 0.4em;
  font-weight: 400;
  color: var(--color-strong);
  text-transform: none;
}

.includes-free {
  font-size: 1.1em;
  margin: 10px 0;
  color: var(--barva-textu);
}

.plan-features {
  list-style: none;
  margin: 15px 0;
  text-align: center;
  padding: 0 !important;
}

.plan-features li {
  margin: 20px 0 !important;
  font-size: 1em;
  line-height: 1.4;
  text-align: center;
}

.plan-features li strong {
  display: block;
  font-weight: 600;
  color: var(--barva-textu);
}

.plan-features li span {
  display: block;
  color: var(--color-strong);
  font-size: 0.9em;
}

.premium > p {
  font-size: 1.1em;
  margin-top: 20px;
  color: var(--barva-textu);
}

.premium > p strong {
  color: var(--nadpis);
}

.plan-card .login-btn {
  padding: 10px 20px;
  color: #fff !important;
  font-family: "Oswald", sans-serif;
  font-size: 1.7rem;
  text-decoration: none;
  margin-top: auto;
}

.original-price {
  font-size: 1.2rem;
  color: #999;
  text-decoration: line-through;
  margin-bottom: 0.5rem;
  display: block;
}

.offer-badge {
  font-size: 0.8rem;
  font-weight: bold;
  margin-top: 0.5rem;
  display: inline-block;
}

/* ===================================================================
   Tablet and larger devices
   =================================================================== */
@media (min-width: 768px) {
  .premium {
    padding: 40px 20px;
    display: flex;
    flex-wrap: wrap;
    justify-content: center;
    gap: 20px;
  }
  .plan-card {
    flex: 1;
    min-width: 300px;
    max-width: 45%;
    margin: 10px;
  }
  .plan-card h2 {
    font-size: 2em;
  }
  .plan-price {
    font-size: 3.2em !important;
  }
  .plan-price span {
    font-size: 0.5em;
  }
}
@media (min-width: 1200px) {
  .plan-card {
    max-width: 40%;
  }
}
.kontakty {
  width: 100%;
  padding: 20px;
  font-weight: 100;
  background: #3e4146;
  display: flex;
  flex-direction: column;
  gap: 1rem;
}

.spodnimenu p {
  margin: 15px 0;
}

.spodnimenu strong {
  font-weight: 900;
}

.spodnimenu ul {
  margin: auto;
  padding: 0;
  list-style: none;
}

.spodnimenu ul ul {
  display: none;
}

.spodnimenu a {
  margin: 0 5px;
  color: #fff;
  text-decoration: none;
}

.spodnimenu a:hover {
  color: #a9d040;
  text-decoration: underline;
}

.spodnimenu img {
  height: 40px;
}

/* Tablety */
@media only screen and (min-width: 769px) {
  .kontakty {
    padding: 40px 10px;
    flex-direction: row;
    justify-content: center;
    align-items: flex-start;
  }
  .spodnimenu {
    flex: 1;
  }
}
/* ============================================= */
/* Mobile First - Univerzální styly pro formuláře */
/* ============================================= */
form {
  width: 90%;
  margin: 0 auto;
  padding: 10px 0 30px 0;
  text-align: left;
}
form label {
  display: block;
  margin: 10px 0;
  color: rgb(122, 122, 122);
  text-transform: uppercase;
  font-size: 90%;
  font-family: "Oswald", sans-serif;
}
form input[type=email],
form input[type=text],
form input[type=password],
form input[type=tel],
form input[type=url],
form textarea {
  width: 100%;
  font-family: "Open Sans", serif;
  font-size: 110%;
  border: none;
  border-bottom: 1px solid rgba(0, 0, 0, 0.1);
  padding: 12px;
  margin: 0 0 10px 0;
  background-color: transparent;
  color: inherit;
  box-sizing: border-box;
}
form input[type=email]::-moz-placeholder, form input[type=text]::-moz-placeholder, form input[type=password]::-moz-placeholder, form input[type=tel]::-moz-placeholder, form input[type=url]::-moz-placeholder, form textarea::-moz-placeholder {
  color: #b8b9bc;
}
form input[type=email]::placeholder,
form input[type=text]::placeholder,
form input[type=password]::placeholder,
form input[type=tel]::placeholder,
form input[type=url]::placeholder,
form textarea::placeholder {
  color: #b8b9bc;
}
form input[type=email]:focus,
form input[type=text]:focus,
form input[type=password]:focus,
form input[type=tel]:focus,
form input[type=url]:focus,
form textarea:focus {
  outline: none;
  border-bottom-color: #e2193b;
}
form input[type=file] {
  width: 100%;
  padding: 12px;
  margin: 0 0 20px 0;
  border: 1px solid rgba(0, 0, 0, 0.1);
  border-radius: 4px;
  background-color: transparent;
  color: inherit;
  font-family: "Open Sans", serif;
  font-size: 100%;
  box-sizing: border-box;
}
form input[type=checkbox] {
  width: 35px;
  height: 18px;
  margin: 0 10px 0 0;
}
form input[type=radio] {
  display: none;
}
form input[type=radio] + label {
  position: relative;
  padding-left: 30px;
  cursor: pointer;
  color: rgb(190, 190, 190);
  font-weight: normal;
  margin: 10px 0;
  font-size: 110%;
  transition: color 0.3s;
}
form input[type=radio] + label:before {
  content: "";
  position: absolute;
  left: 0;
  top: 50%;
  transform: translateY(-50%);
  width: 18px;
  height: 18px;
  border: 2px solid #e2193b;
  border-radius: 50%;
  background-color: transparent;
  transition: all 0.3s;
}
form input[type=radio]:checked + label {
  color: #e2193b;
}
form input[type=radio]:checked + label:before {
  background-color: #e2193b;
  box-shadow: inset 0 0 0 4px #fff;
}
form button[type=submit],
form input[type=submit] {
  display: block;
  width: 100%;
  padding: 12px 20px;
  border: none;
  border-radius: 4px;
  font-size: 120%;
  text-transform: uppercase;
  cursor: pointer;
  margin: 30px auto;
  transition: background-color 0.3s;
}
form button[type=submit]:hover,
form input[type=submit]:hover {
  background: #000;
}
form button[type=submit]:disabled, form button[type=submit].disabled,
form input[type=submit]:disabled,
form input[type=submit].disabled {
  cursor: not-allowed;
}
form button[type=submit]:disabled:hover, form button[type=submit].disabled:hover,
form input[type=submit]:disabled:hover,
form input[type=submit].disabled:hover {
  background: #bbb;
}

/* ============================================= */
/* Mobile First - Postupné rozšiřování          */
/* ============================================= */
@media (min-width: 481px) {
  form {
    width: 80%;
    padding: 15px 0 35px 0;
  }
  form label {
    font-size: 120%;
    margin: 10px 0;
  }
  form input[type=email],
  form input[type=text],
  form input[type=password],
  form input[type=tel],
  form input[type=url],
  form textarea {
    padding: 13px;
    margin: 0 0 25px 0;
  }
  form input[type=file] {
    padding: 13px;
  }
  form button[type=submit],
  form input[type=submit] {
    font-size: 125%;
    padding: 13px 22px;
  }
}
@media (min-width: 769px) {
  form {
    width: 70%;
    padding: 18px 0 40px 0;
  }
  form label {
    font-size: 110%;
    margin: 20px 0;
  }
  form input[type=email],
  form input[type=text],
  form input[type=password],
  form input[type=tel],
  form input[type=url],
  form textarea {
    padding: 14px;
    margin: 0 0 28px 0;
  }
  form input[type=file] {
    padding: 14px;
  }
  form input[type=checkbox] {
    width: 38px;
    height: 20px;
  }
  form input[type=radio] + label {
    padding-left: 32px;
    font-size: 120%;
  }
  form input[type=radio] + label:before {
    width: 19px;
    height: 19px;
  }
  form button[type=submit],
  form input[type=submit] {
    width: auto;
    display: inline-block;
    font-size: 130%;
    padding: 14px 25px;
  }
  form img {
    max-width: 180px;
  }
  form .form-group {
    margin-bottom: 28px;
  }
}
@media (min-width: 1025px) {
  form {
    width: 50%;
    padding: 20px 0 50px 0;
  }
  form label {
    font-size: 120%;
    margin: 10px 0;
  }
  form input[type=email],
  form input[type=text],
  form input[type=password],
  form input[type=tel],
  form input[type=url],
  form textarea {
    font-size: 120%;
    padding: 15px;
    margin: 0 0 30px 0;
  }
  form input[type=file] {
    padding: 15px;
  }
  form input[type=checkbox] {
    width: 40px;
    height: 20px;
  }
  form input[type=radio] + label {
    padding-left: 35px;
    font-size: 130%;
  }
  form input[type=radio] + label:before {
    width: 20px;
    height: 20px;
  }
  form button[type=submit],
  form input[type=submit] {
    font-size: 150%;
    padding: 15px 30px;
  }
  form img {
    max-width: 200px;
  }
  form .form-group {
    margin-bottom: 30px;
  }
}
@media (min-width: 1200px) {
  form {
    width: 40%;
    max-width: 800px;
  }
}
.copy {
  width: 100%;
  background: #000;
  border-bottom: #aeb2b3 solid 5px;
  padding: 10px;
  text-align: center;
  color: #777;
  font-size: 80%;
}

.copy a {
  color: #777;
  font-size: 100%;
}

.copy a:hover {
  color: #a9d040;
}

.contact-section,
.course-card,
.golf-outer-card {
  background: linear-gradient(135deg, #f8f9ff 0%, #e8f5e8 100%);
  padding: 15px 20px;
  border-radius: 8px;
  margin-bottom: 15px;
  border: 1px solid #e0e0e0;
  box-shadow: 0 2px 8px rgba(0, 0, 0, 0.05);
}

.course-card h3 {
  text-align: center;
}

.contact-item,
.layout-link,
.stat-card,
.golf-inner-item {
  background: white;
  padding: 12px 15px;
  border-radius: 8px;
  box-shadow: 0 1px 4px rgba(0, 0, 0, 0.05);
  border: 1px solid transparent;
}

.club-card,
.golf-club-card {
  background: #f9f9f9;
  border: 1px solid #b8b8b8;
  border-radius: 6px;
  padding: 15px;
  text-decoration: none !important;
  color: #000 !important;
}

.contact-grid,
.layouts-grid,
.clubs-grid,
.stats-section,
.golf-grid {
  display: grid;
  gap: 15px;
  padding: 15px;
}

.contact-grid,
.golf-contact-grid {
  grid-template-columns: 1fr;
}

.clubs-grid,
.golf-clubs-grid {
  grid-template-columns: 1fr;
}

.stats-section,
.golf-stats-grid {
  grid-template-columns: repeat(2, 1fr);
  background: #f8f9ff;
  border-top: 1px solid #e0e0e0;
}

.back-link,
.golf-back-link {
  display: inline-block;
  margin-bottom: 15px;
  color: #2c5f3f;
  text-decoration: none;
  font-weight: bold;
  font-size: 0.9em;
}

.search-input,
.golf-search {
  padding: 10px 15px;
  border: 2px solid #e0e0e0;
  border-radius: 20px;
  width: 100%;
  font-size: 16px;
}
.search-input:focus,
.golf-search:focus {
  outline: none;
  border-color: #2c5f3f;
}

.btn,
.print-button,
.golf-button {
  display: inline-block;
  padding: 10px 20px;
  background: linear-gradient(135deg, #2c5f3f, #1e4a2e);
  color: white;
  text-decoration: none;
  border-radius: 20px;
  font-weight: 500;
  border: none;
  cursor: pointer;
  font-size: 0.9em;
}

.print-button {
  position: fixed;
  bottom: 20px;
  right: 20px;
  border-radius: 40px;
  z-index: 1000;
  box-shadow: 0 2px 8px rgba(44, 95, 63, 0.3);
  padding: 12px 16px;
}

.country-tabs,
.golf-tabs {
  display: flex;
  flex-direction: column;
  gap: 8px;
  background: #f8f8f8;
  padding: 10px;
  border-radius: 15px;
  box-shadow: 0 1px 4px rgba(0, 0, 0, 0.05);
}

.country-tab,
.golf-tab {
  padding: 8px 15px;
  text-decoration: none !important;
  color: #666;
  border-radius: 15px;
  font-weight: 500;
  border: 2px solid transparent;
  background: white;
  text-align: center;
  font-size: 0.9em;
}
.country-tab.active,
.golf-tab.active {
  background: #2c5f3f;
  color: white;
  border-color: #1e4a2e;
}

.header,
.golf-header {
  background: #f8f8f8;
  color: #000;
  padding: 20px 15px;
  position: relative;
  overflow: hidden;
}

.map-section,
.golf-map-section {
  margin: 20px 0;
  background: white;
  border-radius: 10px;
  overflow: hidden;
  box-shadow: 0 2px 8px rgba(0, 0, 0, 0.1);
}

.map-header,
.golf-map-header {
  background: linear-gradient(135deg, #2c5f3f, #1e4a2e);
  color: white;
  padding: 15px 20px;
  font-size: 1.1em;
  font-weight: bold;
}

.scorecard,
.golf-table {
  width: 100%;
  border-collapse: collapse;
  margin: 0;
  background: white;
  border-radius: 8px;
  overflow: hidden;
  box-shadow: 0 2px 8px rgba(0, 0, 0, 0.05);
  min-width: 300px;
}
.scorecard th,
.golf-table th {
  background: #2c5f3f;
  color: white;
  padding: 8px 4px;
  text-align: center;
  font-weight: bold;
  font-size: 0.8em;
  position: sticky;
  top: 0;
  z-index: 10;
}
.scorecard td,
.golf-table td {
  border: 1px solid #e0e0e0;
  padding: 8px 4px;
  text-align: center;
  font-weight: 500;
  font-size: 0.8em;
}

.hole-number,
.golf-hole-number {
  font-weight: bold;
  background: #f0f0f0 !important;
  color: #2c5f3f;
  font-size: 0.9em;
}

.par-cell,
.golf-par-cell {
  background: #f0f0f0 !important;
  font-weight: bold;
}

.hcp-cell,
.golf-hcp-cell {
  background: #f8f8f8 !important;
  font-weight: bold;
}

.subtotal,
.golf-subtotal {
  background: #e8e8e8 !important;
  font-weight: bold;
}
.subtotal td,
.golf-subtotal td {
  font-size: 0.85em;
}

.total,
.golf-total {
  background: #2c5f3f !important;
  color: white;
  font-weight: bold;
}
.total td,
.golf-total td {
  font-size: 0.9em;
  padding: 10px 4px;
}

.tee-legend,
.golf-legend {
  padding: 15px 20px;
  background: #f8f9ff;
  display: flex;
  flex-wrap: wrap;
  gap: 10px;
  justify-content: center;
  align-items: center;
}

.tee-sample,
.golf-legend-item {
  display: flex;
  align-items: center;
  gap: 6px;
  padding: 6px 10px;
  border-radius: 15px;
  background: white;
  box-shadow: 0 1px 3px rgba(0, 0, 0, 0.1);
  font-size: 0.8em;
  font-weight: 500;
}

.par-badge,
.golf-badge {
  background: #ff6b6b;
  color: white;
  padding: 3px 6px;
  border-radius: 10px;
  font-size: 0.7em;
  font-weight: bold;
}

.no-content,
.golf-empty-state {
  text-align: center;
  padding: 40px 15px;
  color: #666;
  background: #f8f9ff;
  border-radius: 10px;
  border: 2px dashed #ddd;
}

.no-content-icon,
.golf-empty-icon {
  font-size: 2em;
  margin-bottom: 10px;
  opacity: 0.5;
}

@media (min-width: 768px) {
  .contact-section,
  .course-card,
  .golf-outer-card {
    padding: 25px 30px;
    border-radius: 12px;
    margin-bottom: 20px;
    box-shadow: 0 5px 15px rgba(0, 0, 0, 0.05);
  }
  .contact-item,
  .layout-link,
  .stat-card,
  .golf-inner-item {
    padding: 15px 20px;
    border-radius: 10px;
    box-shadow: 0 2px 10px rgba(0, 0, 0, 0.05);
  }
  .club-card,
  .golf-club-card {
    border-radius: 8px;
    padding: 20px;
  }
  .contact-grid,
  .golf-contact-grid {
    grid-template-columns: repeat(auto-fit, minmax(200px, 1fr));
    gap: 20px;
  }
  .clubs-grid,
  .golf-clubs-grid {
    grid-template-columns: repeat(auto-fill, minmax(300px, 1fr));
  }
  .stats-section,
  .golf-stats-grid {
    grid-template-columns: repeat(auto-fit, minmax(150px, 1fr));
    padding: 25px;
  }
  .search-input,
  .golf-search {
    width: 300px;
    padding: 12px 20px;
    border-radius: 25px;
  }
  .btn,
  .print-button,
  .golf-button {
    padding: 12px 25px;
    border-radius: 25px;
    font-size: 1em;
  }
  .print-button {
    bottom: 30px;
    right: 30px;
    border-radius: 50px;
    padding: 15px 20px;
  }
  .country-tabs,
  .golf-tabs {
    flex-direction: row;
    gap: 10px;
    padding: 15px;
    border-radius: 25px;
  }
  .country-tab,
  .golf-tab {
    padding: 10px 20px;
    border-radius: 20px;
    font-size: 1em;
  }
  .header,
  .golf-header {
    padding: 30px;
  }
  .header::before,
  .golf-header::before {
    font-size: 4em;
    top: 20px;
    right: 30px;
  }
  .map-section,
  .golf-map-section {
    margin: 30px 0;
    border-radius: 15px;
  }
  .map-header,
  .golf-map-header {
    padding: 20px 30px;
    font-size: 1.3em;
  }
  .scorecard,
  .golf-table {
    border-radius: 10px;
    min-width: 800px;
  }
  .scorecard th,
  .golf-table th {
    padding: 15px 8px;
    font-size: 0.9em;
  }
  .scorecard td,
  .golf-table td {
    padding: 12px 8px;
    font-size: 1em;
  }
  .subtotal td {
    font-size: 1.05em;
  }
  .total td {
    font-size: 1.1em;
    padding: 15px 8px;
  }
  .tee-legend,
  .golf-legend {
    padding: 20px 30px;
    gap: 15px;
  }
  .tee-sample,
  .golf-legend-item {
    padding: 8px 12px;
    border-radius: 20px;
    font-size: 0.9em;
  }
  .par-badge,
  .golf-badge {
    padding: 4px 8px;
    border-radius: 15px;
    font-size: 0.8em;
  }
  .no-content,
  .golf-empty-state {
    padding: 60px 20px;
    border-radius: 15px;
  }
  .no-content-icon,
  .golf-empty-icon {
    font-size: 3em;
    margin-bottom: 15px;
  }
}
@media (min-width: 1024px) {
  .clubs-grid,
  .golf-clubs-grid {
    grid-template-columns: repeat(auto-fill, minmax(350px, 1fr));
  }
  .stats-section,
  .golf-stats-grid {
    grid-template-columns: repeat(auto-fit, minmax(200px, 1fr));
    padding: 30px;
  }
  .contact-grid,
  .golf-contact-grid {
    grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
  }
}
@media print {
  .print-button {
    display: none;
  }
  .scorecard,
  .golf-table {
    min-width: auto;
    font-size: 0.8em;
  }
  .scorecard th, .scorecard td,
  .golf-table th,
  .golf-table td {
    padding: 6px 4px;
  }
}
.country-filter {
  margin-bottom: 30px;
  text-align: center;
}

.country-section {
  margin-bottom: 40px;
}

.country-flag {
  font-size: 24px;
}

.country-header {
  text-align: center;
}
.country-header h3 {
  display: inline-block;
  font-size: 2rem !important;
  padding: 0 20px;
}

.club-name {
  text-align: left !important;
  padding: 0 0 10px 0 !important;
  font-size: 1.6rem !important;
}

.club-location {
  font-size: 1.3em;
  margin-bottom: 20px;
  display: flex;
  align-items: center;
  gap: 10px;
}

.club-address {
  font-size: 0.9em;
  color: #888;
  font-style: italic;
}

.stats {
  text-align: center;
}

.search-box {
  margin-bottom: 20px;
  text-align: center;
}

.content-wrapper {
  padding: 40px 30px;
}

.course-card {
  text-align: center;
}

.course-name {
  font-size: 1.3em;
  font-weight: 600;
  color: #2c5f3f;
  margin-bottom: 15px;
}

.layouts-grid {
  display: flex;
  flex-wrap: wrap;
  gap: 15px;
  margin-top: 15px;
  justify-content: center;
}

.layout-link {
  display: flex;
  align-items: center;
  justify-content: space-between;
  color: #2c5f3f;
  font-weight: 500;
  text-decoration: none !important;
  gap: 25px;
}
.layout-link:hover {
  background: #2c5f3f;
  color: white !important;
  border-color: #1e4a2e;
}
.layout-link:hover .par-badge {
  background: rgba(255, 255, 255, 0.2);
}

#mapa {
  width: 100%;
  height: 400px;
}

.mobile-links {
  padding: 20px 30px;
  text-align: center;
  background: #f8f9ff;
}

@media (max-width: 768px) {
  .club-name {
    font-size: 2.2em;
  }
  .content-wrapper {
    padding: 20px;
  }
  .hero-section {
    padding: 30px 20px;
  }
}
.course-title {
  font-size: 2.2em;
  margin: 0 0 10px 0;
  font-weight: bold;
  text-shadow: 2px 2px 4px rgba(0, 0, 0, 0.3);
}

.course-subtitle {
  font-size: 1.3em;
  margin-bottom: 15px;
  opacity: 0.9;
}

.course-info {
  display: flex;
  flex-wrap: wrap;
  gap: 20px;
  align-items: center;
  font-size: 0.95em;
}

.info-badge {
  background: rgba(255, 255, 255, 0.2);
  padding: 8px 15px;
  border-radius: 20px;
  -webkit-backdrop-filter: blur(10px);
          backdrop-filter: blur(10px);
  display: flex;
  align-items: center;
  gap: 8px;
}

.tee-legend-title {
  font-weight: bold;
  color: #2c5f3f;
  margin-right: 10px;
}

.tee-color {
  width: 20px;
  height: 20px;
  border-radius: 50%;
  border: 2px solid rgba(0, 0, 0, 0.1);
}

.scorecard-wrapper {
  padding: 30px;
  overflow-x: auto;
}

.scorecard th:first-child {
  border-top-left-radius: 10px;
}
.scorecard th:last-child {
  border-top-right-radius: 10px;
}

.tee-header {
  font-size: 0.85em;
  font-weight: bold;
  min-width: 60px;
}

.course-rating {
  background: #d0d0d0 !important;
  font-weight: bold;
}

.stat-value {
  font-size: 2em;
  font-weight: bold;
  color: #2c5f3f;
  margin-bottom: 5px;
}

.stat-label {
  color: #666;
  font-size: 0.9em;
  text-transform: uppercase;
  letter-spacing: 0.5px;
}

@media (max-width: 768px) {
  body {
    padding: 10px;
  }
  .header {
    padding: 20px;
  }
  .course-title {
    font-size: 1.8em;
  }
  .course-subtitle {
    font-size: 1.1em;
  }
  .scorecard-wrapper {
    padding: 15px;
  }
  .course-info {
    font-size: 0.85em;
  }
  .info-badge {
    padding: 6px 10px;
  }
}
@media print {
  body {
    background: white;
    padding: 0;
  }
  .container {
    box-shadow: none;
    border-radius: 0;
  }
}/*# sourceMappingURL=main.css.map */