/* Reset */
body, html {
  margin: 0;
  padding: 0;
  font-family: Arial, sans-serif;
  width: 100%;
  height: 100%;
  overflow: hidden;
}

/* Background Section */
.background {
  position: relative;
  width: 100%;
  height: 100%;
  background-color: black;
  display: flex;
  justify-content: center;
  align-items: center;
}



.invisible-button {
  all: unset;
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  cursor: pointer;
  z-index: 3; /* Ensure it's above the background video and overlay */
  pointer-events: auto; /* Allow interaction */
}

.fade-overlay {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background-color: black;
  opacity: 0; /* Start transparent */
  z-index: 2; /* Below the invisible button */
  pointer-events: none; /* Prevent interaction */
  transition: opacity 2s ease-in-out; /* Smooth fade-in */
}


/* Background Video */
.background-video {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  object-fit: cover; /* Ensures video fills the screen */
  z-index: 1; /* Below the fullscreen video */
  opacity: 1; /* Fully visible by default */
  pointer-events: none; /* Prevent interaction */
  transition: opacity 2s ease-in-out; /* Smooth fade-out */
}


.fade-overlay {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background-color: black;
  opacity: 0; /* Start transparent */
  z-index: 2; /* Above the background video */
  pointer-events: none; /* Prevent interaction until fade starts */
  transition: opacity 2s ease-in-out; /* Smooth fade-in */
}

/* Fullscreen Video */
.video-player {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  object-fit: cover; /* Ensures video fills the screen */
  z-index: 2; /* Above the background video */
  opacity: 0; /* Hidden by default */
  pointer-events: none; /* Prevent interaction */
  transition: opacity 2s ease-in-out; /* Smooth fade-in */
}

.video-visible {
  opacity: 1; /* Fully visible */

}

.background-image {
  display: none;
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  object-fit: cover;
  z-index: 1;
}

/* Shop Page */
.navbar {
  display: flex;
  justify-content: space-between;
  align-items: center;
  padding: 10px 20px;
  background-color: #222;
  color: white;
}

.nav-links {
  list-style: none;
  display: flex;
  gap: 20px;
}

.nav-links a {
  color: white;
  text-decoration: none;
  transition: color 0.3s;
}

.nav-links a:hover {
  color: #00bcd4;
}

.hero {
  text-align: center;
  padding: 50px 20px;
  background: linear-gradient(135deg, #4caf50, #81c784);
  color: white;
}

.products {
  display: flex;
  justify-content: center;
  gap: 20px;
  padding: 20px;
}

.product {
  text-align: center;
  padding: 15px;
  background: white;
  border-radius: 8px;
}

.buy-button {
  background: #4caf50;
  color: white;
  border: none;
  padding: 10px;
  cursor: pointer;
}
