/* Reset some basic styles */
* {
  margin: 0;
  padding: 0;
  box-sizing: border-box;
}

body,
html {
  height: 100%;
  font-family: var(--font-family);
  scroll-behavior: smooth;
}

:root {
  --primary-color: #1a1a40; /* Deep navy */
  --accent-color: #ffd700; /* Gold */
  --secondary-color: #2c3e50; /* Charcoal Blue */
  --font-family: "Poppins", sans-serif;
  --border-radius: 10px;
}


#bg-video {
  position: absolute;
  top: 50%;
  left: 50%;
  min-width: 100%;
  min-height: 100%;
  width: auto;
  height: auto;
  transform: translate(-50%, -50%);
  object-fit: cover;
  z-index: 1;
}
/* Animate the light movement */
@keyframes moveLight {
  0% {
    transform: rotate(0deg) translateX(0) translateY(0);
  }
  50% {
    transform: rotate(180deg) translateX(50%) translateY(50%);
  }
  100% {
    transform: rotate(360deg) translateX(0) translateY(0);
  }
}

/* Content inside splash */
.content {
  position: relative;
  z-index: 2;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  height: 100%;
  text-align: center;
}

/* Button style */
.confirm-btn {
  background: linear-gradient(135deg, #4b6cb7, #182848);
  border: none;
  border-radius: 50px;
  padding: 15px 30px;
  margin-top: 20px;
  box-shadow: 0 5px 15px rgba(0, 0, 0, 0.6);
  transition: all 0.3s ease;
  cursor: pointer;
}

.confirm-btn:hover {
  transform: translateY(-3px);
  box-shadow: 0 10px 20px rgba(75, 108, 183, 0.5);
}

.confirm-btn img {
  width: 150px;
  height: auto;
}



/* Splash Screen */
.splash-screen {
  position: fixed;
  width: 100%;
  height: 100%;
  background: url("./assets/splashh.jpg") no-repeat center center/cover;
  overflow: hidden;
  z-index: 9999;
  display: flex;
  justify-content: center;
  align-items: center;
  flex-direction: column;
  animation: moveBackground 20s linear infinite;
  overflow-y: hidden;
}
.bulb {
  width: 50px;
  height: 50px;
  background: #ffeb3b; /* yellowish color */
  border-radius: 50%;
  box-shadow: 0 0 20px 10px #ffeb3b;
  animation: glow 2s infinite alternate;
  margin-bottom: 20px;
}

/* Glow Animation */
@keyframes glow {
  0% {
    box-shadow: 0 0 10px 5px #ffeb3b;
  }
  100% {
    box-shadow: 0 0 30px 15px #ffeb3b;
  }
}
.overlay {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background: linear-gradient(
    135deg,
    rgba(30, 24, 18, 0.6),  /* Blackened Gold Base, lighter opacity */
    rgba(77, 58, 28, 0.55)  /* Deep Rich Gold */
  );
  z-index: 2;
  pointer-events: none; /* allows clicks to pass through */
  filter: brightness(1.1) contrast(1.25); /* Slight lift for richness */
}










/* Animation for moving background */
@keyframes moveBackground {
  0% {
    background-position: 0 0;
  }
  50% {
    background-position: 100% 100%;
  }
  100% {
    background-position: 0 0;
  }
}

.access-restricted {
  height: 450px;
}

/* Breathing Effect */
.access-restricted img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  animation: breathe 5s ease-in-out infinite;
}

/* Animation for breathing effect */
@keyframes breathe {
  0% {
    transform: scale(1);
  }
  50% {
    transform: scale(1.05);
  }
  100% {
    transform: scale(1);
  }
}

@keyframes scrollText {
  0% {
    transform: translateX(100%);
  }
  100% {
    transform: translateX(-100%);
  }
}
.moving-text {
  display: inline-block;
  animation: scrollText 15s linear infinite;
}


.content {
  position: relative;
  z-index: 3;
  text-align: center;
  color: white;
  padding: 20px;
}

.rest {
  height: 200px;
  width: 400px;
}

.access-text {
  font-size: 2.5rem;
  font-weight: bold;
  color: var(--accent-color);
  text-shadow: 2px 2px 4px var(--primary-color);
}

.fat-only-text {
  font-size: 3rem;
  font-weight: bold;
  color: var(--accent-color);
  text-shadow: 2px 2px 4px var(--primary-color);
  margin-top: 10px;
  margin-bottom: 20px;
}
.confirm-btn {
  background: linear-gradient(to right, black, #b8860b, black); /* Darker gold */
  border: 2px solid #b8860b;
  border-radius: 50px;
  color: #b8860b;
  font-weight: bold;
  font-size: 18px;
  text-transform: uppercase;
  letter-spacing: 1px;
  box-shadow: 0 5px 15px rgba(184, 134, 11, 0.4); /* dark gold shadow */
  transition: all 0.3s ease;
  cursor: pointer;
}

.confirm-btn:hover {
  transform: translateY(-5px) scale(1.05);
  background: linear-gradient(to right, #b8860b, black, #b8860b);
  color: black;
  box-shadow: 0 10px 25px rgba(184, 134, 11, 0.6);
}

/* Image inside the button */
.confirm-btn img {
  height: 100px;
  width: 200px;
  object-fit: cover;
  border-radius: 40px;
}
.audio-btn {
  background-color: rgba(0, 0, 0, 0.6);
  border: 2px solid goldenrod;
  color: goldenrod;
  padding: 12px;
  border-radius: 50%;
  font-size: 24px;
  cursor: pointer;
  transition: all 0.3s ease;
}

.audio-btn:hover {
  background-color: rgba(184, 134, 11, 0.8); /* darker golden hover */
  color: black;
  transform: scale(1.1);
}



/* Hero Section */
#hero {
  background: url("/assets/splash2.jpg") no-repeat center center/cover;
  background-attachment: fixed;

}



@keyframes glitter {
  0% {
    background-position: 0% 50%;
  }
  50% {
    background-position: 100% 50%;
  }
  100% {
    background-position: 0% 50%;
  }
}



.buttons {
  display: flex;
  gap: 20px;
  margin-top: 30px;
}

.buttons button {
  background: var(--primary-color);
  border: 2px solid var(--accent-color);
  color: var(--accent-color);
  padding: 10px 20px;
  font-size: 1rem;
  border-radius: 30px;
  cursor: pointer;
  transition: 0.3s;
}

.buttons button:hover {
  background: var(--accent-color);
  color: var(--primary-color);
}

.logo {
  height: 300px;
  width: 100%;
}

@keyframes shine {
  0% {
    background-position: 0%;
  }
  100% {
    background-position: 200%;
  }
}

@media (max-width: 768px) {
  .access-restricted {
    height: 350px;
  }
  .access-restricted img {
    width: 100%;
    height: 100%;
    object-fit: contain;
    animation: breathe 5s ease-in-out infinite;
  }
}
