/* Globální styly */
body {
  color: #333;
  font-family: 'Montserrat', 'Segoe UI Emoji','Noto Color Emoji','Apple Color Emoji',sans-serif; 
  background: #f9fdf7; 
}
hr {
  border: none;           
  border-top: 1px solid #ccc; 
  margin: 20px 0;    
  width: 320px;      
}


h1, h2, h3 {
  font-weight: 600;
  font-size: 2rem;
  margin: 0 0 20px;
}

/* ---------------- NAVBAR ---------------- */
.navbar {
  position: fixed;
  top: 15px; 
  left: 0;
  width: 100%;
  height: 80px;
  display: flex;
  justify-content: center; /* Změna z flex-start na center */
  align-items: center; /* Přesunuto z flex-wrap sekce */
  padding: 0 30px;
  background: #ffffff;
  color: #2a5d34;
  box-shadow: 0 2px 5px rgba(0,0,0,0.1);
  transition: all 0.3s ease;
  z-index: 1000;
  box-sizing: border-box;
  flex-wrap: wrap; 
}

.navbar .logo {
  font-size: 1.5rem;
  font-weight: bold;
}

.navbar ul {
  list-style: none;
  display: flex;
  gap: 20px;
  margin-left: 50px;
  padding: 0;
  align-items: center; 
}

/* Dropdown wrapper */
.navbar .dropdown {
  position: relative;
  cursor: pointer;
  margin-left: 25px;
}


.navbar .dropdown-menu {
  display: none;
  position: absolute;
  top: 100%;
  left: 0; 
  background: #ffffff;
  border: 1px solid #cce5cc;
  border-radius: 6px;
  min-width: 140px;
  padding: 10px 0;
  box-shadow: 0 4px 10px rgba(0,0,0,0.1);
  z-index: 999;
  white-space: nowrap;
  margin-top: 0;
}

.navbar .dropdown-menu.show {
  display: block !important;
}

/* Odkazy v dropdownu */
.navbar .dropdown-menu li {
  list-style: none;
  margin: 0;
  padding: 0;
}
.navbar ul li.dropdown:last-child .dropdown-menu {
  left: auto;
  right: 0;
}

.navbar .dropdown-menu li a {
  display: block;
  padding: 12px 20px;
  color: #2a5d34;
  text-decoration: none;
  font-size: 0.95rem;
  transition: background 0.2s, color 0.2s;
}

.navbar .dropdown-menu li a:hover {
  background: #eaf3e8;
  color: #4caf50;
}

.navbar .dropdown:hover .dropdown-menu {
  display: block;
}
.navbar ul li.dropdown:last-child .dropdown-menu {
  left: auto;
  right: 0;
}

.navbar ul li a {
  text-decoration: none;
  color: #2a5d34;
  font-weight: 500;
  font-size: 1rem;
  transition: color 0.3s ease, text-shadow 0.3s ease;
}

.navbar ul li a:hover {
  color: #4caf50;
}

/* Hamburger menu (mobil) */
.menu-toggle {
  display: flex;
  flex-direction: column;
  cursor: pointer;
  gap: 4px;
  padding: 5px;
  transition: transform 0.3s ease;
}

.menu-toggle span {
  width: 25px;
  height: 3px;
  background: #2a5d34;
  border-radius: 2px;
  transition: all 0.3s ease;
  transform-origin: center;
}

/* Animace hamburger menu při otevření */
.menu-toggle.active span:nth-child(1) {
  transform: rotate(45deg) translate(5px, 5px);
}

.menu-toggle.active span:nth-child(2) {
  opacity: 0;
}

.menu-toggle.active span:nth-child(3) {
  transform: rotate(-45deg) translate(7px, -6px);
}

/* Upravte také responzivní část pro mobil */
@media (max-width: 768px) {
  /* Zobrazit hamburger menu */
  .menu-toggle {
    display: flex;
  }

  /* Upravit navbar */
  .navbar {
    justify-content: space-between; /* Přidejte toto */
  }

  /* Skrýt desktop menu standardně */
  .navbar ul {
    display: none;
    position: fixed;
    top: 85px;
    left: 0;
    width: 100%;
    height: calc(100vh - 85px);
    flex-direction: column;
    justify-content: flex-start;
    background: rgba(255, 255, 255, 0.98);
    backdrop-filter: blur(10px);
    padding: 30px 20px;
    box-shadow: 0 5px 15px rgba(0,0,0,0.1);
    gap: 0;
    overflow-y: auto;
  }

  /* Zobrazit mobilní menu při aktivaci */
  .navbar ul.show {
    display: flex;
  }

  .navbar ul li {
    width: 100%;
    border-bottom: 1px solid rgba(42, 93, 52, 0.1);
  }

  .navbar ul li a {
    display: block;
    width: 100%;
    padding: 20px 15px;
    border-radius: 0;
    text-align: left;
    font-size: 1.1rem;
  }
}

/* ---------------- HERO ---------------- */
.hero-img {
  width: 100%;  
  height: 750px;
  overflow: hidden;
  margin: 0;
  border-radius: 10px;
}


body, html {
  margin: 0;
  padding: 0;
  width: 100%;
  height: 100%;
}


.hero-img img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  filter: brightness(40%); 
  border-radius: 10px;
}

.hero-img .overlay {
  position: absolute;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
  color: #f9fdf7;
  text-align: center;
}

.hero-img h1 {
  font-size: 3rem;
}
.hero-img p {
  font-size: 1.2rem;
}

main {
  padding: 40px 20px;
  background: linear-gradient(#f9fdf7);
  margin-top: 105px; /* 15px top-bar + 80px navbar = 95px */
}

.grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
  gap: 20px;
  margin-top: 30px;
}

.card {
  border: 1px solid #cce5cc;
  border-radius: 8px;
  overflow: hidden;
  background: white;
  transition: transform 0.3s;
}
.card:hover {
  transform: scale(1.02);
}
.card img {
  width: 100%;
  height: 180px;
  object-fit: cover;
}
.card h2 {
  padding: 10px 15px 0;
  color: #2a5d34;
}
.card ul {
  list-style: none;
  padding: 10px 15px 20px;
  margin: 0;
}
.card a {
  text-decoration: none;
  color: #2a5d34;
}
.card a:hover {
  text-decoration: underline;
}

