/* Alap stílusok */
body {
  font-family: 'Sora', sans-serif;
  margin: 0;
  padding: 0;
  line-height: 1.6;
}

/* Hero szekció */
.hero {
  min-height: calc(100vh - 60px);
  display: flex;
  justify-content: center;
  position: relative;
  padding-left: 58px;
  background: url('images/hero.webp') center/cover no-repeat;
  background-size: cover;
  background-position: center center;
  background-repeat: no-repeat;
  color: white;
  flex-direction: column;
  justify-content: flex-start;
  padding-top: 100px;
}

.hero-content {
  font-family: 'Arial Black', 'Arial Bold', 'Arial', sans-serif;
  font-size: 110px;
  font-weight: bold;
  color: #fd3e81;
  text-align: left;
  margin: 0px 0 0 0;
  line-height: 1;
}

.hero-content p {
  font-size: 20px;
  color: #fdd835;
  font-family: 'Sora', sans-serif;
  font-weight: 400;
  margin: 250px 0;
}

/* Explore Circle Animation */
.explore-circle {
  position: absolute;
  bottom: 15%;
  left: -20%;
  background-color: #fdd835;
  color: black;
  padding: clamp(20px, 4vw, 50px) clamp(15px, 3vw, 30px);
  border-radius: 50%;
  font-family: 'Sora', sans-serif;
  font-weight: 400;
  text-decoration: none;
  font-size: clamp(0.875rem, 2vw, 1.2rem);
  text-align: center;
  white-space: nowrap;
  animation: cross-screen 10s linear infinite;
  transition: background-color 0.3s ease;
}

.explore-circle:hover {
  background-color: #fd3e81;
  color: white;
}

/* Featured Eyes szekció */
.featured-eyes {
  text-align: center;
  padding: 50px 20px;
  margin-bottom: 80px;
  margin-top: 80px;
  background-color: #fff;
}

.featured-eyes h2 {
  font-family: 'Sora', sans-serif;
  font-weight: 500;
  text-transform: uppercase;
  line-height: 1.4;
  letter-spacing: 1px;
  color: #fd3e81;
}

.featured-eyes p {
  font-family: 'Sora', sans-serif;
  font-weight: 300;
  font-size: 18px;
  color: #555;
  text-align: center;
  max-width: 800px;
  margin: 0 auto;
  line-height: 1.8;
}

.image-container-top {
  display: grid;
  grid-template-columns: 1fr 1fr;
  align-items: center;
  gap: 80px;
  position: relative;
  margin-bottom: 400px;
}

.image-container-top img {
  width: 100%;
  height: auto;
  border-radius: 0;
  opacity: 0;
  transform: translateY(50px);
  transition: all 1s ease-out;
}
.centered-section {
  text-align : center;
  width : 900px;
  max-width : 900px;
  }
  .centered-section img {
  max-width : 50%;
  height : auto;
  opacity : 0;
  transform : translateY(50px);
  transition : all 1s ease-out;
  }
/* Statement szekció */
.statement {
  text-align: center;
  padding: 50px 20px;
  background-color: #ffffff;
  margin-bottom: 100px;
}

.statement h2 {
  font-family: 'Sora', sans-serif;
  font-weight: 500;
  text-transform: uppercase;
  line-height: 1.4;
  letter-spacing: 1px;
  color: #fd3e81;
  margin-bottom: 20px;
}

.statement p {
  font-family: 'Sora', sans-serif;
  font-weight: 300;
  font-size: 18px;
  color: #555;
  text-align: justify;
  max-width: 800px;
  margin: 0 auto;
  line-height: 1.8;
}

/* Animációk */
.fade-in-left {
  opacity: 0;
  transform: translateX(-50px);
  transition: opacity 1s ease-out, transform 1s ease-out;
}

.fade-in-right {
  opacity: 0;
  transform: translateX(50px);
  transition: opacity 1s ease-out, transform 1s ease-out;
}

.fade-in-center {
  opacity: 0;
  transform: translateY(50px);
  transition: opacity 1s ease-out, transform 1s ease-out;
}

.slide-up {
  opacity: 0;
  transform: translateY(50px);
  transition: opacity 1s ease-out, transform 1s ease-out;
}

.slide-up-delay {
  opacity: 0;
  transform: translateY(50px);
  transition: opacity 1s ease-out 0.3s, transform 1s ease-out 0.3s;
}

.animated {
  opacity: 1;
  transform: translateX(0) translateY(0);
}
.image-container {
  display: flex;
  justify-content: space-around;
  align-items: center;
  margin: 20px 0;
}

.image-left-overlap, .image-right-overlap {
  width: 45%; /* A két kép egy sorban jelenjen meg */
}

.featured-eyes {
  padding: 20px;
  text-align: center;
}
img {
  max-width: 100%;
  height: auto;
  display: block;
  margin: 0 auto;
}

.image-container {
  max-width: 90%;
  margin: 0 auto;
  overflow: hidden;
  display: flex;
  justify-content: space-around;
  align-items: center;
  flex-wrap: wrap;
  gap: 20px;
}

.featured-eyes {
  padding: 20px;
  box-sizing: border-box;
}

.image-left, .image-right {
  flex: 1;
  max-width: 45%;
}
.image-left {
  transition-delay: 0.2s;
}

.image-right {
  transition-delay: 0.4s;
}

[data-animation] {
  opacity: 0;
  transform: translateY(20px);
  transition: opacity 1s ease-out, transform 1s ease-out;
}

[data-animation].animated {
  opacity: 1;
  transform: translateY(0);
}

/* Animációs keyframes */
@keyframes cross-screen {
  from {
    transform: translateX(0);
  }
  to {
    transform: translateX(90vw);
  }
}

@keyframes spin {
  from {
    transform: rotate(0deg);
  }
  to {
    transform: rotate(360deg);
  }
}

/* Reszponzív beállítások */
@media (max-width: 768px) {

  .hero-content h1 {
    font-size: 40px;
overflow: hidden;

  }
  
  .hero-content p {
    font-size: 1rem;
  }
  
  .explore-circle {
    bottom: 10%;
    left: -10%;
    padding: 15px 10px;
    font-size: clamp(0.75rem, 1.5vw, 1rem);
  }
  
  .image-container {
    grid-template-columns: 1fr;
    width: 100%;
    gap: 40px;
    margin-bottom: 200px;
  }
  
  @keyframes cross-screen {
    to {
      transform: translateX(80vw);
    }
  }
}

.spacer {
  height: 300px;
}