:root {
  --zelena: #00ea29;
  --oranzova: #ff6e00;
  --svetla: #f5f5f5;
  --region: #000;
  --modra: #0074BA;
}

@font-face { font-family: featuredeck; src: url('webfonts/FeatureDeck-Regular-Web.woff2'); }
@font-face { font-family: featuredeckbold; src: url('webfonts/FeatureDeck-Bold-Web.woff2'); font-weight: bold; }
@font-face { font-family: nationalCB; src: url('webfonts/national-2-compressed-bold.woff2'); }

/* Reset and base styles */
* {
  margin: 0;
  padding: 0;
  box-sizing: border-box;
}

html {
  scroll-behavior: smooth;
}

body {
  font-family: 'nationalCB', -apple-system, BlinkMacSystemFont, "Segoe UI", Roboto, sans-serif;
  line-height: 1.6;
  color: #333;
  background: #fff;
}

.container {
  max-width: 1200px;
  margin: 0 auto;
  padding: 0 20px;
}

/* Navigation */
.navbar {
  position: fixed;
  top: 0;
  left: 0;
  right: 0;
  background: rgba(255, 255, 255, 0.95);
  backdrop-filter: blur(10px);
  border-bottom: 1px solid rgba(0, 0, 0, 0.1);
  z-index: 1000;
  padding: 20px 0;
}

.nav-container {
  max-width: 1200px;
  margin: 0 auto;
  padding: 0 20px;
  display: flex;
  justify-content: space-between;
  align-items: center;
}

.nav-logos {
  display: flex;
  align-items: center;
  gap: 20px;
}

.nav-logo {
  height: 60px;
}

.nav-logo.tm-logo {
  height: 55px;
}

.nav-links {
  display: flex;
  gap: 30px;
}

.nav-links a {
  text-decoration: none;
  color: #333;
  font-weight: 600;
  font-size: 1.3rem;
  transition: color 0.3s ease;
}

.nav-links a:hover {
  color: var(--zelena);
}

/* Mobile menu toggle */
.mobile-menu-toggle {
  display: none;
  flex-direction: column;
  background: none;
  border: none;
  cursor: pointer;
  padding: 5px;
  width: 30px;
  height: 25px;
  justify-content: space-between;
}

.mobile-menu-toggle span {
  display: block;
  width: 100%;
  height: 3px;
  background: #333;
  border-radius: 2px;
  transition: all 0.3s ease;
}

.mobile-menu-toggle.active span:nth-child(1) {
  transform: rotate(45deg) translate(6px, 6px);
}

.mobile-menu-toggle.active span:nth-child(2) {
  opacity: 0;
}

.mobile-menu-toggle.active span:nth-child(3) {
  transform: rotate(-45deg) translate(6px, -6px);
}

/* Main content spacing */
main {
  padding-top: 100px;
}