/* ---------------- FOOTER ---------------- */
.footer {
  background: #2a5d34;
  color: #fff;
  padding: 40px 30px;
  font-size: 0.9rem;
}

.footer-container {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 40px;
}

.footer-left h3 {
  margin-top: 0;
  color: #fff;
}

.footer-left .contact a {
  color: #a4d494;
  text-decoration: none;
}
.footer-left .contact a:hover {
  text-decoration: underline;
}

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

.footer-right .socials a {
  display: inline-block;
  margin-left: 10px;
  background: rgba(255,255,255,0.1);
  color: white;
  padding: 5px 10px;
  border-radius: 4px;
  text-decoration: none;
  font-size: 0.85rem;
  transition: background 0.2s;
}
.footer-right .socials a:hover {
  background: rgba(255,255,255,0.3);
}

.footer-right .links a {
  color: #a4d494;
  text-decoration: none;
}
.footer-right .links a:hover {
  text-decoration: underline;
}

.footer-right .developer {
  margin-top: 10px;
  color: #cce5cc;
  font-size: 0.8rem;
}
.footer-right .developer a {
  color: #a4d494;
  text-decoration: none;
}
.footer-right .developer a:hover {
  text-decoration: underline;
}
  .menu-toggle {
    display: none;
  }
/* ---------------- RESPONZIVITA ---------------- */
@media (max-width: 992px) {
  .navbar ul {
    gap: 15px;
  }
}

@media (max-width: 768px) {
  .navbar {
    padding: 0 20px;
  }
  .navbar ul {
    display: none;
    flex-direction: column;
    gap: 15px;
    position: absolute;
    top: 60px;
    right: 20px;
    background: rgba(255,255,255,0.95);
    padding: 20px;
    border-radius: 8px;
  }
  .navbar ul.show {
    display: flex;
  }
}
@media (max-width: 768px) {
  .navbar {
    justify-content: center;
  }
  
  .menu-toggle {
    position: absolute;
    display: flex;
    right: 20px;
  }
}
.footer-container {
  grid-template-columns: 1fr;
  text-align: center;
}
.footer-right {
  text-align: center;
}
.hero-img h1 {
  font-size: 2rem;
}
.hero-img p {
  font-size: 1rem;
}


@media (max-width: 480px) {
  .hero-img h1 {
    font-size: 1.6rem;
  }
  .hero-img p {
    font-size: 0.9rem;
  }
}

.top-bar {
  width: 100%;
  height: 25px;
  background-color: #2a5d34; 
  position: fixed;
  top: 0;
  left: 0;
  z-index: 1100; 
}
.google-badge {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 15px;
    padding: 20px;
    background: white;
    border: 2px solid #4285f4;
    border-radius: 10px;
    margin: 20px auto;
    text-decoration: none;
    color: inherit;
    transition: transform 0.3s, box-shadow 0.3s;
    max-width: 300px;
    cursor: pointer;
}

.google-badge:hover {
    transform: translateY(-2px);
    box-shadow: 0 4px 15px rgba(66, 133, 244, 0.2);
    text-decoration: none;
    color: inherit;
}

.google-logo {
    width: 30px;
    height: 30px;
    flex-shrink: 0;
}

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

.rating-score {
    font-size: 1.5rem;
    font-weight: 600;
    color: #2a5d34;
    margin-bottom: 2px;
}

.rating-text {
    color: #666;
    font-size: 0.9rem;
    line-height: 1.2;
}

/* Responzivní verze */
@media (max-width: 768px) {
    .google-badge {
        padding: 15px;
        gap: 12px;
        max-width: 280px;
    }
    
    .google-logo {
        width: 25px;
        height: 25px;
    }
    
    .rating-score {
        font-size: 1.3rem;
    }
    
    .rating-text {
        font-size: 0.8rem;
    }
}

/* -------- SLIDER + THUMBNAILS -------- */
.slider-container {
  max-width: 900px;
  margin: 0 auto;
  text-align: center;
}

.slider-main {
  position: relative;
  border-radius: 15px;
  overflow: hidden;
  box-shadow: 0 8px 25px rgba(0,0,0,0.1);
}

.slider-main img {
  width: 100%;
  height: 500px;
  object-fit: cover;
  display: block;
  border-radius: 15px;
  transition: opacity 0.4s ease;
}

.slider-btn {
  position: absolute;
  top: 50%;
  transform: translateY(-50%);
  background: rgba(255,255,255,0.9);
  border: none;
  width: 45px;
  height: 45px;
  border-radius: 50%;
  font-size: 1.3rem;
  cursor: pointer;
  transition: background 0.3s;
}

.slider-btn:hover {
  background: white;
  box-shadow: 0 4px 10px rgba(0,0,0,0.2);
}

.slider-btn.prev {
  left: 15px;
}

.slider-btn.next {
  right: 15px;
}

.slider-thumbs {
  display: flex;
  justify-content: center;
  gap: 10px;
  margin-top: 15px;
  flex-wrap: wrap;
}

.slider-thumbs img {
  width: 120px;
  height: 80px;
  object-fit: cover;
  border-radius: 8px;
  cursor: pointer;
  opacity: 0.6;
  transition: opacity 0.3s, transform 0.2s;
}

.slider-thumbs img:hover {
  opacity: 0.9;
  transform: scale(1.05);
}

.slider-thumbs img.active {
  border: 3px solid #2a5d34;
  opacity: 1;
}

/* Responzivita */
@media (max-width: 768px) {
  .slider-main img {
    height: 300px;
  }
  .slider-thumbs img {
    width: 80px;
    height: 55px;
  }
}

/* ---------- LIGHTBOX STYL ---------- */
.lightbox {
  display: none;
  position: fixed;
  z-index: 2000;
  left: 0;
  top: 0;
  width: 100%;
  height: 100%;
  background-color: rgba(0,0,0,0.9);
  justify-content: center;
  align-items: center;
  backdrop-filter: blur(3px);
}

