
body {
  position: relative;
  background: url('backimg.webp') no-repeat center center fixed;
  background-color: #000; /* fallback to black */
  background-size: cover;
  color: #f0f0f0;
  /*font-family: 'Segoe UI', sans-serif;*/
  font-family: 'Cinzel Decorative', serif;
  padding: 20px;
  min-height: 100vh;
  z-index: 0;
  overflow-x: hidden;
}

/* Overlay effect */
body::before {
  content: "";
  position: fixed;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background: rgba(0, 0, 0, 0.6); /* Adjust overlay darkness here */
  z-index: -1;
}

.palm-image {
  width: 100%;
  border-radius: 10px;
  /*box-shadow: 0 0 20px rgba(255, 255, 255, 0.1);*/
}

.description-box {
  background-color: rgba(0, 0, 0, 0.9);
  padding: 20px;
  border-radius: 10px;
  box-shadow: 0 0 15px rgba(255, 255, 255, 0.05);
}

h1 {
  color: #fff;
}

p {
  color: #d1a954;
}



.palm-image {
  width: 100%;
  max-width: 400px;
  border-radius: 10px;
  /*box-shadow: 0 0 20px rgba(255, 255, 255, 0.1);*/
}

/* Floating Animation */
.float-wave {
  animation: floatUpDown 3.5s ease-in-out infinite;
}

@keyframes floatUpDown {
  0%, 100% {
    transform: translateY(0px);
  }
  50% {
    transform: translateY(-15px);
  }
}



.upload-box {
  border: 2px dashed #ffcc00;
  background-color: rgba(0, 0, 0, 0.8);
  border-radius: 10px;
  cursor: pointer;
  max-width: 250px;
  margin: 0px auto;
}

.upload-label {
  color: #ccc;
  display: block;
  cursor: pointer;
  font-size: 1.1rem;
}

.or-text {
  color: #999;
  font-weight: bold;
  margin: 1rem 0;
}

.camera-btn {
  background-color: transparent;
  border: 2px solid #ffcc00;
  color: #ffcc00;
  padding: 10px 20px;
  border-radius: 5px;
  font-weight: bold;
}

.camera-btn:hover {
  background-color: #ffcc00;
  color: #000;
}

.palm-image {
  width: 80%;
  margin-top: 30px;
}

 