@import url('https://fonts.googleapis.com/css2?family=Poppins:ital,wght@0,100;0,200;0,300;0,400;0,500;0,600;0,700;0,800;0,900;1,100;1,200;1,300;1,400;1,500;1,600;1,700;1,800;1,900&display=swap');
@import url('https://fonts.googleapis.com/css2?family=Sedan:ital@0;1&display=swap');

:root {
  --primary-color: #eabe4fbb;
  --primary-color-dark: #5d8b66;
  --primary-color-blue: #4f92eabb;
  ;
  --text-dark: #dcdada;
  --text-light: #ebeae8;
  --white: #ffffff;
  --max-width: 1400px;
}













.section__header {
  font-size: 42px;
  font-weight: 600;
  color: var(--text-dark);
}

.btn {
  padding: 1rem 2.5rem;
  outline: none;
  border: none;
  font-size: 1.1rem;
  color: var(--white);
  border-radius: 10px;
  transition: 0.3s;
  cursor: pointer;
  margin-bottom: 5px;

}

.btn-primary {
  background-color: var(--primary-color);
  border: 2px solid var(--primary-color);
}

.btn-primary:hover {
  background-color: var(--primary-color-dark);
  border-color: 2px solid var(--primary-color-dark);
}

.btn-secondary {
  background-color: transparent;
  border: 2px solid var(--white);
}

.btn-secondary:hover {
  background-color: rgba(255, 255, 255, 0.1);
}

img {
  display: flex;
  width: 100%;
}

a {
  text-decoration: none;
  transition: 0.3s;
}

html,
body {
  scroll-behavior: smooth;

}

body {
  font-family: "Poppins", sans-serif;
  margin: 0;

}

.navbar {
  background-color: rgba(0, 0, 0, 0.7);
  /* áttetsző fekete háttér */

  display: flex;
  justify-content: space-between;
  align-items: center;

  position: static;
  isolation: isolate;


  margin-inline: auto;
  z-index: 9;
}

.navbar__logo img {
  max-width: 220px;
  z-index: 9999;
}

.navbar-toggle {
  display: none;
  background-color: transparent;
  border: none;
  color: white;
  font-size: 18px;
  cursor: pointer;
}

.nav__links {
  list-style-type: none;
  padding-right: 20px;
  margin-top: 58px;
  display: flex;
  position: absolute;
  top: 40px;
  left: 45px;
  width: 65%;
  padding-bottom: 20px;
  list-style: none;
  display: flex;
  align-items: center;
  justify-content: center;
  flex-direction: column-reverse;
  /* gap: 2rem; */
  padding-bottom: 60px;
  transition: .5s;
  z-index: 9998;
  transform: translateY(-150%);
  background-color: rgba(0, 0, 0, 0.92);
}

.nav__links.open {
  transform: translateY(0);
}

.nav__links a {
  font-size: 1.2rem;
  font-weight: 500;
  white-space: nowrap;
  color: var(--white);
  transition: 0.3s;
}

.links {
  margin-right: 20px;
  padding-bottom: 10px;
}


.nav__links li a {
  color: white;
  text-decoration: none;
}

.dropdown {
  position: relative;
}

.dropdown-content {
  display: block;

  background-color: rgba(0, 0, 0, 0.5);
  min-width: auto;
  animation: fadeIn 0.3s ease forwards;
  /* animáció hozzáadása */

  border-top-width: 1px;

  top: auto;
  padding-top: 0px;
}

@media (width > 1000px) {
  .dropdown-content {
    display: none;
    position: absolute;
    background-color: rgba(0, 0, 0, 0.9);
    min-width: auto;
    animation: fadeIn 0.3s ease forwards;
    /* animáció hozzáadása */

    border-top-width: 1px;

    top: auto;
    padding-top: 0px;
  }

  .dropdown-content a {
    display: block;
  }
}

.dropdown-content a {
  color: white;
  padding-bottom: 10px;
  padding-top: 10px;
  text-decoration: none;
  display: block;
}

@media (width > 1000px) {

  .dropdown:hover .dropdown-content,
  .dropdown-content:hover {
    display: block;
  }
}

.nav__header {
  position: static;
  width: 100%;
  display: flex;
  align-items: center;
  justify-content: space-between;
}

.nav__menu__btn {
  font-size: 1.5rem;
  color: var(--white);
  cursor: pointer;
  margin-right: 50px;
  animation: fadeIn 0.5s ease forwards;

}


@keyframes fadeIn {
  from {
    opacity: 0;
  }

  to {
    opacity: 1;
  }
}




@media (width > 1000px) {
  .navbar {
    position: static;
    padding: 1rem;
    display: flex;
    align-items: center;
    justify-content: space-between;

  }

  .nav__links li {

    padding-bottom: 50px;
    padding-top: 20px;
  }

  .nav__header {
    padding: 0;
    background-color: transparent;
    max-width: 1600px;
  }

  .nav__logo img {
    max-width: 250px;
  }

  .logo-white {
    display: none;
  }

  .logo-dark {
    display: flex;
  }

  .nav__menu__btn {
    display: none;
  }

  .nav__links {
    margin-top: 0;
    flex-direction: row;
    justify-content: flex-end;
    gap: 2rem;
    background-color: transparent;
    transform: none;
    left: 290px;
  }

  .nav__links a {
    color: var(--text-dark);
  }

  .nav__links a:hover {
    color: var(--primary-color);
  }


  .strong {
    font-size: large;
  }





}