.lightbox img {
  max-width: 90%;
  max-height: 90%;
  border-radius: 10px;
  box-shadow: 0 0 20px rgba(0,0,0,0.5);
}

.close-btn {
  position: absolute;
  top: 30px;
  right: 40px;
  font-size: 40px;
  color: white;
  cursor: pointer;
  transition: transform 0.3s;
  font-weight: bold;
}

.close-btn:hover {
  transform: scale(1.2);
}

/* -------- GALERIE S INFORMAČNÍ SEKCÍ -------- */
.slider-wrapper {
  display: flex;
  gap: 40px;
  max-width: 1400px;
  margin: 0 auto;
  align-items: flex-start;
  padding: 0 20px;
}

.slider-container {
  flex: 1;
  max-width: 900px;
}

.gallery-info {
  flex: 0 0 400px;
  background: white;
  border-radius: 15px;
  padding: 40px;
  box-shadow: 0 8px 25px rgba(42, 93, 52, 0.08);
  border: 1px solid rgba(42, 93, 52, 0.1);
  height: fit-content;
  position: sticky;
  top: 120px;
}

.gallery-info h2 {
  color: #2a5d34;
  font-size: 2.2rem;
  margin-bottom: 10px;
  font-weight: 600;
}

.info-subtitle {
  color: #666;
  font-size: 1.1rem;
  margin-bottom: 30px;
  line-height: 1.4;
}

.stats-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 20px;
  margin-bottom: 35px;
}

.stat-item {
  text-align: center;
  padding: 20px;
  background: linear-gradient(135deg, #f9fdf7 0%, #eaf3e8 100%);
  border-radius: 12px;
  border: 2px solid rgba(42, 93, 52, 0.1);
}

.stat-number {
  font-size: 2.5rem;
  font-weight: 700;
  color: #2a5d34;
  line-height: 1;
  margin-bottom: 5px;
}

.stat-label {
  font-size: 0.9rem;
  color: #666;
  font-weight: 500;
  line-height: 1.3;
}

.service-list {
  margin-bottom: 35px;
}

.service-item {
  display: flex;
  align-items: flex-start;
  gap: 15px;
  padding: 20px 0;
  border-bottom: 1px solid rgba(42, 93, 52, 0.1);
}

.service-item:last-child {
  border-bottom: none;
}

.service-item i {
  font-size: 1.5rem;
  color: #2a5d34;
  margin-top: 2px;
  flex-shrink: 0;
}

.service-item h4 {
  color: #2a5d34;
  font-size: 1.1rem;
  font-weight: 600;
  margin: 0 0 5px 0;
}

.service-item p {
  color: #666;
  font-size: 0.95rem;
  margin: 0;
  line-height: 1.4;
}

.cta-section {
  text-align: center;
  margin-top: 30px;
}

.cta-button {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  background: #2a5d34;
  color: white;
  padding: 15px 30px;
  border-radius: 50px;
  text-decoration: none;
  font-weight: 600;
  font-size: 1rem;
  transition: all 0.3s ease;
  box-shadow: 0 4px 15px rgba(42, 93, 52, 0.2);
}

.cta-button:hover {
  background: #4caf50;
  transform: translateY(-2px);
  box-shadow: 0 6px 20px rgba(42, 93, 52, 0.3);
  color: white;
  text-decoration: none;
}

.cta-button i {
  font-size: 1.1rem;
}

@media (max-width: 1200px) {
  .gallery-info {
    flex: 0 0 350px;
    padding: 30px;
  }
  
  .gallery-info h2 {
    font-size: 1.8rem;
  }
}

@media (max-width: 992px) {
  .slider-wrapper {
    flex-direction: column;
    gap: 30px;
  }
  
  .gallery-info {
    flex: 1;
    max-width: none;
    position: static;
  }
  
  .stats-grid {
    grid-template-columns: 1fr 1fr;
  }
}

@media (max-width: 768px) {
  .slider-wrapper {
    padding: 0 15px;
  }
  
  .gallery-info {
    padding: 25px;
  }
  
  .gallery-info h2 {
    font-size: 1.6rem;
  }
  
  .stat-number {
    font-size: 2rem;
  }
  
  .service-item {
    flex-direction: column;
    text-align: center;
    gap: 10px;
  }
  
  .service-item i {
    font-size: 2rem;
    margin: 0;
  }
}

@media (max-width: 480px) {
  .stats-grid {
    grid-template-columns: 1fr;
  }
  
  .gallery-info {
    padding: 20px;
  }
}
.slider-main img {
  width: 100%;
  height: 500px;
  object-fit: cover;
  display: block;
  border-radius: 15px;
  transition: opacity 0.4s ease, transform 0.3s ease;
  cursor: pointer; 
}

.slider-main img:hover {
  transform: scale(1.05); 
}

.slider-main {
  position: relative;
  border-radius: 15px;
  overflow: hidden;
  box-shadow: 0 8px 25px rgba(0,0,0,0.1);
}

.slider-main:hover {
  box-shadow: 0 12px 35px rgba(0,0,0,0.15);
  transition: box-shadow 0.3s ease;
}

.with-image {
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  gap: 20px;
}

.with-image.reverse {
  flex-direction: row-reverse;
}

.with-image .text {
  flex: 1 1 55%;
}

.with-image .image {
  flex: 1 1 40%;
  text-align: center;
}

.with-image img {
  max-width: 100%;
  border-radius: 12px;
  box-shadow: 0 4px 12px rgba(0, 0, 0, 0.1);
}

/* Mini galerie */
.mini-gallery {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(220px, 1fr));
  gap: 15px;
  margin: 30px 0;
}

.mini-gallery img {
  width: 100%;
  border-radius: 10px;
  object-fit: cover;
  height: 200px;
  box-shadow: 0 3px 10px rgba(0, 0, 0, 0.1);
  transition: transform 0.3s;
}

.mini-gallery img:hover {
  transform: scale(1.03);
}

/* Responzivní úpravy */
@media (max-width: 768px) {
  .with-image {
    flex-direction: column;
  }
}