/* Hero Section */
.hero-section {
  background: linear-gradient(135deg, #f8f9fa 0%, #e9ecef 100%);
  padding: 120px 0 80px 0;
  text-align: center;
}

.hero-content {
  max-width: 1000px;
  margin: 0 auto;
  padding: 0 20px;
}

.hero-main {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 60px;
  margin-bottom: 30px;
}

.hero-image {
  width: 400px;
  height: 500px;
  object-fit: cover;
  border-radius: 15px;
  box-shadow: 0 8px 30px rgba(0, 0, 0, 0.15);
  flex-shrink: 0;
}

.hero-text {
  flex: 1;
  text-align: left;
  max-width: 600px;
}

.hero-text h1 {
  margin-top: 40px;
}

.hero-quote {
  text-align: center;
  margin: 40px auto 0;
  max-width: 600px;
}

.hero-logo {
  width: 200px;
  height: auto;
  margin-bottom: 20px;
}

.hero-section h1 {
  font-family: 'featuredeckbold', sans-serif;
  font-size: 4rem;
  font-weight: 700;
  color: #1a1a1a;
  margin-bottom: 30px;
  letter-spacing: 0.02em;
}

.hero-subtitle {
  font-size: 1.4rem;
  font-weight: 600;
  color: #2c3e50;
  margin-bottom: 20px;
  line-height: 1.5;
}

.hero-description {
  font-size: 1.3rem;
  color: #5a6c7d;
  margin-bottom: 30px;
  font-style: italic;
  line-height: 1.6;
}

.hero-quote {
  font-family: 'featuredeck', serif;
  font-size: 1.3rem;
  font-style: italic;
  color: #7f8c8d;
  border-left: 4px solid var(--zelena);
  padding-left: 20px;
  margin: 30px 0;
  text-align: left;
  max-width: 600px;
  margin-left: auto;
  margin-right: auto;
  line-height: 1.7;
}

/* Sections */
.section {
  padding: 60px 0;
}

.section:nth-child(even) {
  background: #f8f9fa;
}

.section h2 {
  font-family: 'featuredeckbold', sans-serif;
  font-size: 3rem;
  font-weight: 700;
  color: #1a1a1a;
  margin-bottom: 40px;
  text-align: center;
  letter-spacing: 0.01em;
}

.section h3 {
  font-family: 'featuredeckbold', sans-serif;
  font-size: 2.1rem;
  font-weight: 600;
  color: #2c3e50;
  margin-bottom: 20px;
}

/* Bio sections */
.bio-section {
  margin-bottom: 50px;
  display: flex;
  align-items: flex-start;
  gap: 30px;
  flex-wrap: wrap;
}

.bio-section:last-child {
  margin-bottom: 0;
}

.section-image {
  width: 450px;
  height: 300px;
  object-fit: cover;
  border-radius: 10px;
  box-shadow: 0 4px 20px rgba(0, 0, 0, 0.1);
  flex-shrink: 0;
}

.bio-content {
  flex: 1;
  min-width: 300px;
}

.bio-content p {
  font-size: 1.3rem;
  line-height: 1.7;
  margin-bottom: 15px;
  color: #555;
}

/* Vision section */
.vision-intro {
  background: #fff;
  padding: 30px;
  border-radius: 10px;
  box-shadow: 0 2px 10px rgba(0, 0, 0, 0.05);
  margin-bottom: 40px;
}

.vision-intro p {
  font-size: 1.4rem;
  line-height: 1.7;
  color: #2c3e50;
  margin-bottom: 15px;
}

.goals-list ul {
  list-style: none;
  margin-bottom: 40px;
}

.goals-list li {
  font-size: 1.3rem;
  padding: 15px 0;
  border-bottom: 1px solid #e9ecef;
  padding-left: 30px;
  position: relative;
  line-height: 1.6;
}

.goals-list li:before {
  content: "✓";
  position: absolute;
  left: 0;
  color: var(--zelena);
  font-weight: bold;
  font-size: 1.2rem;
}

.section-intro {
  font-size: 1.4rem;
  font-weight: 600;
  color: #2c3e50;
  margin-bottom: 40px;
  text-align: center;
  line-height: 1.6;
}

/* Topic sections */
.topic-section {
  background: #fff;
  border-radius: 15px;
  padding: 40px;
  margin-bottom: 40px;
  box-shadow: 0 4px 20px rgba(0, 0, 0, 0.08);
  transition: all 0.3s ease;
}

.topic-section:hover {
  transform: translateY(-5px);
  box-shadow: 0 8px 30px rgba(0, 0, 0, 0.12);
}

.topic-header {
  display: flex;
  align-items: center;
  gap: 20px;
  margin-bottom: 25px;
}

.topic-icon {
  width: 130px;
  height: 130px;
  object-fit: contain;
}

.topic-section h3 {
  color: #2c3e50;
  margin-bottom: 0;
  font-size: 1.9rem;
  line-height: 1.4;
}

.topic-section p {
  font-size: 1.3rem;
  line-height: 1.7;
  color: #555;
  margin-bottom: 20px;
}

.topic-section ul {
  list-style: none;
  padding: 0;
}

.topic-section li {
  font-size: 1.2rem;
  line-height: 1.6;
  color: #666;
  margin-bottom: 15px;
  padding-left: 25px;
  position: relative;
}

.topic-section li:before {
  content: "→";
  position: absolute;
  left: 0;
  color: var(--zelena);
  font-weight: bold;
}

/* FAQ Section */
.faq-intro {
  text-align: center;
  margin-bottom: 40px;
}

.faq-intro .section-image {
  width: 300px;
  height: 450px;
  object-fit: cover;
}

.faq-list {
  max-width: 800px;
  margin: 0 auto;
}

.faq-item {
  background: #fff;
  border-radius: 10px;
  padding: 30px;
  margin-bottom: 20px;
  box-shadow: 0 2px 10px rgba(0, 0, 0, 0.05);
  transition: all 0.3s ease;
}

.faq-item:hover {
  transform: translateY(-2px);
  box-shadow: 0 4px 20px rgba(0, 0, 0, 0.1);
}

.faq-item h3 {
  color: #2c3e50;
  font-size: 1.5rem;
  margin-bottom: 15px;
  line-height: 1.4;
}

.faq-item p {
  font-size: 1.3rem;
  line-height: 1.6;
  color: #555;
}

.contact-note {
  text-align: center;
  margin-top: 40px;
  padding: 20px;
  background: #f8f9fa;
  border-radius: 10px;
}

.contact-note p {
  font-size: 1.3rem;
  color: #666;
  font-style: italic;
}

/* Footer */
footer {
  background: #2c3e50;
  color: #ecf0f1;
  padding: 40px 0;
  text-align: center;
}

footer .container {
  max-width: 800px;
}

footer div {
  font-size: 1.2rem;
  line-height: 1.6;
  margin-bottom: 1.2em;
}

footer form {
  display: flex;
  justify-content: center;
  align-items: center;
  flex-wrap: wrap;
  gap: 10px;
  margin-bottom: 1.2em;
}

footer input {
  padding: 0.5em;
  border-radius: 5px;
  border: 1px solid #ccc;
  font-size: 1.1rem;
  max-width: 160px;
}

footer input[type="email"] {
  max-width: 180px;
}

footer button {
  padding: 0.5em 1.2em;
  border-radius: 5px;
  border: none;
  background: var(--zelena);
  color: #000;
  font-weight: bold;
  cursor: pointer;
  font-size: 1.1rem;
  transition: all 0.3s ease;
}

footer button:hover {
  background: #27d647;
  transform: translateY(-2px);
}

/* Responsive Design */
@media (max-width: 768px) {
  .mobile-menu-toggle {
    display: flex;
  }

  .nav-links {
    position: fixed;
    top: 100px;
    left: 0;
    right: 0;
    background: rgba(255, 255, 255, 0.98);
    backdrop-filter: blur(10px);
    flex-direction: column;
    padding: 20px;
    box-shadow: 0 2px 20px rgba(0, 0, 0, 0.1);
    transform: translateY(-100%);
    opacity: 0;
    visibility: hidden;
    transition: all 0.3s ease;
  }

  .nav-links.active {
    transform: translateY(0);
    opacity: 1;
    visibility: visible;
  }

  .nav-links a {
    padding: 15px 0;
    border-bottom: 1px solid rgba(0, 0, 0, 0.1);
    text-align: center;
    font-size: 1.2rem;
  }

  .nav-links a:last-child {
    border-bottom: none;
  }

  .hero-section {
    padding: 60px 0;
  }

  .hero-main {
    flex-direction: column;
    gap: 30px;
    text-align: center;
  }

  .hero-image {
    width: 300px;
    height: 350px;
  }

  .hero-text {
    text-align: center;
    max-width: none;
  }

  .hero-text h1 {
    margin-top: 0;
    font-size: 2.5rem;
  }

  .hero-quote {
    max-width: 300px;
    margin: 30px auto 0;
  }

  .hero-subtitle, .hero-description {
    font-size: 1rem;
  }

  .section {
    padding: 40px 0;
  }

  .section h2 {
    font-size: 2rem;
  }

  .bio-section {
    flex-direction: column;
    text-align: center;
    gap: 20px;
  }

  .section-image {
    width: 100%;
    max-width: 500px;
    margin: 0 auto;
  }

  .topic-header {
    flex-direction: column;
    text-align: center;
    gap: 15px;
  }

  .topic-section {
    padding: 25px;
    margin-bottom: 30px;
  }

  .faq-item {
    padding: 20px;
  }

  footer form {
    flex-direction: column;
    align-items: stretch;
    gap: 15px;
  }

  footer input {
    max-width: none;
    margin: 0;
  }

  footer button {
    margin: 0;
  }
}

@media (max-width: 480px) {
  .container, .hero-content, .nav-container {
    padding: 0 15px;
  }

  .hero-section {
    padding: 50px 0;
  }

  .section {
    padding: 30px 0;
  }

  .hero-section h1 {
    font-size: 2rem;
  }

  .section h2 {
    font-size: 1.8rem;
  }

  .topic-section {
    padding: 20px;
    margin-bottom: 20px;
  }

  .faq-item {
    padding: 15px;
  }

  .topic-section h3 {
    font-size: 1.4rem;
  }

  .faq-item h3 {
    font-size: 1.2rem;
  }
}