/* Reset and base styles */
* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
  }
  
  html {
    scroll-behavior: smooth;
    font-size: 16px;
  }
  
  body {
    font-family: 'Open Sans', Arial, sans-serif;
  }

  nav-links a {
    font-family: 'Open Sans Condensed', Arial, sans-serif;
    font-weight: 400;
    color: white;
    text-decoration: none;
    transition: color 0.3s;
  }
  a {
    color: inherit;
    text-decoration: none;
  }
  a:hover {
    text-decoration: underline;
  }


h1, h2, h3,
.footer-menu a {
  font-family: 'Lora', serif;
  font-weight: normal;
}
  
  /* Navigation */
  header {
    position: sticky;
    top: 0;
    background: #1A1A1A;
    color: white;
    z-index: 1000;
    min-height: 85px;
  }
  
  .navbar {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 1rem;
    max-width: 75rem;
    margin: 0 auto;
  }
  
  .nav-container {
  display: flex;
  align-items: center;   /* Vertikális középre igazítás */
  justify-content: space-between;
  height: 100px;         /* Opcionális: fix magasság a headernek */
}

.logo {
  display: flex;
  align-items: center;   /* Vertikális középre igazítás a logónak */
}

#navbar {
  display: flex;
  align-items: center;   /* Vertikális középre igazítás a menünek */
}
  
  .header-logo {
    
    height: auto;
    max-width: 215px; /* Optional: set a max width for responsiveness */
  }
  
  .nav-container {
    display: flex;
    align-items: center;
    justify-content: space-between;
  }
  
  .nav-links {
    display: flex;
    gap: 1rem;
    list-style: none;
  }
  
  .nav-links a {
    font-family: 'Open Sans Condensed', Arial, sans-serif;
    font-weight: 400;
    color: white;
    text-decoration: none;
    transition: color 0.3s;
  }
  
  .nav-links a:hover,
  .nav-links a.active {
    color: #d4af37;
  }
  
  /* Hamburger for mobile */
  .hamburger {
    display: none;
    flex-direction: column;
    cursor: pointer;
  }
  
  .hamburger div {
    height: 3px;
    width: 25px;
    background: white;
    margin: 4px 0;
  }
  
  @media (max-width: 768px) {
    .nav-links {
      display: none;
      flex-direction: column;
      background: #111;
      position: absolute;
      top: 100%;
      right: 0;
      width: 200px;
    }
    .nav-links.show {
      display: flex;
    }
    .hamburger {
      display: flex;
    }
  }
  
  /* Container wrapper */
  .container {
    width: 100%;
    max-width: 75rem;
    margin: 0 auto;
    padding: 0 1rem;
  }
  
  /* Hero Section */
  .hero {
    width: 100%;
    height: 50vh;
    background-image: url('img/hero_bg.jpg');
    background-size: cover;
    background-position: center;
    color: white;
    display: flex;
    align-items: center;
    text-align: left;

    max-width: 90rem;
    padding: 0 7.5rem;
    margin: 0 auto;
  }
  
  .hero .container {
    padding-left: 50%;
    margin: 0 auto;
  }
  
  .hero h1 {
    font-size: 1.5rem;
    margin-bottom: 1rem;
    line-height: 1.6;
  }
  
  .hero p {
    font-size: 1rem;
    line-height: 1.2;
    font-weight: normal;
  }
  @media (max-width: 960px) {
      .hero .container {
    padding-left: 0;
    margin: 0 auto;
  }

  }
  /* Team & Goals Section */
  .team-goals {
    margin-top: -6rem;
  }
  .team-goals .container {
    padding: 2em 1em;
    display: flex;
    flex-direction: column;
  }
  
  .team-goals .card {
    background: #B5A484;
    color: white;
    text-align: center;
    padding: 1.5rem;
    flex: 1;
  }

  .team-goals .card:nth-child(2) {
    background-color: #AF9B6F;
  }

  .team-goals .card h3 {
    margin-bottom: 1rem;
    font-size: 1rem;
  }

  .team-goals .card p {
    font-size: .875rem;
    font-weight: 100;
    line-height: 1.5;
  }
  
  @media (min-width: 768px) {
    .team-goals .container {
      flex-direction: row;
    }
  }
  .specialties .container,
  .documents .container,
  .contact .container {
    background-color: #E8E9E1;
    margin-top: 1.5rem;
    padding: 0;
  }

  .specialties .container li,
  .documents .container li,
  .contact .container li {
    border-bottom: 1px solid #272e3c1c;
    color: #828282;
    padding: 14px 0 13px 0;
    margin: 0;
    list-style: none;
  } 

    .specialties .container .material-icons,
  .documents .container .material-icons,
  .contact .container .material-icons {
    vertical-align: middle;
    margin-right: 0.5rem;
    color: #B5A484;
    font-size: 1.2rem;
  } 



    .specialties .container .text-section,
  .documents .container .text-section,
  .contact .container .text-section {
    padding: 2rem 1rem;
  }

    .specialties .container h2,
  .documents .container h2,
  .contact .container h2 {
    font-size: 2rem;
    margin-bottom: 1rem;
    color: #6D5C3D;
  }



  .specialties img,
  .documents img {
    max-width: 100%;
    display: block;
  }
  .specialties p,
  .documents p {
    margin: 1rem 0;
    line-height: 1.5;
  }
  .specialties ul,
  .documents ul {
    list-style: none;
    margin: 1rem 1.5rem;
  }

  .specialties ul li,
  .documents ul li {
    margin-bottom: .75rem;
  }




  
  /* Specialties Section */
  .specialties {
    display: flex;
    flex-direction: column;
    gap: 2rem;
    align-items: center;
  }
  
  .specialties .container {
    display: flex;
    flex-direction: column;
    gap: 2rem;
  }
  

  
  @media (min-width: 768px) {
    .specialties .container {
      flex-direction: row;
    }
  
    .specialties .left,
    .specialties .right {
      flex: 1;
    }
  }
  
  /* Documents Section */
  .documents {
    display: flex;
    align-items: center;
  }
  
  .documents .container {
    display: flex;
    flex-direction: column;
    gap: 2rem;
  }
  
  .documents img {
    max-width: 100%;
  }
  
  .document-list {
    list-style: none;
    padding: 0;
  }
  
  .document-list li {
    margin-bottom: 0.5rem;
    font-size: 1rem;
  }
  
  .document-list i {
    margin-right: 0.5rem;
    color: #d4af37;
  }
  
  @media (min-width: 768px) {
    .documents .container {
      flex-direction: row;
    }
  
    .documents .left,
    .documents .right {
      flex: 1;
    }
  }
  
  /* Contact Section */
  .contact {
    display: flex;
    align-items: center;
    margin-bottom: 3rem;
  }
  
  .contact .container {
    display: flex;
    flex-direction: column;
    gap: 2rem;

  }
  
  .contact iframe {
    width: 100%;
    border: none;
    height: 500px;
margin: 0;
  }
  
  @media (min-width: 768px) {
    .contact .container {
      flex-direction: row;
    }
  
    .contact .left,
    .contact .right {
      flex: 1;
      max-height: 500px;
    }
  }
  
  /* Footer */
  footer {
    background: #192335;
    color: white;
    padding: 2em 1em;
    text-align: center;
  }
  
  footer .logo {
    font-weight: bold;
    font-size: 1.2rem;
    margin-bottom: 0.5rem;
  }
  
  .footer-menu {
    margin-top: 1rem;
  }
  
  .footer-menu a {
    color: white;
    margin: 0 0.5rem;
    text-decoration: none;
  }
  
  .footer-menu a:hover {
    text-decoration: underline;
  }
  
  /* Contact Bar */