/*Plain text*/
*{
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

body {
    font-family: 'Montserrat', sans-serif;
    line-height: 1.6;
    color: #333;
    background: #f9fdf7;
}

/* Hero Section */
.hero-section {
    background: linear-gradient(135deg, #2a5d34 0%, #4caf50 100%);
    color: white;
    padding: 120px 20px 80px;
    text-align: center;
}

.hero-section h1 {
    font-size: 3rem;
    font-weight: 700;
    margin-bottom: 15px;
}

.hero-section p {
    font-size: 1.2rem;
    opacity: 0.9;
    max-width: 600px;
    margin: 0 auto;
}

/* Main Container */
.container {
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 20px;
}

/* Profile Section */
.profile-section {
    padding: 80px 0;
    background: white;
}

.section-title {
    font-size: 2.5rem;
    font-weight: 700;
    color: #2a5d34;
    text-align: center;
    margin-bottom: 20px;
}

.section-subtitle {
    text-align: center;
    font-size: 1.1rem;
    color: #666;
    margin-bottom: 50px;
    max-width: 800px;
    margin-left: auto;
    margin-right: auto;
}

/* Stats Grid */
.stats-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(200px, 1fr));
    gap: 30px;
    margin: 60px 0;
}

.stat-card {
    background: linear-gradient(135deg, #f9fdf7 0%, #eaf3e8 100%);
    padding: 40px 20px;
    border-radius: 15px;
    text-align: center;
    border: 2px solid rgba(42, 93, 52, 0.1);
    transition: transform 0.3s ease;
}

.stat-card:hover {
    transform: translateY(-5px);
}

.stat-number {
    font-size: 3rem;
    font-weight: 700;
    color: #2a5d34;
    margin-bottom: 10px;
}

.stat-label {
    font-size: 1rem;
    color: #666;
    font-weight: 500;
}

/* Experience Section */
.experience-section {
    padding: 80px 0;
    background: #f9fdf7;
}

.experience-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: 40px;
    margin-top: 50px;
}

.experience-card {
    background: white;
    padding: 40px;
    border-radius: 15px;
    box-shadow: 0 5px 20px rgba(42, 93, 52, 0.08);
    border-left: 5px solid #2a5d34;
}

.experience-card h3 {
    color: #2a5d34;
    font-size: 1.5rem;
    margin-bottom: 20px;
    display: flex;
    align-items: center;
    gap: 15px;
}

.experience-card i {
    font-size: 1.8rem;
}

.experience-card p {
    color: #666;
    line-height: 1.7;
}

.brands {
    margin-top: 15px;
    padding-top: 15px;
    border-top: 1px solid #eee;
    font-weight: 600;
    color: #2a5d34;
}

/* Team Section */
.team-section {
    padding: 80px 0;
    background: white;
}

.team-features {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
    gap: 30px;
    margin-top: 50px;
}

.team-feature {
    padding: 30px;
    background: linear-gradient(135deg, #f9fdf7 0%, #eaf3e8 100%);
    border-radius: 12px;
    text-align: center;
    border: 1px solid rgba(42, 93, 52, 0.1);
}

.team-feature i {
    font-size: 2.5rem;
    color: #2a5d34;
    margin-bottom: 20px;
}

.team-feature h4 {
    color: #2a5d34;
    font-size: 1.2rem;
    margin-bottom: 15px;
    font-weight: 600;
}

.team-feature p {
    color: #666;
}

/* Equipment Section */
.equipment-section {
    padding: 80px 0;
    background: #2a5d34;
    color: white;
}

.equipment-section .section-title,
.equipment-section .section-subtitle {
    color: white;
}

.equipment-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
    gap: 30px;
    margin-top: 50px;
}

.equipment-item {
    background: rgba(255, 255, 255, 0.1);
    padding: 30px;
    border-radius: 12px;
    backdrop-filter: blur(10px);
    border: 1px solid rgba(255, 255, 255, 0.2);
}

.equipment-item i {
    font-size: 2.2rem;
    margin-bottom: 20px;
    color: #a4d494;
}

.equipment-item h4 {
    font-size: 1.2rem;
    margin-bottom: 15px;
    font-weight: 600;
}

/* Values Section */
.values-section {
    padding: 80px 0;
    background: white;
    text-align: center;
}

.values-content {
    max-width: 800px;
    margin: 0 auto;
    font-size: 1.1rem;
    line-height: 1.8;
    color: #666;
}

