* {
  margin: 0;
  padding: 0;
  box-sizing: border-box;
}

body {
  font-family: Arial, sans-serif;
}

.highlight {
  color: deepskyblue !important;
  font-weight: bold;
}

.navbar {
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 10px 20px;
  background-color: #fff;
  box-shadow: 0 2px 4px rgba(0, 0, 0, 0.1);
  flex-wrap: wrap;
}

.logo {
  height: 60px;
  margin: 0 auto;
}

.nav-links {
  list-style: none;
  display: flex;
  gap: 15px;
  position: relative;
  width: 100%;
  justify-content: center;
  flex-wrap: wrap;
  margin-top: 10px;
  font-size: 16px !important;
  padding: 0;
}

.nav-links li {
  position: relative;
}

.nav-links li a {
  text-decoration: none;
  color: #333;
  font-weight: bold;
  padding: 8px;
  display: block;
  font-size: 0.9rem;
}

.nav-links li a:hover {
  color: #007bff;
}

.dropdown-menu {
  display: none;
  position: absolute;
  top: 100%;
  left: 0;
  background-color: #fff;
  border: 1px solid #ddd;
  list-style: none;
  padding: 0;
  min-width: 150px;
  z-index: 10;
}

.dropdown-menu li a {
  padding: 10px 15px;
  color: #333;
}

.dropdown-menu li a:hover {
  background-color: #f0f0f0;
  color: #007bff;
}

.nav-links li:hover .dropdown-menu {
  display: block;
}

:root {
  --primary-color: #06b6d4;
  --primary-hover: #0891b2;
  /*--text-color: #333333;
  --text-muted: #666666;*/
  --light-bg: #f9fafb;
  --dark-bg: #111827;
  --border-color: #e5e7eb;
  --shadow-sm: 0 1px 2px 0 rgba(0, 0, 0, 0.05);
  --shadow-md: 0 4px 6px -1px rgba(0, 0, 0, 0.1), 0 2px 4px -1px rgba(0, 0, 0, 0.06);
  --radius: 0.5rem;
}

body {
  font-family: -apple-system, BlinkMacSystemFont, "Segoe UI", Roboto, Helvetica, Arial, sans-serif;
  color: var(--text-color);
  line-height: 1.5;
}

img {
  max-width: 100%;
  height: auto;
}

.container {
  width: 100%;
  max-width: 1200px;
  margin: 0 auto;
  padding: 0 1rem;
}

/* Typography */
h1,
h2,
h3,
h4,
h5,
h6 {
  font-weight: 700;
  line-height: 1.2;
}

.section-title {
  font-size: 1.75rem;
  margin-bottom: 1rem;
  text-align: center;
}

.section-text {
  color: var(--text-muted);
  margin-bottom: 1.5rem;
  text-align: center;
}

.section-subtitle {
  color: var(--text-muted);
  max-width: 36rem;
  margin: 0 auto 1.5rem;
  text-align: center;
  font-size: 0.95rem;
}

.mobile-menu-toggle {
  display: flex;
  align-items: center;
  justify-content: center;
  width: 2.5rem;
  height: 2.5rem;
  background: transparent;
  border: none;
  border-radius: var(--radius);
  cursor: pointer;
  font-size: 1.25rem;
  margin-left: auto;
}

.mobile-menu-toggle:hover {
  background-color: var(--light-bg);
}

.mobile-menu {
  position: fixed;
  top: 4rem;
  right: 0;
  bottom: 0;
  width: 100%;
  max-width: 16rem;
  background-color: white;
  box-shadow: var(--shadow-md);
  transform: translateX(100%);
  transition: transform 0.3s ease-in-out;
  z-index: 40;
  overflow-y: auto;
}

.mobile-menu.active {
  transform: translateX(0);
}

.mobile-nav {
  display: flex;
  flex-direction: column;
  padding: 1.5rem;
}

.mobile-nav .nav-link {
  padding: 0.75rem 0;
  border-bottom: 1px solid var(--border-color);
}

.mobile-nav .nav-link:last-child {
  border-bottom: none;
}

/* Hero Section */
.hero-section {
  padding: 3rem 0;
  background-image: url("../obrazky/index,team/IMG_7161.JPEG");
  background-size: cover;
  background-position: center;
  background-repeat: no-repeat;
  position: relative;
}

.hero-section::before {
  content: "";
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background-color: rgba(0, 0, 0, 0.5); 
  z-index: 1;
}

