/* Alapstílusok */
* {
  margin: 0;
  padding: 0;
  box-sizing: border-box;
}

body {
  font-family: Arial, sans-serif;
  background-color: #f5f5f5;
  color: #333;
  display: flex;
  flex-direction: column;
  min-height: 100vh;
}

/* Fejléc */
header {
  background-color: #222;
  color: white;
  padding: 10px 20px;
  display: flex;
  align-items: center;
  justify-content: center;
  position: relative;
  border-bottom: 4px solid #E53833;
}

.logo {
  position: absolute;
  left: 20px;
}

.logo img {
  height: 46px;
}

.header-title {
  font-size: clamp(18px, 4vw, 24px);
  font-weight: bold;
  background: linear-gradient(90deg, #E53833, #ffffff);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
}

/* Fő tartalom */
main {
  flex: 1;
  display: flex;
  align-items: center;
  justify-content: center;
  padding: 40px 20px;
}

.content {
  text-align: center;
}

.soon-text {
  font-size: clamp(24px, 6vw, 36px);
  margin-bottom: 30px;
}

.dots span {
  opacity: 0;
  animation: dotPulse 1.5s infinite;
}

.dots span:nth-child(1) { animation-delay: 0s; }
.dots span:nth-child(2) { animation-delay: 0.3s; }
.dots span:nth-child(3) { animation-delay: 0.6s; }

@keyframes dotPulse {
  0%   { opacity: 0; transform: translateY(0); }
  50%  { opacity: 1; transform: translateY(-4px); }
  100% { opacity: 0; transform: translateY(0); }
}

/* Social ikonok */
.social-icons {
  display: flex;
  justify-content: center;
  gap: 30px;
  margin-top: 20px;
}

.social-icons a i {
  font-size: clamp(24px, 6vw, 36px);
  color: #222;
  transition: transform 0.2s ease, color 0.2s ease;
}

.social-icons a i:hover {
  transform: scale(1.2);
  color: #E53833;
}

/* Lábléc */
footer#elerhetosegek {
  background-color: #222;
  color: white;
  padding: 40px 20px;
  text-align: center;
  border-top: 4px solid #E53833;
  box-shadow: 0 -4px 10px rgba(0, 0, 0, 0.2);
}

footer#elerhetosegek h2 {
  font-size: clamp(1.2rem, 4vw, 2rem);
  margin-bottom: 20px;
  color: #E53833;
}

footer#elerhetosegek p {
  margin: 10px 0;
  font-size: clamp(1rem, 3vw, 1.1rem);
}


/* Mobil eszközökön: legyen a háttér is sötét (#222) */
@media (max-width: 768px) {
  body {
    background-color: #222;
  }

  .soon-text {
    color: white;
  }

  .social-icons a i {
    color: white;
  }

  .social-icons a i:hover {
    color: #E53833;
  }
}

@media (max-width: 768px) {
  footer#elerhetosegek {
    padding-top: 12px;
    font-size: clamp(0,8rem, 3vw, 1rem);
  }
}

@media (max-width: 768px) {
  .logo img {
  height: 36px;
}
}