/*-------------------------------------------------------------*/




.header__container {
  font-family: "Sedan", serif;
  margin-top: 0px;
  padding-top: 0px;
  margin-right: auto;
  width: 70%;
  margin-left: auto;
  padding: 10px;
  text-align: center;
  align-items: center;
  z-index: 0;
}

.header__container h2 {
  margin-bottom: 1rem;
  font-size: 65px;
  font-weight: 800;
  color: var(--white);
  text-align: center;
}

@media (max-width: 600px) {
  .header__container h2 {
    font-size: 45px;
  }
}

.header__container h1 {
  margin-bottom: 1rem;
  font-size: 1.5rem;
  font-weight: 700;
  color: var(--white);
  text-align: center;
}

.header__container p {
  margin-bottom: 2rem;
  font-size: 1.2rem;
  color: var(--white);
  ;
}

.header__btns {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 1rem;
}

.header__image img {
  max-width: 150px;
  margin-inline: auto;
  box-sizing: border-box;

}

@media (max-width: 600px) {
  .header__image img {
    max-width: 80px;
    margin-inline: auto;
    box-sizing: border-box;
  }
}

.row {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 30px;
  width: 80%;
  margin: auto;
  padding-top: 50px;
}

.row h3 {
  display: flex;
  text-align: center;
  justify-content: center;
}

.column1 {
  float: left;
  flex: 33.33%;
  padding-left: 10px;
  padding-right: 10px;
}

.column2 {
  float: left;
  flex: 33.33%;
  padding-left: 10px;
  padding-right: 10px;
}

.column3 {
  float: left;
  flex: 33.33%;
  padding-left: 10px;
  padding-right: 10px;
}

.column4 {
  float: left;
  flex: 33.33%;
  padding-left: 10px;
  padding-right: 10px;
}

.row::after {
  content: "";
  clear: both;
  display: table;
}


/*-------------------------------------------------------------*/



.app__container {
  padding-top: 0;
}

.app__container .section__header {
  margin-bottom: 2rem;
  color: #d3aa46d6;
  ;
  text-align: center;
}

.app__grid {
  max-width: 1024px;
  margin-inline: auto;
  gap: 2rem;
  overflow: hidden;
  display: grid;
  grid-template-areas: "left right";
  grid-template-columns: auto auto;
  align-items: center;
  justify-content: center;
  margin: auto;
}

@media (max-width: 600px) {
  .app__grid {
    margin-right: 30px;
  }
}

.app__image1 img {
  max-width: 275px;
  float: right;
  filter: drop-shadow(0 0 30px rgba(0, 0, 0, 0.1));
  padding-top: 30px;
  padding-bottom: 30px;
}

.app__image2 img {
  max-width: 275px;
  float: left;
  filter: drop-shadow(0 0 30px rgba(0, 0, 0, 0.1));
  padding-top: 30px;
  padding-bottom: 30px;
}

@media (max-width: 600px) {
  .app__image2 img {
    display: none;
  }

  .app__image1 img {
    display: none;
  }
}

.app__image3 img {
  max-width: 275px;
  float: right;
  filter: drop-shadow(0 0 30px rgba(0, 0, 0, 0.1));
  padding-top: 30px;
  padding-bottom: 30px;
}

.app__card h5 {
  margin-bottom: 0.5rem;
  font-size: 1.2rem;
  font-weight: 600;
  color: #eabe4fbb;
}


.app__card h4 {
  margin-bottom: 1rem;
  font-size: 35px;
  font-weight: 600;
  color: #eabe4fbb;
  line-height: 2.75rem;
}

.app__card p {
  color: black;
  line-height: 1.75rem;
}

.section__header h2 {
  color: #eabe4fbb;
}

.download {
  background-image: linear-gradient(rgba(0, 0, 0, 0.6), rgba(0, 0, 0, 0.6)),
    url("../images/csarda.jpg");
  background-size: cover;
  background-position: center center;
  background-repeat: no-repeat;
}

.download__container {
  text-align: center;
}

.download__container .section__header {
  margin-bottom: 1rem;
  color: var(--white);
}

.download__container p {
  margin-bottom: 2rem;
  font-size: 1.2rem;
  color: var(--white);
}

.download__btns {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 1rem;
}


.footer__container .footer__logo {
  margin-bottom: 1rem;
  text-align: center;
}

.footer__logo img {
  max-width: 250px;
  margin-inline: auto;
}

.footer__socials {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 1rem;
}

.footer__socials a {
  font-size: 2rem;
  color: var(--primary-color);
}

.footer__socials a:hover {
  color: var(--primary-color-dark);
}

.footer__bar {
  padding: 1rem;
  font-size: 0.9rem;
  color: black;
  text-align: center;
}