/* General Reset */
body, html {
  margin: 0;
  padding: 0;
  font-family: 'Arial', sans-serif;
}

/* Loading Screen */
body.loading {
  height: 100vh;
  background: linear-gradient(rgba(0,0,0,0.6), rgba(0,0,0,0.6)),
              url('images/bg.png') no-repeat center center/cover;
  display: flex;
  justify-content: center;
  align-items: center;
  color: #fff;
  text-align: center;
}

.loader {
  border: 8px solid rgba(255,255,255,0.3);
  border-top: 8px solid #ffc107;
  border-radius: 50%;
  width: 80px;
  height: 80px;
  animation: spin 2s linear infinite;
  margin: 20px auto;
}

@keyframes spin {
  0% { transform: rotate(0deg); }
  100% { transform: rotate(360deg); }
}

.powered {
  position: absolute;
  bottom: 20px;
  width: 100%;
  text-align: center;
  font-size: 14px;
  color: #ffc107;
}

/* Home Page Hero Section */
.hero {
  background: linear-gradient(rgba(0,0,0,0.6), rgba(0,0,0,0.6)),
              url('home-bg.jpg') no-repeat center center/cover;
  height: 100vh;
  display: flex;
  align-items: center;
  justify-content: center;
  text-align: center;
  color: #fff;
}

.hero h1 {
  font-size: 3rem;
  font-weight: bold;
  animation: fadeInDown 2s ease;
}

.hero p {
  font-size: 1.25rem;
  animation: fadeInUp 2s ease;
}

@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); }
}

/* Navbar */
.navbar-brand {
  font-weight: bold;
  color: #ffc107 !important;
}

.nav-link {
  transition: color 0.3s ease;
}

.nav-link:hover {
  color: #ffc107 !important;
}

/* Footer */
footer {
  background-color: #111;
  color: #fff;
  padding: 15px 0;
  font-size: 14px;
}
