/* GLOBALNÍ STYLY */

* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
    scroll-behavior: smooth;
    text-decoration: none;
    list-style: none;
    outline: none;
    border: none;
    font-family: var(--body-font);
}

/* Fade-in celé stránky */
body {
  opacity: 0;
  animation: fadeInBody 1.2s ease forwards;
  background-color: var(--bila-barva);
}

@keyframes fadeInBody {
  to {
    opacity: 1;
  }
}

:root{
    --prvni-barva: #019035;
    --prvni-barva-alt: #f5b800;
    --druha-barva: #bf3100;
    --druha-barva-alt: #ec4e05;
    --bila-barva: #fffdf8;
    --cerna-barva: hsl(0,0%,1%);
    --text-barva: rgb(0, 0, 0);
    --body-barva: rgb(0,0,0);
    --container-barva: #e37d00;
    --prechod: conic-gradient(from 150deg at 50% 45%,
            #ec9f05 0deg,
            #d76a03 140deg,
            #bf3100 360deg);

    /*Text*/
    /*1rem = 16px*/
    --logo-font: "bogart", sans-serif;
    --body-font: "Helvetica", sans-serif;
    --max-velikost: 3rem;
    --h1-velikost: 1.5rem;
    --h2-velikost: 1.25rem;
    --h3-velikost: 1rem;
    

    --normalni-velikost: .938rem;
    --mala-velikost: .813rem;
    --nejmensi-velikost: .75rem;

    /*Font weight*/
    --font-regular: 400;
    --font-medium: 500;
    --font-semi-bold: 600;
    --font-bold: 700;
}

/* HLAVIČKA A NAVIGACE */

.sticky{
    position: sticky;
    top: 0;
    z-index: 100;
}

.top-header {
    background: white;
    color: black;
    text-align: center;
    padding: 0.5rem 0;
    cursor: pointer;
}

.top-header ul {
    display: flex;
    justify-content: space-around;
}

.top-header li {
    display: flex;
    align-items: center;
    gap: 6px;
}

.top-header a {
    color: black;
    text-decoration: none;
}

.top-dropdown {
    background: #ffffff;
    color: rgb(0, 0, 0);
    max-height: 0;
    overflow: hidden;
    transition: max-height 0.4s ease;
}

.top-dropdown.active {
    max-height: 400px;
}

.hamburger {
    display: none;
    flex-direction: column;
    cursor: pointer;
    gap: 5px;
    z-index:500;
}

.hamburger span {
    width: 25px;
    height: 3px;
    background: white;
    display: block;
    transition: 0.3s;
}

nav.menu-open .hamburger span:nth-child(1) {
    transform: rotate(45deg) translate(5px, 5px);
}

nav.menu-open .hamburger span:nth-child(2) {
    opacity: 0;
}

nav.menu-open .hamburger span:nth-child(3) {
    transform: rotate(-45deg) translate(6px, -6px);
}

.overlay {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;

    background: rgba(0,0,0,0.5);
    backdrop-filter: blur(4px);

    opacity: 0;
    visibility: hidden;
    transition: 0.4s;

    z-index: 90;
}

.overlay.active {
    opacity: 1;
    visibility: visible;
}

.logo{
    z-index: 9000;
}

.contact-wrapper {
    display: flex;
    justify-content: center;
    gap: 80px;
    max-width: 900px;
    margin: auto;
}

.contact-column h4 {
    margin-bottom: 10px;
    font-size: 18px;
    border-bottom: 2px solid #000000;
    padding-bottom: 5px;
}

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

.contact-column li {
    margin: 8px 0;
}

.contact-column a {
    color: rgb(0, 0, 0);
    text-decoration: none;
    transition: 0.3s;
}

.contact-column a:hover {
    color: var(--druha-barva); /* zlatý efekt */
}

nav ul {
    list-style-type: none;
    margin: 0;
    padding: 0;
    overflow: hidden;
    background-color: var(--prvni-barva);
    height: 5rem;
    display: flex;
    justify-content: space-around;
    box-shadow: 0 4px 20px rgba(0,0,0,.08);
  }
  
nav ul li {
    float: right;
    display: flex;
    align-items: center;
    padding-right: 20px;
  }

.logo a{
    float:left;
    font-size: var(--max-velikost);
    font-family: var(--logo-font);
    font-weight: bold;
    padding-top: 25px;
}

.nav-links{
    font-size: var(--h2-velikost);
    height: 5rem;
    display: flex;
    
}

nav ul li a{
    display: block;
    color: white;
    text-align: center;
    padding: 14px 16px;
    text-decoration: none;
    font-family: var(--body-font);
  }
  
nav ul li a:hover {
    animation: wiggle 0.5s;
  }

@keyframes wiggle {
    25%{
      transform: scale(0.7,1.4);
    }
    50%{
      transform: scale(1.2,0.7);
    }
}

/* ===INDEX=== */

/* ANIMACE SEKCE PŘI SKROLLOVÁNÍ */

.section-animate {
  opacity: 0;
  transform: translateY(50px);
  transition: all 0.8s ease-out;
}

.section-animate.active {
  opacity: 1;
  transform: translateY(0);
}

/* HERO SEKCE */

#hero {
  background: var(--container-barva);
  position: relative;
  overflow: hidden;
  padding-top: 330px;
  padding-bottom: 330px;
}

