.btn-yellow {
  display: inline-block;
  background-color: #FFD700;
  color: #000;
  font-size: 1rem;
  padding: 6px 20px;
  border: none;
  border-radius: 10px;
  cursor: pointer;
  text-decoration: none; /* remove underline */
  transition: background-color 0.3s ease, transform 0.2s ease;
}

.btn-yellow:hover {
  background-color: #FFC300; /* darker yellow */
  transform: scale(1.05);
}



/*------------------------- Shine Button---------------------------- */


.btn-shine {
  position: relative;
  display: inline-block;
  padding: 12px 28px;
  background-color: #FFD700; /* Yellow */
  color: #000;
  font-weight: bold;
  text-decoration: none;
  border-radius: 30px;
  overflow: hidden;
  transition: background 0.3s, color 0.3s;
}

/* Shine effect */
.btn-shine::before {
  content: '';
  position: absolute;
  top: 0;
  left: -75%;
  width: 50%;
  height: 100%;
  background: linear-gradient(
    120deg,
    rgba(255, 255, 255, 0) 0%,
    rgba(255, 255, 255, 0.5) 50%,
    rgba(255, 255, 255, 0) 100%
  );
  transform: skewX(-25deg);
}

/* Animate shine continuously */
@keyframes shine {
  0% { left: -75%; }
  100% { left: 125%; }
}

.btn-shine::before {
  animation: shine 2.5s infinite;
}

/* Hover effect: make shine faster on hover */
.btn-shine:hover::before {
  animation: shine 1s infinite;
  background: linear-gradient(
    120deg,
    rgba(255, 255, 255, 0) 0%,
    rgba(255, 255, 255, 0.7) 50%,
    rgba(255, 255, 255, 0) 100%
  );
}

.btn-shine:hover {
  background-color: #FFC700; /* Slightly darker yellow on hover */
  color: #000;
}





/*------------------------- Shine Button2---------------------------- */


.btn-shine2 {
  position: relative;
  display: inline-block;
  padding: 12px 28px;
  background-color: #38F527; /* Yellow */
  color: #000;
  font-weight: bold;
  text-decoration: none;
  border-radius: 30px;
  overflow: hidden;
  transition: background 0.3s, color 0.3s;
}

/* Shine effect */
.btn-shine::before {
  content: '';
  position: absolute;
  top: 0;
  left: -75%;
  width: 50%;
  height: 100%;
  background: linear-gradient(
    120deg,
    rgba(255, 255, 255, 0) 0%,
    rgba(255, 255, 255, 0.5) 50%,
    rgba(255, 255, 255, 0) 100%
  );
  transform: skewX(-25deg);
}

/* Animate shine continuously */
@keyframes shine {
  0% { left: -75%; }
  100% { left: 125%; }
}

.btn-shine::before {
  animation: shine 2.5s infinite;
}

/* Hover effect: make shine faster on hover */
.btn-shine:hover::before {
  animation: shine 1s infinite;
  background: linear-gradient(
    120deg,
    rgba(255, 255, 255, 0) 0%,
    rgba(255, 255, 255, 0.7) 50%,
    rgba(255, 255, 255, 0) 100%
  );
}

.btn-shine:hover {
  background-color: #FFC700; /* Slightly darker yellow on hover */
  color: #000;
}





/*------------------------- Shine Button Menu---------------------------- */

.nav-item {
  display: inline-block;   /* prevents extra stretching */
  padding: 0;              /* remove inherited padding */
  margin: 0;
  line-height: normal;     /* reset line-height */
}

.btn-shine-menu {
  display: inline-block;
  background-color: #FFD700;   /* Yellow */
  color: #000;
  font-weight: bold;
  font-size: 14px;
  text-decoration: none;
  padding: 5px 16px;           /* vertical 2px, horizontal 14px for space */
  line-height: 1;               /* tightly wraps text vertically */
  border-radius: 7px;           /* rounded edges look smoother */
  position: relative;
  overflow: hidden;
  cursor: pointer;
  white-space: nowrap;
  transition: background 0.3s, color 0.3s; /* smooth hover transition */
}

/* Shine effect */
.btn-shine-menu::before {
  content: '';
  position: absolute;
  top: 0;
  left: -75%;
  width: 50%;
  height: 100%;
  background: linear-gradient(
    120deg,
    rgba(255,255,255,0) 0%,
    rgba(255,255,255,0.5) 50%,
    rgba(255,255,255,0) 100%
  );
  transform: skewX(-25deg);
  animation: shine 2.5s infinite;
  z-index: 1;
}

@keyframes shine {
  0% { left: -75%; }
  100% { left: 125%; }
}

.btn-shine-menu:hover::before {
  animation: shine 1s infinite;
  background: linear-gradient(
    120deg,
    rgba(255,255,255,0) 0%,
    rgba(255,255,255,0.7) 50%,
    rgba(255,255,255,0) 100%
  );
}

.btn-shine-menu:hover {
  background-color: #FFC700; /* slightly darker yellow on hover */
  color: #000;
}





/* Button shine send button contact form */

.btn-shine-send {
    padding: 15px 40px; /* Increase size: vertical | horizontal */
    font-size: 18px;    /* Bigger text */
    border-radius: 8px; /* Rounded corners */
    cursor: pointer;
    background-color: #FFC700; /* Button color */
    color: black;             /* Text color */
    border: none;
    transition: transform 0.2s;
}

.btn-shine-send:hover {
    transform: scale(1.05); /* Slight hover effect */
}