/* styles.css */
body {
  margin: 0;
  font-family: "Arial", sans-serif;
  background: linear-gradient(to bottom, #ad4a10, #ecb89b);
  color: #ffffff;
  display: flex;
  justify-content: center;
  align-items: center;
  height: 100vh;
  overflow: hidden;
}

.container {
  text-align: center;
  animation: fadeIn 1.5s ease-in-out;
  padding: 0 20px; /* Για να διασφαλίσουμε ότι το περιεχόμενο δεν κολλάει στις άκρες */
}

.logo-container {
  animation: float 3s infinite ease-in-out;
  margin-bottom: 20px;
}

.logo {
  width: 400px;
  animation: zoomIn 2s ease-in-out;
}

h1 {
  font-size: 1.8rem;
  margin-bottom: 10px;
  color: #ad4a10;
  font-family: sans-serif;
}

p {
  font-size: 1.2rem;
  color: #ad4a10;
  margin-top: 40px;
}

.animation-text {
  margin-top: 60px;
  font-size: 1.2rem;
  letter-spacing: 2px;
  text-transform: uppercase;
  animation: flicker 2s infinite;
  color: #9d3d05;
}

/* Animations */
@keyframes fadeIn {
  from {
    opacity: 0;
    transform: translateY(20px);
  }
  to {
    opacity: 1;
    transform: translateY(0);
  }
}

@keyframes float {
  0%,
  100% {
    transform: translateY(0);
  }
  50% {
    transform: translateY(-10px);
  }
}

@keyframes zoomIn {
  from {
    transform: scale(0.8);
  }
  to {
    transform: scale(1);
  }
}

@keyframes flicker {
  0%,
  100% {
    opacity: 1;
  }
  50% {
    opacity: 0.4;
  }
}

/* Responsive Design */

/* Για μικρότερα tablets και κινητά (πλάτος <= 768px) */
@media screen and (max-width: 768px) {
  .logo {
    width: 150px;
  }

  h1 {
    font-size: 1.5rem;
  }

  p {
    font-size: 1rem;
  }

  .animation-text {
    font-size: 1rem;
  }
}

/* Για πολύ μικρά κινητά (πλάτος <= 480px) */
@media screen and (max-width: 480px) {
  .logo {
    width: 250px;
  }

  h1 {
    font-size: 1.4rem;
  }

  p {
    font-size: 0.9rem;
  }

  .animation-text {
    font-size: 0.9rem;
    letter-spacing: 1.5px;
  }
}