.contact-bar {
  color: #828282;
  font-family: 'Open Sans Condensed', Arial, sans-serif;
  font-weight: 400;
  font-size: 0.9375rem;
}

.contact-bar-container {
  max-width: 75rem;
  margin: 0 auto;
  padding: 0.5rem 1rem;
  display: flex;
  gap: 2rem;
  align-items: center;
  justify-content: center;
}

.contact-bar .material-icons {
  font-size: 1.2em;
  vertical-align: middle;
  margin-right: 0.2em;
  color: #B5A484;
}

@media (max-width: 768px) {
  .contact-bar-container {
    flex-direction: column;
    align-items: flex-start;
    gap: 0.3rem;
    font-size: 0.95rem;
  }
}

/* Footer Rework */
.footer-container {
  display: flex;
  flex-direction: column;
  align-items: center;
  padding: 2rem 0 1rem 0;
}

.footer-logo {
  display: flex;
  justify-content: center;
  align-items: center;
  width: 100%;
  margin-bottom: 1.5rem;
}

.footer-bottom {
  display: flex;
  justify-content: space-between;
  align-items: flex-start;
  width: 100%;
  max-width: 75rem;
  gap: 2rem;
  border: 1px solid #fff;
  border-width: 1px 0;
  padding: 1rem 0;
  max-width: 50rem;
  opacity: 0.9;
}

.footer_wrap {
  flex: 1;
  text-align: left;
}

.footer-menu {
  display: flex;
  flex-direction: column;
  align-items: flex-start;
  gap: 0.5rem;

  margin: 0;
}
.footer_wrap small {
  padding-top: 1rem;
  display: block;
  opacity: 0.7;
  font-size: .6875rem;
}

@media (max-width: 900px) {
  .footer-bottom {
    flex-direction: column;
    align-items: stretch;
    gap: 1.5rem;
  }
  .footer-menu {
    align-items: flex-start;
  }
}