@media  screen and (min-width: 991px) {
  #hero {
    height: 60vh;
  }
}

.hero-title,
#hero h2 {
  background: var(--bila-barva);
  box-shadow: 0 1rem 3rem rgba(0,0,0,.175);
  border-radius: 50px;
  display: inline-block;
  padding: 8px 24px;
  font-family: var(--logo-font);
  margin-bottom: 2rem;
}

.hero-title {
	font-size: 65px;
  margin-bottom: 1.5rem;
}

.hero-row {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 3rem;
}

.hero-col-text {
    flex: 0 0 58.333%;
}

.hero-col-image {
    flex: 0 0 41.666%;
}

.hero-container {
    width: 80%;
    max-width: 1200px;
    margin: auto;
}

#hero h2 {
	font-size: 27px;
  line-height: 1.2;
}

.hero-text {
  position: relative;
  z-index: 22;
  transform: translateY(-7rem) translateX(-5rem);
}

.hero-button {
  background: #019035;
  border-radius: 50px;
  color: var(--bila-barva);
  font-weight: var(--font-bold);
  padding: 12px 24px;
transition: all 0.3s ease;
}

.hero-button:hover {
  background: #007029;
  color: var(--bila-barva);
}

.hero-image-wrap {
  background: var(--bila-barva);
  border-radius: 100%;
  width: 350px;
  height: 350px;
  position: absolute;
  z-index: 22;
  top: 25%;
  right: 0;
  left: 50%;
  margin: auto;
  pointer-events: none;
}

.img-fluid {
  max-width: 100%;
  height: auto;
}

.hero-image {
  position: absolute;
  z-index: 22;
  top: -30%;
  width: 100%;
  min-width: 500px;
  position: relative;
}

#hero svg {
  position: absolute;
  z-index: 2;
  bottom: 0;
  right: 0;
  left: 0;
  overflow: hidden;
  height: 120%;
  pointer-events: none;
  transform: scaleY(-1) translateX(-13%) translateY(-15%);
}


/* POČÍTADLO */
.level {
  display: flex;
  justify-content: space-around;
  align-items: center;
  background-color: var(--druha-barva-alt, #333);
  padding: 5rem 0;
  color: #ffffff;
  margin: 0 !important;
}

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

.heading {
  font-size: 0.9rem;
  text-transform: uppercase;
  letter-spacing: 1px;
  opacity: 0.7;
  margin-bottom: 0.5rem;
}

.counter {
  color: white;
  width: 200px;
  height: 36px;
  font-size: 2.5rem;
  font-weight: bold;
  line-height: 1;
  letter-spacing: -1px;
}

/* SCROLL ANIMACE */
.section-animate {
  opacity: 0;
  transform: translateY(40px);
  transition: opacity 0.9s cubic-bezier(0.22, 1, 0.36, 1),
              transform 0.9s cubic-bezier(0.22, 1, 0.36, 1);
}

.section-animate.active {
  opacity: 1;
  transform: translateY(0);
}

/* SEKCE O NÁS */

#about-short {
    padding-top: 5rem;
    padding-bottom: 5rem;
    background-color: antiquewhite;
}

