
@import url('https://fonts.googleapis.com/css2?family=Poppins:wght@300;400;600&display=swap');

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

body {
  font-family: 'Poppins', sans-serif;
  background: url('assets/background.jpg') no-repeat center center fixed;
  background-size: cover;
  color: #fff;
  overflow-x: hidden;
}

header {
  background-color: rgba(0, 0, 0, 0.7);
  padding: 20px;
  text-align: center;
  position: sticky;
  top: 0;
  z-index: 10;
}

.logo {
  height: 70px;
  margin-bottom: 10px;
}

nav ul {
  list-style: none;
  display: flex;
  justify-content: center;
  gap: 25px;
}

nav a {
  color: white;
  text-decoration: none;
  font-weight: 600;
  transition: 0.3s;
}

nav a:hover {
  color: #FFD700;
}

main {
  padding: 60px 20px;
  text-align: center;
  background-color: rgba(0, 0, 0, 0.5);
}

.hero {
  position: relative;
  height: 80vh;
  overflow: hidden;
}

#introVideo {
  width: 100%;
  height: 100%;
  object-fit: cover;
  filter: brightness(0.4);
}

.overlay-text {
  position: absolute;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
  color: white;
}

.overlay-text h1 {
  font-size: 2.5rem;
}

.cta, .cta-secondary {
  background-color: #FFD700;
  color: #000;
  padding: 12px 24px;
  margin-top: 20px;
  display: inline-block;
  font-weight: bold;
  text-decoration: none;
  border-radius: 8px;
}

.cta:hover, .cta-secondary:hover {
  background-color: #fff;
}

footer {
  background-color: rgba(0, 0, 0, 0.8);
  padding: 15px;
  text-align: center;
  font-size: 0.9rem;
}

#loader {
  position: fixed;
  width: 100%;
  height: 100%;
  background: #0A1D37;
  z-index: 100;
  display: flex;
  justify-content: center;
  align-items: center;
}

.spinner {
  border: 6px solid #f3f3f3;
  border-top: 6px solid #FFD700;
  border-radius: 50%;
  width: 60px;
  height: 60px;
  animation: spin 1s linear infinite;
}

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