.hero-content {
  max-width: 48rem;
  margin: 0 auto;
  text-align: center;
  padding: 0 1rem;
  position: relative;
  z-index: 2;
  color: white; 
}

.hero-text {
  font-size: 1.1rem;
  color: rgba(255, 255, 255, 0.9);
  margin-bottom: 1.5rem;
}


.hero-section {
  padding: 3rem 0;
}

.hero-content {
  max-width: 48rem;
  margin: 0 auto;
  text-align: center;
  padding: 0 1rem;
  opacity: 2;
}

.hero-title {
  font-size: 2rem;
  margin-bottom: 1rem;
}

.accent {
  color: var(--primary-color);
}

.hero-text {
  font-size: 1.1rem;
  color: var(--text-muted);
  margin-bottom: 1.5rem;  
}

/* Buttons */
.button-group {
  display: flex;
  flex-wrap: wrap;
  gap: 0.75rem;
  justify-content: center;
}

.button {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  padding: 0.625rem 1.25rem;
  font-size: 0.875rem;
  font-weight: 500;
  border-radius: var(--radius);
  text-decoration: none;
  transition: all 0.2s;
}

.primary-button {
  background-color: var(--primary-color);
  color: white;
}

.primary-button:hover {
  background-color: var(--primary-hover);
}

.outline-button {
  background-color: transparent;
  color: var(--text-color);
  border: 1px solid var(--border-color);
}

.outline-button:hover {
  background-color: var(--light-bg);
}

.outline-button.light {
  color: white;
  border-color: white;
}

.outline-button.light:hover {
  background-color: rgba(255, 255, 255, 0.1);
}

/* About Section */
.about-section {
  padding: 3rem 0;
  background-color: var(--light-bg);
}

.about-grid {
  display: grid;
  gap: 2rem;
}

.badge {
  display: inline-flex;
  align-items: center;
  padding: 0.25rem 0.75rem;
  font-size: 0.75rem;
  font-weight: 500;
  color: var(--primary-color);
  background-color: rgba(6, 182, 212, 0.1);
  border-radius: 9999px;
  margin-bottom: 1rem;
  font-size: 15px;
}

.link-with-icon {
  display: inline-flex;
  align-items: center;
  color: var(--primary-color);
  font-weight: 500;
  text-decoration: none;
  transition: color 0.2s;
}

.link-with-icon i {
  margin-left: 0.25rem;
  font-size: 0.75rem;
}

.link-with-icon:hover {
  color: var(--primary-hover);
}

.about-image {
  border-radius: var(--radius);
  overflow: hidden;
  box-shadow: var(--shadow-md);
  margin-top: 1.5rem;
}

/* Mission Section */
.mission-section {
  padding: 3rem 0;
}

.mission-header {
  text-align: center;
  margin-bottom: 2rem;
}

.feature-grid {
  display: grid;
  gap: 1.5rem;
  padding: 0 1rem;
}

.feature-card {
  padding: 1.5rem;
  background-color: white;
  border: 1px solid var(--border-color);
  border-radius: var(--radius);
  box-shadow: var(--shadow-sm);
  transition: box-shadow 0.2s;
}

.feature-card:hover {
  box-shadow: var(--shadow-md);
}

.feature-icon {
  display: flex;
  align-items: center;
  justify-content: center;
  width: 3rem;
  height: 3rem;
  background-color: rgba(6, 182, 212, 0.1);
  color: var(--primary-color);
  border-radius: 50%;
  margin-bottom: 1rem;
  font-size: 1.25rem;
}

.feature-title {
  font-size: 1.25rem;
  margin-bottom: 0.5rem;
}

.feature-text {
  color: var(--text-muted);
  font-size: 0.95rem;
}

/* CTA Section */
.cta-section {
  padding: 3rem 0;
  background-color: var(--dark-bg);
  color: white;
}

.cta-content {
  max-width: 48rem;
  margin: 0 auto;
  text-align: center;
  padding: 0 1rem;
}

.cta-section .section-text {
  color: rgba(255, 255, 255, 0.7);
  margin-bottom: 1.5rem;
}

/* Footer */
.site-footer {
  padding: 2rem 0;
  background-color: var(--light-bg);
}

.footer-content {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 1rem;
  padding: 0 1rem;
}

.footer-logo {
  display: flex;
  align-items: center;
  gap: 0.5rem;
  font-weight: 700;
}

.footer-logo img {
  width: 2rem;
  height: 2rem;
  border-radius: 50%;
}

.copyright {
  font-size: 0.875rem;
  color: var(--text-muted);
  text-align: center;
}