.cta-box {
    background: linear-gradient(135deg, #2a5d34 0%, #4caf50 100%);
    color: white;
    padding: 40px;
    border-radius: 15px;
    margin-top: 50px;
    text-align: center;
}

.cta-box h3 {
    font-size: 1.8rem;
    margin-bottom: 15px;
    font-weight: 600;
}

.cta-button {
    display: inline-block;
    background: white;
    color: #2a5d34;
    padding: 15px 35px;
    border-radius: 50px;
    text-decoration: none;
    font-weight: 600;
    margin-top: 20px;
    transition: all 0.3s ease;
}

.cta-button:hover {
    transform: translateY(-2px);
    box-shadow: 0 10px 25px rgba(0, 0, 0, 0.2);
}

/* Gallery Additions - doporučení pro obrázky vedle textu */
.with-image {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 30px;
    align-items: start;
    margin-top: 40px;
}

.with-image .text {
    background: #f9f9f9;
    padding: 25px;
    border-radius: 12px;
    box-shadow: 0 2px 8px rgba(0, 0, 0, 0.05);
}

.with-image img {
    width: 100%;
    border-radius: 12px;
    object-fit: cover;
}

/* Responsive Design */
@media (max-width: 768px) {
    .hero-section {
        padding: 100px 20px 60px;
    }

    .hero-section h1 {
        font-size: 2.2rem;
    }

    .section-title {
        font-size: 2rem;
    }

    .stat-number {
        font-size: 2.2rem;
    }

    .experience-card,
    .team-feature,
    .equipment-item {
        padding: 25px;
    }

    .stats-grid {
        grid-template-columns: repeat(2, 1fr);
        gap: 20px;
    }

    .with-image {
        grid-template-columns: 1fr;
    }
}

@media (max-width: 480px) {
    .stats-grid {
        grid-template-columns: 1fr;
    }

    .experience-grid,
    .team-features,
    .equipment-grid {
        grid-template-columns: 1fr;
    }
}


/* Hero sekce pro nabídku práce */
.hero-section {
    background: linear-gradient(135deg, #2a5d34 0%, #4caf50 100%);
    color: white;
    padding: 120px 20px 80px;
    text-align: center;
}

.hero-section h1 {
    font-size: 3rem;
    font-weight: 700;
    margin-bottom: 15px;
}

.hero-section p {
    font-size: 1.2rem;
    opacity: 0.9;
    max-width: 600px;
    margin: 0 auto;
}

.benefits-section {
    padding: 80px 0;
    background: white;
}

.benefits-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: 30px;
    margin-top: 50px;
}

.benefit-card {
    background: #f9fdf7;
    padding: 30px;
    border-radius: 15px;
    text-align: center;
    border: 2px solid rgba(42, 93, 52, 0.1);
    transition: transform 0.3s ease, box-shadow 0.3s ease;
}

.benefit-card:hover {
    transform: translateY(-5px);
    box-shadow: 0 10px 25px rgba(42, 93, 52, 0.1);
}

.benefit-card i {
    font-size: 2.5rem;
    color: #2a5d34;
    margin-bottom: 20px;
}

.benefit-card h3 {
    color: #2a5d34;
    font-size: 1.3rem;
    margin-bottom: 15px;
    font-weight: 600;
}

.benefit-card p {
    color: #666;
    line-height: 1.6;
}

/* Sekce pracovních pozic */
.jobs-section {
    padding: 80px 0;
    background: #f9fdf7;
}

.job-card {
    background: white;
    border-radius: 15px;
    padding: 30px;
    margin-bottom: 25px;
    box-shadow: 0 5px 15px rgba(42, 93, 52, 0.08);
    border-left: 5px solid #2a5d34;
    transition: transform 0.3s ease, box-shadow 0.3s ease;
}

.job-card:hover {
    transform: translateY(-3px);
    box-shadow: 0 8px 25px rgba(42, 93, 52, 0.12);
}

.job-header {
    display: flex;
    justify-content: space-between;
    align-items: flex-start;
    margin-bottom: 20px;
    gap: 20px;
}

.job-title {
    flex: 1;
}

.job-title h3 {
    color: #2a5d34;
    font-size: 1.5rem;
    font-weight: 600;
    margin-bottom: 8px;
}

.job-meta {
    display: flex;
    gap: 15px;
    flex-wrap: wrap;
    margin-bottom: 15px;
}

.job-meta span {
    background: #eaf3e8;
    color: #2a5d34;
    padding: 5px 12px;
    border-radius: 20px;
    font-size: 0.9rem;
    font-weight: 500;
    display: flex;
    align-items: center;
    gap: 5px;
}

.job-meta i {
    font-size: 0.8rem;
}

.job-description {
    color: #666;
    line-height: 1.6;
    margin-bottom: 20px;
    font-size: 1rem;
}

.job-requirements {
    margin-bottom: 20px;
}

.job-requirements h4 {
    color: #2a5d34;
    font-size: 1.1rem;
    margin-bottom: 10px;
    font-weight: 600;
}

.job-requirements ul {
    color: #666;
    padding-left: 20px;
    line-height: 1.5;
}

.job-requirements li {
    margin-bottom: 5px;
}

.apply-btn {
    background: #2a5d34;
    color: white;
    padding: 12px 25px;
    border: none;
    border-radius: 25px;
    font-weight: 600;
    cursor: pointer;
    transition: all 0.3s ease;
    text-decoration: none;
    display: inline-flex;
    align-items: center;
    gap: 8px;
    font-size: 0.95rem;
}

.apply-btn:hover {
    background: #4caf50;
    transform: translateY(-2px);
    box-shadow: 0 5px 15px rgba(42, 93, 52, 0.3);
    color: white;
    text-decoration: none;
}

.apply-btn i {
    font-size: 1rem;
}

.contact-cta-section {
    padding: 80px 0;
    background: linear-gradient(135deg, #2a5d34 0%, #4caf50 100%);
    color: white;
    text-align: center;
}

.cta-content {
    max-width: 800px;
    margin: 0 auto;
}

.cta-content h2 {
    font-size: 2.2rem;
    margin-bottom: 20px;
    font-weight: 700;
}

.cta-content p {
    font-size: 1.1rem;
    margin-bottom: 30px;
    opacity: 0.9;
    line-height: 1.6;
}

.contact-info {
    display: flex;
    justify-content: center;
    gap: 40px;
    flex-wrap: wrap;
    margin-top: 30px;
}

.contact-item {
    display: flex;
    align-items: center;
    gap: 10px;
    background: rgba(255, 255, 255, 0.1);
    padding: 15px 25px;
    border-radius: 30px;
    backdrop-filter: blur(10px);
    border: 1px solid rgba(255, 255, 255, 0.2);
    transition: all 0.3s ease;
}

.contact-item:hover {
    background: rgba(255, 255, 255, 0.2);
    transform: translateY(-2px);
}

.contact-item i {
    font-size: 1.2rem;
}

.contact-item a {
    color: white;
    text-decoration: none;
    font-weight: 500;
}

.contact-item a:hover {
    text-decoration: underline;
}

.no-jobs {
    text-align: center;
    padding: 60px 20px;
    background: white;
    border-radius: 15px;
    margin: 20px 0;
}

.no-jobs i {
    font-size: 4rem;
    color: #ccc;
    margin-bottom: 20px;
}

.no-jobs h3 {
    color: #666;
    margin-bottom: 15px;
}

.no-jobs p {
    color: #999;
    font-size: 1rem;
}

/* Responzivní design */
@media (max-width: 768px) {
    .hero-section {
        padding: 100px 20px 60px;
    }

    .hero-section h1 {
        font-size: 2.2rem;
    }

    .hero-section p {
        font-size: 1rem;
    }

    .benefits-grid {
        grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
        gap: 20px;
    }

    .benefit-card {
        padding: 25px;
    }

    .job-card {
        padding: 20px;
    }

    .job-header {
        flex-direction: column;
        gap: 10px;
    }

    .job-meta {
        gap: 10px;
    }

    .job-meta span {
        font-size: 0.85rem;
        padding: 4px 10px;
    }

    .contact-info {
        flex-direction: column;
        align-items: center;
        gap: 20px;
    }

    .contact-item {
        width: 100%;
        max-width: 300px;
        justify-content: center;
    }

    .cta-content h2 {
        font-size: 1.8rem;
    }

    .cta-content p {
        font-size: 1rem;
    }
}

@media (max-width: 480px) {
    .benefits-grid {
        grid-template-columns: 1fr;
    }

    .benefit-card {
        padding: 20px;
    }

    .benefit-card h3 {
        font-size: 1.2rem;
    }

    .benefit-card i {
        font-size: 2rem;
    }

    .job-card {
        padding: 15px;
    }

    .job-title h3 {
        font-size: 1.3rem;
    }

    .job-meta {
        flex-direction: column;
        gap: 8px;
    }

    .apply-btn {
        width: 100%;
        justify-content: center;
        padding: 15px;
    }
}

@keyframes fadeInUp {
    from {
        opacity: 0;
        transform: translateY(30px);
    }
    to {
        opacity: 1;
        transform: translateY(0);
    }
}

.job-card {
    animation: fadeInUp 0.6s ease-out;
}

.job-card:nth-child(1) { animation-delay: 0.1s; }
.job-card:nth-child(2) { animation-delay: 0.2s; }
.job-card:nth-child(3) { animation-delay: 0.3s; }
.job-card:nth-child(4) { animation-delay: 0.4s; }

.apply-btn:focus {
    outline: 2px solid #fff;
    outline-offset: 2px;
}

.contact-item a:focus {
    outline: 2px solid rgba(255, 255, 255, 0.5);
    outline-offset: 2px;
    border-radius: 4px;
}

/* ==================== KONTAKTNÍ STRÁNKA ==================== */

/* Hero sekce pro kontakt */
.contact-hero {
  padding: 120px 20px 80px;
  background: linear-gradient(135deg, #2a5d34 0%, #4caf50 100%);
  color: white;
}

.hero-content {
  max-width: 1200px;
  margin: 0 auto;
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 60px;
  align-items: center;
}

.hero-text h1 {
  font-size: 3.5rem;
  font-weight: 700;
  margin-bottom: 20px;
  line-height: 1.2;
}

.hero-subtitle {
  font-size: 1.3rem;
  opacity: 0.9;
  line-height: 1.6;
  margin-bottom: 0;
}

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

.hero-image img {
  max-width: 100%;
  border-radius: 20px;
  box-shadow: 0 20px 40px rgba(0, 0, 0, 0.3);
  filter: brightness(1.1);
}

/* Kontaktní main sekce */
.contact-main {
  padding: 80px 0;
  background: #f9fdf7;
}

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

/* Rychlé kontakty */
.quick-contacts {
  margin-bottom: 80px;
}

.contact-cards {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
  gap: 30px;
}

.contact-card {
  background: white;
  padding: 40px 30px;
  border-radius: 20px;
  text-align: center;
  box-shadow: 0 10px 30px rgba(42, 93, 52, 0.08);
  border: 1px solid rgba(42, 93, 52, 0.1);
  transition: all 0.3s ease;
  position: relative;
  overflow: hidden;
}

.contact-card::before {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 4px;
  background: linear-gradient(135deg, #2a5d34, #4caf50);
}

.contact-card:hover {
  transform: translateY(-10px);
  box-shadow: 0 20px 50px rgba(42, 93, 52, 0.15);
}

.card-icon {
  width: 80px;
  height: 80px;
  background: linear-gradient(135deg, #2a5d34, #4caf50);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  margin: 0 auto 25px;
  box-shadow: 0 8px 20px rgba(42, 93, 52, 0.2);
}

.card-icon i {
  font-size: 2rem;
  color: white;
}

.contact-card h3 {
  font-size: 1.4rem;
  color: #2a5d34;
  margin-bottom: 10px;
  font-weight: 600;
}

.contact-card p {
  color: #666;
  margin-bottom: 15px;
  font-size: 1rem;
}

.contact-link {
  display: inline-block;
  color: #2a5d34;
  font-weight: 600;
  font-size: 1.1rem;
  text-decoration: none;
  padding: 8px 0;
  border-bottom: 2px solid transparent;
  transition: border-bottom 0.3s ease;
}

.contact-link:hover {
  border-bottom: 2px solid #4caf50;
}

/* Kontaktní formulář */
.contact-form-section {
  margin-bottom: 80px;
}

.form-container {
  max-width: 800px;
  margin: 0 auto;
  background: white;
  padding: 50px;
  border-radius: 25px;
  box-shadow: 0 15px 40px rgba(42, 93, 52, 0.08);
  border: 1px solid rgba(42, 93, 52, 0.1);
}

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

.form-header h2 {
  font-size: 2.2rem;
  color: #2a5d34;
  margin-bottom: 15px;
  font-weight: 600;
}

.form-header p {
  color: #666;
  font-size: 1.1rem;
  line-height: 1.5;
}

.contact-form {
  display: flex;
  flex-direction: column;
  gap: 25px;
}

.form-row {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 25px;
}

.form-group {
  display: flex;
  flex-direction: column;
}

.form-group label {
  font-weight: 600;
  color: #2a5d34;
  margin-bottom: 8px;
  font-size: 1rem;
}

.form-group input,
.form-group select,
.form-group textarea {
  padding: 15px 20px;
  border: 2px solid #e0e0e0;
  border-radius: 12px;
  font-size: 1rem;
  font-family: 'Montserrat', sans-serif;
  transition: all 0.3s ease;
  background: #fafafa;
}

.form-group input:focus,
.form-group select:focus,
.form-group textarea:focus {
  outline: none;
  border-color: #4caf50;
  background: white;
  box-shadow: 0 0 0 3px rgba(76, 175, 80, 0.1);
}

.form-group textarea {
  resize: vertical;
  min-height: 120px;
}

.checkbox-group {
  flex-direction: row;
  align-items: flex-start;
  gap: 12px;
}

.checkbox-group input[type="checkbox"] {
  width: auto;
  margin: 0;
  margin-top: 2px;
}

.checkbox-group label {
  margin-bottom: 0;
  font-weight: 500;
  color: #666;
  font-size: 0.95rem;
  line-height: 1.4;
}

.submit-btn {
  background: linear-gradient(135deg, #2a5d34, #4caf50);
  color: white;
  border: none;
  padding: 18px 40px;
  border-radius: 50px;
  font-size: 1.1rem;
  font-weight: 600;
  cursor: pointer;
  transition: all 0.3s ease;
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 10px;
  margin-top: 10px;
  box-shadow: 0 8px 20px rgba(42, 93, 52, 0.2);
}

.submit-btn:hover {
  transform: translateY(-3px);
  box-shadow: 0 15px 35px rgba(42, 93, 52, 0.3);
}

.submit-btn:active {
  transform: translateY(-1px);
}

/* Lokační informace */
.location-info {
  margin-bottom: 40px;
}

.info-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 50px;
  background: white;
  padding: 50px;
  border-radius: 25px;
  box-shadow: 0 15px 40px rgba(42, 93, 52, 0.08);
  border: 1px solid rgba(42, 93, 52, 0.1);
}

.company-info h2 {
  font-size: 2rem;
  color: #2a5d34;
  margin-bottom: 30px;
  font-weight: 600;
}

.info-details {
  display: flex;
  flex-direction: column;
  gap: 25px;
}

.info-item {
  display: flex;
  gap: 20px;
  align-items: flex-start;
}

.info-item i {
  font-size: 1.5rem;
  color: #4caf50;
  margin-top: 2px;
  flex-shrink: 0;
}

.info-item div {
  color: #666;
  line-height: 1.6;
}

.info-item strong {
  color: #2a5d34;
  font-weight: 600;
}

/* Mapa placeholder */
.map-placeholder {
  background: linear-gradient(135deg, #2a5d34, #4caf50);
  border-radius: 20px;
  display: flex;
  align-items: center;
  justify-content: center;
  min-height: 300px;
  position: relative;
  overflow: hidden;
}

.map-placeholder::before {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  background: 
    radial-gradient(circle at 30% 20%, rgba(255,255,255,0.1) 0%, transparent 50%),
    radial-gradient(circle at 70% 80%, rgba(255,255,255,0.1) 0%, transparent 50%);
}

.map-content {
  text-align: center;
  color: white;
  z-index: 1;
  position: relative;
}

.map-content i {
  font-size: 3rem;
  margin-bottom: 20px;
  opacity: 0.9;
}

.map-content h3 {
  font-size: 1.5rem;
  margin-bottom: 10px;
  font-weight: 600;
}

.map-content p {
  font-size: 1.1rem;
  margin-bottom: 20px;
  opacity: 0.9;
}

.map-link {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  background: rgba(255, 255, 255, 0.2);
  color: white;
  text-decoration: none;
  padding: 12px 25px;
  border-radius: 30px;
  font-weight: 600;
  transition: all 0.3s ease;
  backdrop-filter: blur(10px);
  border: 1px solid rgba(255, 255, 255, 0.3);
}

.map-link:hover {
  background: rgba(255, 255, 255, 0.3);
  transform: translateY(-2px);
  color: white;
  text-decoration: none;
}

/* ==================== RESPONZIVITA ==================== */

@media (max-width: 992px) {
  .hero-content {
    grid-template-columns: 1fr;
    gap: 40px;
    text-align: center;
  }

  .hero-text h1 {
    font-size: 2.8rem;
  }

  .contact-cards {
    grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
    gap: 25px;
  }

  .form-container {
    padding: 40px 30px;
  }

  .info-grid {
    grid-template-columns: 1fr;
    gap: 40px;
  }
}

@media (max-width: 768px) {
  .contact-hero {
    padding: 100px 20px 60px;
  }

  .hero-text h1 {
    font-size: 2.2rem;
  }

  .hero-subtitle {
    font-size: 1.1rem;
  }

  .contact-main {
    padding: 60px 0;
  }

  .quick-contacts {
    margin-bottom: 60px;
  }

  .contact-form-section {
    margin-bottom: 60px;
  }

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

  .contact-card {
    padding: 30px 20px;
  }

  .form-container {
    padding: 30px 20px;
    border-radius: 20px;
  }

  .form-row {
    grid-template-columns: 1fr;
    gap: 20px;
  }

  .form-header h2 {
    font-size: 1.8rem;
  }

  .info-grid {
    padding: 30px 20px;
    border-radius: 20px;
  }

  .company-info h2 {
    font-size: 1.6rem;
  }

  .map-placeholder {
    min-height: 250px;
  }
}

@media (max-width: 480px) {
  .hero-text h1 {
    font-size: 1.8rem;
  }

  .hero-subtitle {
    font-size: 1rem;
  }

  .contact-card {
    padding: 25px 15px;
  }

  .card-icon {
    width: 60px;
    height: 60px;
    margin-bottom: 20px;
  }

  .card-icon i {
    font-size: 1.5rem;
  }

  .contact-card h3 {
    font-size: 1.2rem;
  }

  .form-container {
    padding: 25px 15px;
  }

  .form-header h2 {
    font-size: 1.5rem;
  }

  .form-header p {
    font-size: 1rem;
  }

  .submit-btn {
    padding: 15px 30px;
    font-size: 1rem;
  }

  .info-grid {
    padding: 25px 15px;
  }

  .company-info h2 {
    font-size: 1.4rem;
  }

  .info-item {
    gap: 15px;
  }

  .info-item i {
    font-size: 1.3rem;
  }

  .map-content h3 {
    font-size: 1.3rem;
  }

  .map-content i {
    font-size: 2.5rem;
  }
}


/* ====================== CAROUSEL STYLY ====================== */

/* Nahrazení původní .hero-img třídy */
.hero-carousel {
  width: 100%;
  height: 750px;
  position: relative;
  overflow: hidden;
  border-radius: 15px;
  box-shadow: 0 15px 50px rgba(0, 0, 0, 0.2);
}

.carousel-container {
  position: relative;
  width: 100%;
  height: 100%;
}

.carousel-slide {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  opacity: 0;
  transition: opacity 0.8s ease-in-out, transform 0.8s ease;
  transform: scale(1.05);
}

.carousel-slide.active {
  opacity: 1;
  transform: scale(1);
}

.carousel-slide img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  filter: brightness(45%);
}

/* Overlay pro text */
.carousel-overlay {
  position: absolute;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
  color: #f9fdf7;
  text-align: center;
  z-index: 10;
  padding: 20px;
  max-width: 90%;
  animation: slideInUp 1s ease-out;
}

.carousel-overlay h1 {
  font-size: 3.5rem;
  font-weight: 700;
  margin-bottom: 20px;
  text-shadow: 2px 2px 8px rgba(0, 0, 0, 0.7);
  line-height: 1.2;
}

.carousel-overlay p {
  font-size: 1.3rem;
  text-shadow: 1px 1px 4px rgba(0, 0, 0, 0.7);
  line-height: 1.5;
  max-width: 800px;
  margin: 0 auto;
}

/* Navigační tlačítka */
.carousel-btn {
  position: absolute;
  top: 50%;
  transform: translateY(-50%);
  background: rgba(255, 255, 255, 0.9);
  border: none;
  width: 60px;
  height: 60px;
  border-radius: 50%;
  font-size: 1.5rem;
  color: #2a5d34;
  cursor: pointer;
  z-index: 20;
  transition: all 0.3s ease;
  backdrop-filter: blur(10px);
  box-shadow: 0 4px 15px rgba(0, 0, 0, 0.2);
  display: flex;
  align-items: center;
  justify-content: center;
}

.carousel-btn:hover {
  background: white;
  transform: translateY(-50%) scale(1.1);
  box-shadow: 0 6px 25px rgba(0, 0, 0, 0.3);
}

.carousel-btn.prev {
  left: 30px;
}

.carousel-btn.next {
  right: 30px;
}

/* Indikátory */
.carousel-indicators {
  position: absolute;
  bottom: 30px;
  left: 50%;
  transform: translateX(-50%);
  display: flex;
  gap: 15px;
  z-index: 20;
}

.indicator {
  width: 15px;
  height: 15px;
  border: 2px solid rgba(255, 255, 255, 0.7);
  border-radius: 50%;
  background: rgba(255, 255, 255, 0.3);
  cursor: pointer;
  transition: all 0.3s ease;
  backdrop-filter: blur(5px);
}

.indicator.active {
  background: white;
  border-color: white;
  transform: scale(1.2);
  box-shadow: 0 2px 10px rgba(255, 255, 255, 0.5);
}

.indicator:hover:not(.active) {
  background: rgba(255, 255, 255, 0.6);
  transform: scale(1.1);
}

/* Animace pro text overlay */
@keyframes slideInUp {
  from {
    opacity: 0;
    transform: translate(-50%, -30%);
  }
  to {
    opacity: 1;
    transform: translate(-50%, -50%);
  }
}

/* Responzivní design */
@media (max-width: 1200px) {
  .hero-carousel {
    height: 650px;
  }
  
  .carousel-overlay h1 {
    font-size: 3rem;
  }
  
  .carousel-overlay p {
    font-size: 1.2rem;
  }
}

@media (max-width: 992px) {
  .hero-carousel {
    height: 550px;
  }
  
  .carousel-overlay h1 {
    font-size: 2.5rem;
  }
  
  .carousel-overlay p {
    font-size: 1.1rem;
  }
  
  .carousel-btn {
    width: 50px;
    height: 50px;
    font-size: 1.3rem;
  }
  
  .carousel-btn.prev {
    left: 20px;
  }
  
  .carousel-btn.next {
    right: 20px;
  }
}

@media (max-width: 768px) {
  .hero-carousel {
    height: 450px;
    border-radius: 10px;
  }
  
  .carousel-overlay h1 {
    font-size: 2rem;
    margin-bottom: 15px;
  }
  
  .carousel-overlay p {
    font-size: 1rem;
  }
  
  .carousel-btn {
    width: 45px;
    height: 45px;
    font-size: 1.2rem;
  }
  
  .carousel-btn.prev {
    left: 15px;
  }
  
  .carousel-btn.next {
    right: 15px;
  }
  
  .carousel-indicators {
    bottom: 20px;
    gap: 12px;
  }
  
  .indicator {
    width: 12px;
    height: 12px;
  }
}

@media (max-width: 480px) {
  .hero-carousel {
    height: 400px;
  }
  
  .carousel-overlay {
    padding: 15px;
  }
  
  .carousel-overlay h1 {
    font-size: 1.7rem;
  }
  
  .carousel-overlay p {
    font-size: 0.9rem;
  }
  
  .carousel-btn {
    width: 40px;
    height: 40px;
    font-size: 1rem;
  }
  
  .carousel-btn.prev {
    left: 10px;
  }
  
  .carousel-btn.next {
    right: 10px;
  }
}

.carousel-slide img {
  transition: transform 8s ease-out;
}

.carousel-slide.active img {
  transform: scale(1.02);
}

.hero-carousel::before {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  background: linear-gradient(
    45deg, 
    transparent 0%, 
    rgba(42, 93, 52, 0.1) 50%, 
    transparent 100%
  );
  z-index: 5;
  pointer-events: none;
}
@media (max-width: 768px) {
  main {
    margin-top: 85px; /* 15px top-bar + 70px navbar = 85px */
  }
    main {
    margin-top: 85px; /* 15px top-bar + 70px navbar = 85px */
  }

  
}

@media (max-width: 768px) {
  .top-bar {
    height: 35px;
  }
}