.about-grid {
    width: 80%;
    margin: auto;
    display: grid;
    grid-template-columns: 1.1fr 1fr;
    grid-template-rows: auto auto;
    grid-template-areas:
        "image title"
        "image text";
    gap: 30px;
    align-items: stretch;
}

/* LEVÝ SLOUPEC – FOTO */
.about-image {
    grid-area: image;
    display: flex;
    align-items: center;
    justify-content: center;
    overflow: hidden; 
    height: 28rem;
    border-radius: 20px;
    position: relative;
}

.about-image img {
    width: 100%;
    object-fit: contain;
}

/* PRAVÝ HORNÍ BLOK – BAREVNÝ */
.about-title {
    grid-area: title;
    background: var(--prechod);
    border-radius: 20px;
    padding: 40px;
    display: flex;
    align-items: center;
}

.about-title h2 {
    color: #fff;
    font-size: 2.5rem;
    font-family: var(--logo-font);
}

/* PRAVÝ DOLNÍ BLOK – TEXT */
.about-text {
    grid-area: text;
    padding: 20px 10px;
}

.about-text h3 {
    color: var(--cerna-barva);
    margin-bottom: 10px;
}

.about-text p {
    line-height: 1.7;
    color: #333;
}



/* SEKCE SPOKOJENÍ ZÁKAZNÍCI */

#happy-customers{
  margin-left: auto;
  margin-right: auto;
  background: var(--druha-barva-alt);
}

#happy-customers h2{
  text-align: center;
  padding-top: 2rem;
  padding-bottom: 2rem;
  color: var(--bila-barva);
}

.customer-logos {
  display: flex;
  justify-content: center;
  align-items: center;
  gap: 4rem;
}

.logo-item {
  width: 160px;     /* jednotná šířka */
  height: 100px;    /* jednotná výška */
  display: flex;
  justify-content: center;
  align-items: center;
}

.logo-item svg {
  max-width: 120%;
  max-height: 100%;
  fill: var(--bila-barva);
}

.logo-1 svg {
  width: 90%;
}

.logo-2 svg {
  width: 75%;
  padding-bottom: 9px;
}

.logo-3 svg {
  width: 100%;
  padding-bottom: 10px;
}
.logo-4 svg {
  width: 80%;
}
.logo-5 svg {
  width: 80%;
}

.customer-logos .logo-item:nth-child(1) { animation-delay: 2.2s; }
.customer-logos .logo-item:nth-child(2) { animation-delay: 2.4s; }
.customer-logos .logo-item:nth-child(3) { animation-delay: 2.6s; }
.customer-logos .logo-item:nth-child(4) { animation-delay: 2.8s; }
.customer-logos .logo-item:nth-child(5) { animation-delay: 3s; }

@keyframes iconFadeUp {
  to {
    opacity: 1;
    transform: translateY(0);
  }
}

/* SEKCE NAŠE SLUŽBY */
.services{
    padding-top: 5rem;
    padding-bottom: 5rem;
    background-color: antiquewhite;
    text-align: center;
}
.services h1{
    font-size: var(--max-velikost);
    margin-bottom: 3rem;
    font-family: var(--logo-font);
}
.service-card{
    background-color: var(--bila-barva);
    width: 18rem;
    padding: 2rem;
    margin: 1rem;
    border-radius: 10px;
    box-shadow: 0 4px 20px rgba(255, 220, 172, 0.6);
}
.service-icon{
    font-size: 2rem;
    color: var(--druha-barva);
}

.service-card h3{
    font-size: var(--h3-velikost);
    margin-bottom: 1rem;
    margin-top: 0.5rem;
}

.service-card p{
    font-size: var(--normalni-velikost);
    color: #555;
}

.service-card:hover{
    transform: translateY(-10px);
    box-shadow: 0 8px 30px rgba(255, 220, 172, 0.8);
    transition: all 0.3s ease;
}

.allcards{
  display: flex; 
  justify-content: center; 
  gap: 40px; 
  flex-wrap: wrap; 
  padding: 20px;
}

/* === STRÁNKA O NÁS === */

