* {
  box-sizing: border-box;
  margin: 0;
  padding: 0;
}

body {
  font-family: "Inter", "Segoe UI", Arial, sans-serif;
  line-height: 1.6;
  color: #222;
  background-color: #fff;
}

.container {
  max-width: 1100px;
  margin: 0 auto;
  padding: 0 20px;
}

/* HEADER */
:root {
  --green: #ffffff;
}

.site-header {
  background-color: var(--green);
  padding: 15px 0;
}

.header-inner {
  display: flex;
  align-items: center;
  justify-content: space-between;
}

.logo img {
  height: 55px;
}

/* MAIN NAV */
.main-nav > ul {
  list-style: none;
  display: flex;
  gap: 30px;
}

.main-nav li {
  position: relative;
}

.main-nav a {
  color: #111;
  text-decoration: none;
  font-weight: 500;
  font-size: 16px;
}

.main-nav a:hover {
  text-decoration: underline;
}

/* DROPDOWN */
.has-dropdown > .dropdown {
  display: none;
  position: absolute;
  top: 100%;
  left: 0;
  background: #ffffff;
  min-width: 260px;
  padding: 20px;
  box-shadow: 0 10px 25px rgba(0,0,0,0.15);
  z-index: 1000;

  /* GRID – presne ako na screenshote */
  display: grid;
  grid-template-columns: repeat(1, 1fr);
  gap: 15px;

  visibility: hidden;
  opacity: 0;
  transition: opacity 0.2s ease;
}

.has-dropdown:hover > .dropdown {
  visibility: visible;
  opacity: 1;
}

.dropdown li {
  list-style: none;
}

.dropdown a {
  display: block;
  padding: 5px 0;
  font-size: 16px;
  color: #111;
  text-decoration: none;
}

.dropdown a:hover {
  text-decoration: underline;
}

/* HERO */
.hero {
  background: #2f7d32;
  color: #fff;
  padding: 80px 0;
}

.hero h1 {
  font-size: 36px;
  margin-bottom: 15px;
}

.hero-subtitle {
  font-size: 18px;
  opacity: 0.9;
}

/* CONTENT */
.content {
  padding: 60px 0;
}

.content h2 {
  margin-top: 40px;
  margin-bottom: 15px;
  font-size: 24px;
}

.content ul {
  margin-left: 20px;
}

.content ul li {
  margin-bottom: 8px;
}

.info-list {
  list-style: none;
  margin-left: 0;
}

.info-list li {
  margin-bottom: 10px;
}

/* CONTACT BOX */
.contact-box {
  margin-top: 50px;
  padding: 30px;
  background: #f5f5f5;
  border-left: 4px solid #2f7d32;
}

/* FOOTER */
.site-footer {
  padding: 30px 0;
  border-top: 1px solid #e5e5e5;
  text-align: center;
  font-size: 14px;
}

.course-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(220px, 1fr));
  gap: 20px;
}

.course-card {
  text-align: center;
}

.course-card img {
  width: 100%;
  height: 150px;
  object-fit: cover;
}

.course-card h5 {
  margin-top: 15px;
  font-weight: 700;
}
.hero {
  min-height: 100vh;              /* výška hero (môžeš dať aj 80vh alebo 100vh) */
  display: flex;
  align-items: center;           /* vertikálne na stred */
  justify-content: center;       /* horizontálne na stred */
  text-align: center;
  color: #fff;
}

.hero h1 {
  font-size: clamp(32px, 5vw, 56px);
  font-weight: 700;
  margin: 0;
}

.hero .hero-subtitle {
  margin-top: 10px;
  font-size: 18px;
  opacity: 0.9;
}
.site-footer {
  background: linear-gradient(
    180deg,
    #2b2b2b 0%,
    #1a1a1a 60%,
    #000000 100%
  );
  color: #ffffff;
  padding: 30px 0;
}

.site-footer p {
  margin: 0;
  text-align: center;
  font-size: 14px;
  opacity: 0.85;
}
.course-card {
  display: block;
  text-decoration: none;
  color: inherit;
}

.course-card:hover {
  transform: translateY(-4px);
}

.course-card img {
  transition: transform 0.3s ease;
}

.course-card:hover img {
  transform: scale(1.03);
}
/* MENŠIE HERO PRE KONTAKT */
.hero-small {
  min-height: 30vh;     /* môžeš dať aj 25vh */
  padding: 40px 0;
}
.map-container {
  margin: 40px 0;
  border-radius: 6px;
  overflow: hidden;
}
/* KONTAKT – LAYOUT */
.contact-layout {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 40px;
  align-items: flex-start;
}

/* FORMULÁR */
.contact-form {
  max-width: 100%;
}

.form-group {
  margin-bottom: 18px;
}

.form-group label {
  display: block;
  margin-bottom: 6px;
  font-weight: 600;
}

.form-group input,
.form-group textarea {
  width: 100%;
  padding: 10px 12px;
  font-size: 16px;
  border: 1px solid #ccc;
  border-radius: 4px;
}

.form-group input:focus,
.form-group textarea:focus {
  outline: none;
  border-color: #2f7d32;
}

/* TLAČIDLO */
.btn-primary {
  background: #2f7d32;
  color: #fff;
  border: none;
  padding: 12px 25px;
  font-size: 16px;
  cursor: pointer;
  border-radius: 4px;
}

.btn-primary:hover {
  background: #256628;
}

/* MAPA */
.map-container {
  margin-top: 40px;
  border-radius: 6px;
  overflow: hidden;
}

/* MOBIL */
@media (max-width: 768px) {
  .contact-layout {
    grid-template-columns: 1fr;
  }
}
