@import url("https://fonts.googleapis.com/css2?family=Tajawal:wght@400;700&family=Roboto+Mono:wght@400;700&display=swap");

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

@font-face {
  font-family: 'HacenEgypt';
  src: url('assets/Hacen-Egypt.ttf') format('truetype');
  font-weight: normal;
  font-style: normal;
}

@font-face {
  font-family: 'sip';
  src: url('assets/sip.ttf') format('truetype');
  font-weight: normal;
  font-style: normal;
}

body {
  height: 100vh;
  background: linear-gradient(180deg, #d5cac1 0%, #e2dfdd 100%);
  display: flex;
  justify-content: center;
  align-items: center;
  overflow: hidden;
  font-family: "Roboto Mono", monospace;
}

.container {
  text-align: center;
  position: relative;
  padding: 20px;
  animation: fadeIn 1.5s ease-out;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  gap: 10px;
  margin-top: 20px;
}

.logo-wrapper {
  animation: logoFade 2s ease-in-out;
}

.logo {
  width: 280px;
  max-width: 80vw;
  filter: drop-shadow(0 4px 10px rgba(0, 0, 0, 0.2));
}

.company-ar {
  font-family: "HacenEgypt", sans-serif;
  color: #0c3c80;
  margin-top: 18px;
  font-size: 2rem;
  animation: slideUp 1.5s ease-out forwards;
  font-weight: 900;
}

.company-en {
  color: #1f4b89;
  margin-top: 6px;
  font-size: 1.2rem;
  font-family: "sip", sans-serif;
  opacity: 0.85;
  animation: slideUp 1.8s ease-out forwards;
}

.status {
  margin-top: 28px;
  color: #144ea3;
  font-size: 1.4rem;
  font-weight: bold;
}

.website {
  display: inline-block;
  margin-top: 20px;
  color: #0b3b80;
  text-decoration: none;
  font-size: 1rem;
  transition: color 0.3s ease;
}
.website:hover {
  color: #0076c6;
}

@keyframes fadeIn {
  from {
    opacity: 0;
    transform: translateY(30px);
  }
  to {
    opacity: 1;
    transform: translateY(0);
  }
}

@keyframes logoFade {
  from {
    opacity: 0;
    transform: scale(0.7);
  }
  to {
    opacity: 1;
    transform: scale(1);
  }
}

@keyframes slideUp {
  0% {
    opacity: 0;
    transform: translateY(30px);
  }
  100% {
    opacity: 1;
    transform: translateY(0);
  }
}