.about-page{
    padding: 2rem 5rem;
    background-color: #fbffdb;
    text-align: center;
}

.about-page-content {
    max-width: 900px;
    margin: 0 auto;
    background-color: #ffffff;
    padding: 50px;
    border-radius: 12px;
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.08);
}

.about-page-content h1 {
    font-size: 2.5rem;
    margin-bottom: 30px;
    color: #2c2c2c;
    text-align: center;
    position: relative;
    font-family: var(--logo-font);
}

.about-page-content h1::after {
    content: "";
    width: 100px;
    height: 5px;
    background-color: var(--prvni-barva);
    display: block;
    margin: 5px auto 0;
    border-radius: 2px;
}

.about-page-content p {
    font-size: 1.1rem;
    line-height: 1.8;
    color: #555;
    margin-bottom: 20px;
}

/* ===== ČASOVÁ OSA ===== */
.about-timeline {
    background-color: #fbffdb;
    padding-bottom: 1px;
}

.about-timeline h2 {
    text-align: center;
    font-size: 2rem;
    margin-bottom: 50px;
    padding-top: 40px;
    font-family: var(--logo-font);
}

.timeline {
    position: relative;
    max-width: 800px;
    margin: 0 auto;
}

.timeline::before {
    content: "";
    position: absolute;
    left: 50%;
    top: 0;
    width: 4px;
    height: 100%;
    background-color: #e0e0e0;
    transform: translateX(-50%);
}

.timeline-item {
    display: flex;
    justify-content: flex-end;
    position: relative;
    margin-bottom: 50px;
    width: 50%;
    padding-right: 40px;
}

.timeline-item:nth-child(even) {
    justify-content: flex-start;
    margin-left: 50%;
    padding-left: 40px;
    padding-right: 0;
}

.timeline-icon {
    position: absolute;
    top: 0;
    right: -22px;
    width: 44px;
    height: 44px;
    background-color: var(--prvni-barva);
    color: #fff;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 1.2rem;
    box-shadow: 0 5px 15px rgba(0, 0, 0, 0.2);
}

.timeline-item:nth-child(even) .timeline-icon {
    left: -22px;
    right: auto;
}

.timeline-content {
    background-color: #ffffff;
    padding: 20px;
    border-radius: 10px;
    box-shadow: 0 8px 25px rgba(0, 0, 0, 0.08);
}

.timeline-content h3 {
    margin-bottom: 10px;
    color: #333;
}

/* TEAM SEKCE */
/* === TEAM SECTION === */
.team-section {
  padding: 80px 20px;
  text-align: center;
  position: relative;
}

.team-title {
  font-size: 2.5rem;
  color: var(--cerna-barva);
  margin-bottom: 10px;
  font-family: var(--logo-font);
}

.team-subtitle {
  font-size: 0.9rem;
  color: #777;
  margin-bottom: 60px;
}

.team-section::before {
  content: "";
  position: absolute;
  top: 55%;
  left: 0;
  width: 100%;
  height: 140px;
  background: var(--prvni-barva);
  z-index: 0;
}

.team-wrapper {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(260px, 1fr));
  gap: 40px;
  max-width: 1100px;
  margin: 0 auto;
  position: relative;
  z-index: 1;
}

/* === CARD === */
.team-card {
  background: #f2f2f2;
  padding: 40px 25px;
  border-radius: 6px;
  box-shadow: 0 10px 30px rgba(0,0,0,.08);
}

.team-photo {
  width: 130px;
  height: 130px;
  margin: 0 auto 20px;
  border-radius: 50%;
  overflow: hidden;
  background: #e0e0e0;
}

.team-photo img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.team-card h3 {
  font-size: 1.1rem;
  margin-bottom: 5px;
}

.team-role {
  font-size: 0.75rem;
  letter-spacing: 1px;
  font-weight: 700;
  color: #777;
  text-transform: uppercase;
}

.team-card p {
  font-size: 0.9rem;
  color: #666;
  margin-top: 15px;
  line-height: 1.6;
}


/* ===== TEXT + FOTKA ===== */
.about-split {
    display: flex;
    gap: 40px;
    margin-top: 40px;
    align-items: center;
    margin-bottom: 40px;
}

