html,
body {
    font-family: 'Tajawal', serif;
    font-size: 14px;
    font-weight: 300;
    background-image: url('../media/b1.jpg'), linear-gradient(180deg, rgba(211, 214, 223, 1) 0%, rgba(206, 208, 220, 1) 38%, rgba(179, 183, 201, 1) 67%, rgba(123, 132, 175, 1) 100%);
    background-size: cover;
    background-position: center;
    background-repeat: no-repeat;
    overflow-y: auto;
    height: 100%;
}

.logo {
  margin-top: 1rem;
  margin-bottom: 1rem;
  animation: fadeInDown 1.5s ease-out;
  height: 200px;
  width: 200px;
  border-radius: 50%;
  border: 5px solid #fff; /* White border */
  overflow: hidden; /* Ensures the icon stays within the border */
  box-shadow: 0 0 20px rgba(0, 0, 0, 0.2); /* Box shadow for depth */
}

.logo .icon {
  display: flex;
  justify-content: center;
  align-items: center;
  height: 100%;
  width: 100%;
  background-color: black; /* Background color for the icon area */
}


.hero-body {
    padding: 2rem;
}

.button.is-tiktok {
  background-color: black;
  border-color: black;
  color: white;
}

.button.is-tiktok .icon .fab.fa-tiktok {
  color: white;
}

.title {
    font-size: 3rem;
    color: #fff;
    text-shadow: 2px 2px 5px rgba(0, 0, 0, 0.3);
    animation: fadeInDown 1.5s ease-out;
}

.coming-soon {
    color: #e74c3c;
    font-size: 3rem;
    font-weight: 700;
    margin-top: -10px;
    animation: fadeInUp 1.5s ease-out;
    text-shadow: 3px 3px 8px rgba(0, 0, 0, 0.3);
    letter-spacing: 2px;
    text-transform: uppercase;
    background: -webkit-linear-gradient(#f39c12, #d35400);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
}

.subtitle {
    font-size: 1.5rem;
    color: #000; /* Changed to black */
    text-shadow: 1px 1px 3px rgba(0, 0, 0, 0.1);
    margin-top: 1rem;
    animation: fadeInUp 1.5s ease-out;
}

.button.is-medium {
    margin: 0.5rem;
    animation: fadeIn 2s ease-out;
}

a {
    color: #00d1b2;
}

a:hover {
    color: #23d160;
}

.footer-text a {
    color: #fff;
}

.heart {
    font-size: 12px;
    color: red;
    margin: 0 5px 0 5px;
}

@keyframes fadeIn {
    from { opacity: 0; }
    to { opacity: 1; }
}

@keyframes fadeInDown {
    from { opacity: 0; transform: translateY(-50px); }
    to { opacity: 1; transform: translateY(0); }
}

@keyframes fadeInUp {
    from { opacity: 0; transform: translateY(50px); }
    to { opacity: 1; transform: translateY(0); }
}
