@charset "UTF-8";
/*!
 * Športový klub Vajnory — main stylesheet
 * Compile: sass scss/style.scss styles.css   or   ./watch_scss.sh
 */
:root {
  --font-heading-name: 'Outfit';
  --font-body-name: 'Inter';
  --font-heading: 'Outfit', sans-serif;
  --font-body: 'Inter', sans-serif;
  --letter-spacing-heading: -0.02em;
  --letter-spacing-body: 0px;
  --space-base: 1rem;
  --radius-small: 0.75rem;
  --radius-large: 1.5rem;
  --border-width: 2px;
  --shadow-color: 11 5 7;
  --shadow-offset-x: 0px;
  --shadow-offset-y: 4px;
  --shadow-blur: 24px;
  --shadow-spread: -2px;
  --shadow-opacity: 0.06;
  --shadow-custom: 0px 4px 24px -2px rgba(11, 5, 7, 0.06);
  --shadow-custom-hover: 0px 12px 32px -4px rgba(11, 5, 7, 0.1);
}

*,
*::before,
*::after {
  box-sizing: border-box;
}

html {
  line-height: 1.15;
  -webkit-text-size-adjust: 100%;
}

body {
  margin: 0;
  font-family: -apple-system, BlinkMacSystemFont, "Segoe UI", Roboto, "Helvetica Neue", Arial, sans-serif;
  line-height: 1.6;
  color: #333;
  background-color: #fff;
}

img {
  max-width: 100%;
  height: auto;
  display: block;
}

h1,
h2,
h3,
h4,
h5,
h6 {
  margin: 0 0 1rem 0;
  font-weight: 600;
  line-height: 1.3;
}

p {
  margin: 0 0 1rem 0;
}

a {
  color: inherit;
  text-decoration: none;
}

a:hover {
  text-decoration: none;
}

.container {
  max-width: 1200px;
  margin: 0 auto;
  padding: 0 1rem;
}

.row {
  display: flex;
  flex-wrap: wrap;
  margin: 0 -0.5rem;
}

.col {
  flex: 1;
  padding: 0 0.5rem;
}

.btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  padding: 0.75rem 1.5rem;
  border: 1px solid transparent;
  border-radius: 0.375rem;
  font-size: 1rem;
  font-weight: 500;
  text-align: center;
  text-decoration: none;
  cursor: pointer;
  transition: all 0.2s ease;
  background-color: #007bff;
  color: white;
}

.btn:hover {
  background-color: #0056b3;
  transform: translateY(-1px);
  box-shadow: 0 4px 8px rgba(0, 123, 255, 0.25);
}

.card {
  background: white;
  border: 1px solid #e9ecef;
  border-radius: 0.5rem;
  padding: 1.5rem;
  box-shadow: 0 0.125rem 0.25rem rgba(0, 0, 0, 0.075);
  transition: box-shadow 0.2s ease;
}

.card:hover {
  box-shadow: 0 0.5rem 1rem rgba(0, 0, 0, 0.15);
}

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

.text-left {
  text-align: left;
}

.text-right {
  text-align: right;
}

.mb-1 {
  margin-bottom: 0.25rem;
}

.mb-2 {
  margin-bottom: 0.5rem;
}

.mb-3 {
  margin-bottom: 1rem;
}

.mb-4 {
  margin-bottom: 1.5rem;
}

.d-none {
  display: none;
}

.d-block {
  display: block;
}

.d-flex {
  display: flex;
}

@media (max-width: 768px) {
  .container {
    padding: 0 0.75rem;
  }
  .row {
    flex-direction: column;
  }
  .btn {
    width: 100%;
    margin-bottom: 0.5rem;
  }
}
@media (max-width: 576px) {
  .container {
    padding: 0 0.5rem;
  }
  h1 {
    font-size: 1.75rem;
  }
  h2 {
    font-size: 1.5rem;
  }
  h3 {
    font-size: 1.25rem;
  }
}
html {
  scroll-behavior: smooth;
}

::-webkit-scrollbar {
  width: 8px;
}

::-webkit-scrollbar-track {
  background: #f1f1f1;
}

::-webkit-scrollbar-thumb {
  background: #d1d5db;
  border-radius: 4px;
}

::-webkit-scrollbar-thumb:hover {
  background: #9ca3af;
}

.hero-clip {
  clip-path: polygon(0 0, 100% 0, 100% 92%, 0 100%);
}

.schedule-clip {
  clip-path: polygon(0 5%, 100% 0, 100% 95%, 0 100%);
}

.mobile-menu-enter {
  animation: slideDown 0.28s cubic-bezier(0.16, 1, 0.3, 1) forwards;
}

.mobile-menu-exit {
  animation: slideDown 0.2s cubic-bezier(0.16, 1, 0.3, 1) reverse forwards;
}

.nav-link {
  position: relative;
  transition: color 0.2s;
}

.nav-link::after {
  content: "";
  position: absolute;
  bottom: -4px;
  left: 0;
  width: 0;
  height: 2px;
  background: #f25d34;
  border-radius: 2px;
  transition: width 0.25s ease;
}

.nav-link:hover::after {
  width: 100%;
}

.card-hover {
  transition: transform 0.25s ease, box-shadow 0.25s ease;
}

.card-hover:hover {
  transform: translateY(-4px);
  box-shadow: var(--shadow-custom-hover);
}

.btn-primary {
  transition: transform 0.2s ease, box-shadow 0.2s ease, background-color 0.2s ease;
}

.btn-primary:hover {
  transform: translateY(-2px);
  box-shadow: 0 0 28px rgba(242, 93, 52, 0.35);
}

.btn-primary:active {
  transform: translateY(0);
}

.btn-secondary {
  transition: transform 0.2s ease, background-color 0.2s ease, border-color 0.2s ease;
}

.btn-secondary:hover {
  transform: translateY(-2px);
  background-color: #f3f4f6;
}

.stat-card {
  background: #ffffff;
  border: 1px solid #e5e7eb;
  box-shadow: var(--shadow-custom);
}

.merch-img-wrap {
  background: linear-gradient(135deg, #f3f4f6 0%, #e5e7eb 100%);
}

.input-field {
  transition: border-color 0.2s, box-shadow 0.2s;
}

.input-field:focus {
  border-color: #f25d34;
  box-shadow: 0 0 0 3px rgba(242, 93, 52, 0.12);
  outline: none;
}

.section-badge {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  padding: 6px 16px;
  border-radius: 999px;
  font-size: 0.8rem;
  font-weight: 600;
  letter-spacing: 0.04em;
  text-transform: uppercase;
  margin-bottom: 1rem;
}

.site-logo {
  height: 2.5rem;
  width: auto;
  display: block;
}

/*# sourceMappingURL=styles.css.map */
