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

body {
  font-family: Arial, sans-serif;
  background-color: #000;
  color: #fff;
  overflow-x: hidden;
}

a {
  text-decoration: none;
  color: inherit;
}

.navbar {
  display: flex;
  justify-content: space-between;
  align-items: center;
  padding: 20px 40px;
  background: #000;
}

.navbar ul {
  list-style: none;
  display: flex;
  gap: 30px;
}

.navbar a {
  color: #fff;
  font-weight: bold;
  text-transform: uppercase;
}

.logo {
  font-size: 1.8rem;
  font-weight: bold;
  color: #00d5ff;
}

.hero {
  min-height: 100vh;
  display: flex;
  align-items: center;
  justify-content: center;
  background-position: center;
  background-size: cover;
  position: relative;
  padding: 40px;
}

.hero.about {
  background: url('../images/woman.png') no-repeat center center;
  background-size: cover;
}

/*.hero.about .text {
  display: flex;
  flex-direction: column;
  align-items: flex-end ; / zarovná doprava /
  text-align: left ;     / text doprava /
}
*/
.hero.about .overlay {
  display: flex;
  justify-content: flex-end; /* Posunie obsah na pravú stranu */
  align-items: center;
  width: 100%;
}


.hero.about .text.about-text {
  width: 50%; /* Kontajner textu zaberá 50% šírky */
  text-align: left;
} 

/*.hero.about .text.about-text p {
    text-align: right;
}*/

/*
.about-text {
  margin-left: auto;
  margin-right: 0;
  text-align: right;
}
.about-text p {
    text-align: right !important;
}
*/

.hero.offer {
  background: url('../images/gym-bg.jpg') no-repeat center center;
  background-size: cover;
}

.hero.contact {
  background: url('../images/map.png') no-repeat center center;
  background-size: cover;
}

.overlay {
  width: 100%;
 /* background: rgba(0, 0, 0, 0.65);*/
  padding: 60px 20px;
}

.text {
  background: rgba(0, 0, 0, 0.5);
  padding: 40px;
  border-radius: 10px;
  color: #f0f0f0;
}

.text h1,
.text h2 {
  font-size: 48px;
  font-weight: 800;
  margin-bottom: 30px;
  color: #00d5ff;
  text-shadow: 1px 1px 5px rgba(0, 0, 0, 0.6);
}

.text p {
  font-size: 20px;
  line-height: 1.8;
  text-align: left;
}
/*
.about-text {
  margin-left: auto;
  margin-right: 0;
  text-align: left;
}*/

.contact-flex {
  display: flex;
  flex-wrap: wrap;
  gap: 40px;
  justify-content: space-between;
  align-items: center;
}

.contact-left {
  flex: 1 1 300px;
}

.map-embed {
  flex: 1 1 400px;
  border-radius: 10px;
  overflow: hidden;
  box-shadow: 0 0 10px #000;
}

.about-text {
  text-align: right;
  margin-left: auto;
  margin-right: 0;
}

@media (max-width: 768px) {
  .navbar ul {
    flex-direction: column;
    gap: 10px;
  }

  .text h1,
  .text h2 {
    font-size: 32px;
  }

  .text p {
    font-size: 16px;
  }

  .about-text {
    text-align: center;
    margin: 0 auto;
  }

  .contact-flex {
    flex-direction: column;
    align-items: center;
  }

  .map-embed iframe {
    width: 100%;
    height: 200px;
  }
}
