/*--------------------------------------------------------------
# Preloader
--------------------------------------------------------------*/
#preloader {
  position: fixed;
  left: 0;
  top: 0;
  z-index: 9999;
  width: 100%;
  height: 100%;
  background: #000;
  display: flex;
  align-items: center;
  justify-content: center;
  animation: hidePreloader 3s forwards;
}

@keyframes hidePreloader {
  0% { opacity: 1; }
  90% { opacity: 1; }
  100% { opacity: 0; visibility: hidden; }
}

.jumper {
  display: flex;
  gap: 10px;
}

.jumper div {
  width: 15px;
  height: 15px;
  background-color: #ffa500;
  border-radius: 50%;
  animation: jump 1s infinite;
}

@keyframes jump {
  0%, 100% { transform: translateY(0); }
  50% { transform: translateY(-20px); }
}

/*--------------------------------------------------------------
# Global Styles
--------------------------------------------------------------*/
body {
  background: linear-gradient(135deg, #000, #222);
  color: #fff;
  font-family: 'Poppins', sans-serif;
  margin: 0;
  padding: 0;
}

/*--------------------------------------------------------------
# Header Area
--------------------------------------------------------------*/
.header-area {
  background: transparent;
  padding: 10px 0;
  text-align: center;
}

/* Logo floating animation */
.logo-img {
  width: 250px;
  animation: logoFloat 2s ease-in-out infinite;
}

@keyframes logoFloat {
  0%, 100% { transform: translateY(0); }
  50% { transform: translateY(-10px); }
}

/*--------------------------------------------------------------
# Welcome Area
--------------------------------------------------------------*/
.welcome-area {
  padding: 40px 0;
  text-align: center;
}

h1 {
  font-size: 2rem;
  margin-bottom: 10px;
  color: #ffa500;
}

h1 em {
  font-style: normal;
  color: #fff;
}

p {
  font-size: 1rem;
  margin-bottom: 15px;
  line-height: 1.4;
}

/*--------------------------------------------------------------
# Download Buttons & Restaurant Login
--------------------------------------------------------------*/
.download-buttons {
  display: flex;
  justify-content: center;
  gap: 10px;
  margin-bottom: 15px;
}

.download-buttons a img {
  width: 140px;
  height: auto;
  transition: transform 0.3s ease;
}

.download-buttons a img:hover {
  transform: scale(1.05);
}

.restaurant-login h2 {
  font-size: 1.5rem;
  margin-bottom: 10px;
  color: #ffa500;
}

.restaurant-btn {
  display: inline-flex;
  align-items: center;
  background-color: #FBB03B;
  color: #111C25;
  padding: 8px 15px;
  text-decoration: none;
  border-radius: 5px;
  transition: background-color 0.3s ease;
}

.restaurant-btn img {
  width: 12px;
  height: 12px;
  margin-right: 8px;
}

.restaurant-btn:hover {
  background-color: #e0a835;
}

/*--------------------------------------------------------------
# Footer
--------------------------------------------------------------*/
footer {
  background-color: #000;
  padding: 20px 0;
  text-align: center;
  font-size: 0.9rem;
}

footer a {
  color: #ffa500;
  text-decoration: none;
}

footer a:hover {
  text-decoration: underline;
}

.sub-footer {
  margin-top: 10px;
  font-size: 0.8rem;
}

/*--------------------------------------------------------------
# Responsive Adjustments
--------------------------------------------------------------*/
@media (max-width: 768px) {
  h1 {
    font-size: 1.8rem;
  }
  p {
    font-size: 0.9rem;
  }
  .download-buttons a img {
    width: 120px;
  }
}

@media (max-width: 480px) {
  .logo-img {
    width: 180px;
  }
}