.about-text {
    flex: 1;
    margin-left: 3rem;
}

.about-text h2 {
    font-size: 2rem;
    margin-bottom: 20px;
    font-family: var(--logo-font);
}

.about-image {
    flex: 1;
    margin-right: 3rem;
}

.about-image img {
    width: 100%;
    border-radius: 12px;
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.15);
}

/* === SORTIMENT === */
.sortiment-section {
  padding: 80px 20px;
  background: #f8f9fa;
}

.sortiment-container {
  max-width: 1200px;
  margin: auto;
}

.sortiment-title {
  text-align: center;
  font-size: 2.5rem;
  margin-bottom: 10px;
}

.sortiment-subtitle {
  text-align: center;
  color: #666;
  margin-bottom: 50px;
}

.sortiment-category {
  font-size: 1.8rem;
  margin: 40px 0 20px;
}

/* GRID */
.sortiment-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
  gap: 25px;
}

/* CARD */
.product-card {
  background: #fff;
  border-radius: 16px;
  overflow: hidden;
  box-shadow: 0 10px 30px rgba(0,0,0,.08);
  transition: transform .3s ease;
}

.product-card:hover {
  transform: translateY(-6px);
}

.product-card img {
  width: 100%;
  height: 200px;
  object-fit: cover;
}

.product-card h4 {
  font-size: 1.3rem;
  margin: 15px;
}

.product-card p {
  margin: 0 15px 20px;
  color: #555;
}

/* === TAGS === */
.product-card {
  position: relative;
}

.product-tags {
  position: absolute;
  top: 12px;
  left: 12px;
  display: flex;
  gap: 6px;
  z-index: 2;
}

.tag {
  font-size: 0.7rem;
  font-weight: 700;
  padding: 4px 8px;
  border-radius: 999px;
  color: #fff;
  letter-spacing: .5px;
  box-shadow: 0 4px 12px rgba(0,0,0,0.5);
}

/* BARVY */
.tag-cz {
  background: #d32f2f;
}

.tag-bio {
  background: #2e7d32;
}

.tag-season {
  background: #f9a825;
  color: #000;
}

.tag-import {
  background: #1565c0;
}

/* === FILTER BAR === */
.filter-bar {
  display: flex;
  flex-wrap: wrap;
  gap: 10px;
  margin: 30px 0;
}

.filter-btn {
  padding: 8px 16px;
  border-radius: 999px;
  border: 2px solid #ddd;
  background: #fff;
  font-weight: 600;
  cursor: pointer;
  transition: .2s;
}

.filter-btn:hover {
  background: #f5f5f5;
}

.filter-btn.active {
  background: #111;
  color: #fff;
  border-color: #111;
}

/* skrytý produkt */
.product-card.hidden {
  display: none;
}



/* === GALLERY === */
.gallery-section {
  padding: 50px 20px;
  background: #ffffff;
}

.gallery-container {
  max-width: 1200px;
  margin: auto;
}

.gallery-title {
  text-align: center;
  font-size: var(--max-velikost);
  margin-bottom: 50px;
  font-family: var(--logo-font);
  color: var(--cerna-barvaa);
}

/* GRID */
.gallery-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
  gap: 20px;
}

/* ITEM */
.gallery-grid a {
  position: relative;
  overflow: hidden;
  border-radius: 14px;
  box-shadow: 0 10px 30px rgba(0,0,0,.1);
}

.gallery-grid img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform .4s ease;
  box-shadow: 0 10px 30px rgba(0,0,0,.1);
}

/* HOVER */
.gallery-grid a:hover img {
  transform: scale(1.1);
}

/* === CONTACT SECTION === */
.contact-section {
  padding: 50px 20px;
  background-color:#e1ffdb;
  font-family: "Bogart", serif;
}

.contact-container {
  max-width: 1200px;
  margin: auto;
}

.contact-title {
  text-align: center;
  font-size: 2.5rem;
  margin-bottom: 50px;
  font-family: var(--logo-font);
  color:var(--prvni-barva)
}

/* === FORM + MAP === */
.contact-box {
  display: grid;
  grid-template-columns: 2fr 1.5fr;
  gap: 30px;
  background: var(--bila-barva);
  border-radius: 16px;
  overflow: hidden;
  box-shadow: 0 20px 40px rgba(0,0,0,.08);
}