/* Small devices (landscape phones) */
@media (min-width: 576px) {
  .container {
    padding: 0 1.5rem;
  }

  .section-title {
    font-size: 2rem;
  }

  .hero-title {
    font-size: 2.5rem;
  }

  .hero-text {
    font-size: 1.15rem;
  }

  .mobile-menu {
    width: 16rem;
  }

  .feature-grid {
    grid-template-columns: repeat(2, 1fr);
  }
}

/* Medium devices (tablets) */
@media (min-width: 768px) {
  .navbar {
    flex-wrap: nowrap;
  }

  .logo {
    height: 75px;
    margin: 0;
  }

  .nav-links {
    width: auto;
    margin-top: 0;
    gap: 20px;
    justify-content: flex-end;
    font-size: 1rem;
  }

  .nav-links li a {
    padding: 10px;
  }

  .section-title {
    font-size: 2.5rem;
  }

  .section-subtitle {
    font-size: 1rem;
    margin-bottom: 2rem;
  }

  .hero-section {
    padding: 4rem 0;
  }

  .hero-title {
    font-size: 3rem;
  }

  .hero-text {
    font-size: 1.2rem;
    margin-bottom: 2rem;
  }

  .button-group {
    gap: 1rem;
  }

  .about-section,
  .mission-section {
    padding: 4rem 0;
  }

  .about-grid {
    grid-template-columns: 1fr 1fr;
    align-items: center;
    gap: 3rem;
  }

  .about-image {
    margin-top: 0;
  }

  .mission-header {
    margin-bottom: 3rem;
  }

  .desktop-nav {
    display: flex;
    align-items: center;
    gap: 1.5rem;
  }

  .mobile-menu-toggle {
    display: none;
  }

  .cta-section {
    padding: 4rem 0;
  }

  .cta-section .section-text {
    margin-bottom: 2rem;
  }

  .site-footer {
    padding: 3rem 0;
  }

  .footer-content {
    flex-direction: row;
    justify-content: space-between;
  }
}

/* Large devices (desktops) */
@media (min-width: 992px) {
  .hero-section {
    padding: 5rem 0;
  }

  .hero-title {
    font-size: 3.5rem;
  }

  .hero-text {
    font-size: 1.25rem;
  }

  .feature-grid {
    grid-template-columns: repeat(3, 1fr);
    gap: 2rem;
  }
}

/* Extra large devices */
@media (min-width: 1200px) {
  .container {
    padding: 0 2rem;
  }

  .hero-title {
    font-size: 4rem;
  }

  .about-grid {
    gap: 4rem;
  }
}

 /* Footer styles */
 .footer {
  width: 100%;
  background-color: #000;
  color: #fff;
  border-top: 1px solid #333;
}

.container {
  max-width: 1200px;
  margin: 0 auto;
  padding: 48px 16px;
}

.footer-grid {
  display: grid;
  grid-template-columns: 1fr;
  gap: 32px;
}

@media (min-width: 768px) {
  .footer-grid {
    grid-template-columns: repeat(2, 1fr);
  }
}

.footer-section {
  margin-bottom: 16px;
}

.footer-heading {
  font-size: 18px;
  font-weight: 500;
  margin-bottom: 16px;
  color: #fff;
}

.footer-text {
  font-size: 14px;
  color: #ccc;
}

.social-links {
  display: flex;
  gap: 16px;
}

.social-link {
  display: flex;
  align-items: center;
  justify-content: center;
  width: 40px;
  height: 40px;
  border-radius: 50%;
  background-color: rgba(255, 255, 255, 0.1);
  transition: background-color 0.2s;
}

.social-link:hover {
  background-color: rgba(255, 255, 255, 0.2);
}

.social-icon {
  width: 20px;
  height: 20px;
  color: #fff;
}

.footer-bottom {
  display: flex;
  flex-direction: column;
  align-items: center;
  margin-top: 48px;
  padding-top: 24px;
  border-top: 1px solid #333;
}

@media (min-width: 768px) {
  .footer-bottom {
    flex-direction: row;
    justify-content: space-between;
  }
}

.copyright {
  font-size: 14px;
  color: #aaa;
  margin-bottom: 16px;
}

@media (min-width: 768px) {
  .copyright {
    margin-bottom: 0;
  }
}

.footer-policies {
  display: flex;
  gap: 16px;
}

.footer-policies a {
  font-size: 14px;
  color: #aaa;
  text-decoration: none;
}

.footer-policies a:hover {
  text-decoration: underline;
  color: #fff;
}