.contact-form {
  padding: 40px;
}

.contact-form h3 {
  margin-bottom: 20px;
}

.contact-form input,
.contact-form textarea {
  width: 100%;
  box-sizing: border-box;
}

/* === FORM === */
.form-row {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 20px;
}

.form-group {
  display: flex;
  flex-direction: column;
  margin-bottom: 15px;
}

.form-group label {
  font-weight: 600;
  margin-bottom: 6px;
}

.form-group input,
.form-group textarea {
  padding: 12px;
  border-radius: 8px;
  border: 1px solid #ccc;
  font-size: 1rem;
  resize: none;
}

.form-group input:focus,
.form-group textarea:focus {
  outline: none;
  border-color: var(--prvni-barva);
}

/* === BUTTON === */
.btn-primary {
  margin-top: 10px;
  padding: 14px;
  border-radius: 10px;
  border: none;
  background: var(--druha-barva);
  color: white;
  font-size: 1rem;
  cursor: pointer;
  transition: background 0.3s ease;
}

.btn-primary:hover {
  background: var(--druha-barva-alt);
}

/* === MAP === */
.contact-map {
  min-height: 100%;
}

#map {
  width: 100%;
  height: 100%;
  min-height: 400px;
  z-index: 5;
}

/* MARKER */
.custom-marker {
  background: none;
}

.custom-marker .pin {
  width: 44px;
  height: 44px;
  background: #d32f2f;
  border-radius: 50%;
  position: relative;
  display: flex;
  align-items: center;
  justify-content: center;

  /* Animace pulse */
  animation: pulse 2.2s infinite;
}

.custom-marker .pin::after {
  content: "";
  position: absolute;
  bottom: -10px;
  left: 50%;
  transform: translateX(-50%);
  border-left: 10px solid transparent;
  border-right: 10px solid transparent;
  border-top: 14px solid #d32f2f;
}

.custom-marker img {
  width: 26px;
  height: 26px;
  background: white;
  border-radius: 50%;
  padding: 3px;
}

/* PULSE efekt */
@keyframes pulse {
  0% {
    box-shadow: 0 0 0 0 rgba(211,47,47,.6);
  }
  70% {
    box-shadow: 0 0 0 18px rgba(211,47,47,0);
  }
  100% {
    box-shadow: 0 0 0 0 rgba(211,47,47,0);
  }
}

/* Hover efekt */
.custom-marker:hover .pin {
  transform: scale(1.1);
  transition: transform 0.25s ease;
}


/* === INFO BOXES === */
.contact-info {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 20px;
  margin-top: 40px;
}

.info-box:hover{
  transform: translateY(-10px);
  transition: transform 0.3s ease;
  box-shadow: 0 8px 30px rgba(174, 255, 172, 0.8);
}

.info-box {
  background: var(--bila-barva);
  padding: 25px;
  border-radius: 14px;
  text-align: center;
  box-shadow: 0 10px 25px rgba(0,0,0,.06);
}

.info-box i {
  font-size: 28px;
  color: var(--prvni-barva);
  margin-bottom: 10px;
}

.info-box a {
  color: var(--prvni-barva);
  text-decoration: none;
}

.info-box p {
  font-weight: 600;
  padding-bottom: 5px;
}

.sklad-list {
  max-height: 0;
  overflow: hidden;
  transition: max-height 0.4s ease;
}

.sklad-list.active {
  max-height: 300px;
}

.sklad-box p {
  cursor: pointer;
}




/* PATA STRÁNKY */
footer{
    background-color: #333;
    color: var(--bila-barva);
    text-align: center;
    padding-top: 2rem;
    padding-bottom: 2rem;
}

footer p{
    font-size: var(--mala-velikost);
    padding-bottom: 0.4rem;
}

footer a{
    font-size: var(--mala-velikost);
    padding-top:0px;
    text-decoration: none;
    color: var(--bila-barva);
    font-weight: bold;
}

footer h3 {
  padding-bottom: 0.5rem;
}

.footer-grid {
    width: 80%;
    margin: auto;
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 3rem;
}

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

