/* Interactive Buttons */

.button {
  font-size: 1.2rem;
  font-weight: 600;
  color: #111;
  background: none;
  border: none;
  cursor: pointer;
  padding: 12px 24px;
  margin: 10px;
  position: relative;
  overflow: hidden;
  transition: color 0.3s ease, transform 0.3s ease, box-shadow 0.3s ease;
}

.button-wrapper {
  text-align: center;
  margin: 80px 0;
}

/* Glow Button (extends core styles) */
.border {
  border: 2px solid #111; /* Glow button has a border */
}

/* Add fill background + glow effect on hover */
.glow:hover {
  color: #fff;
  background: #111;
  text-shadow: 0 0 10px rgba(0, 0, 0, 0.2); /* Glow effect around text */
  transform: scale(1.05);  /* Slight scale-up effect on hover */
}

.smaller {
    font-size: 0.8rem;
}

.button.dimmed {
  background-color: #f0f0f0;
  color: #999;
  cursor: not-allowed;
  border-style: dashed;
  opacity: 0.6;
}

.button.dimmed:hover {
  background-color: #f0f0f0; /* No hover effect for disabled */
}

.text-btn {
  font-size: 1.2rem;
  font-weight: 600;
  color: #111;
  background: none;
  border: none;
  cursor: pointer;
  padding: 12px 24px;
  margin: 10px;
  position: relative;
  overflow: hidden;
  transition: color 0.3s ease;
}

/* Underline slide animation */
.text-btn::after {
  content: "";
  position: absolute;
  left: 0;
  bottom: 8px;
  width: 100%;
  height: 2px;
  background: #111;
  transform: scaleX(0);
  transform-origin: left;
  transition: transform 0.3s ease;
}

.text-btn:hover {
  color: #000;
}

.text-btn:hover::after {
  transform: scaleX(1);
}


/* Button Style 2: Text Glow on Hover */

.button-wrapper {
  text-align: center;
  margin: 80px 0;
}

/* Slide Underline Button */
.text-btn {
  font-size: 1.2rem;
  font-weight: 600;
  color: #111;
  background: none;
  border: none;
  cursor: pointer;
  padding: 12px 24px;
  margin: 10px;
  position: relative;
  overflow: hidden;
  transition: color 0.3s ease;
}

.text-btn::after {
  content: "";
  position: absolute;
  left: 0;
  bottom: 8px;
  width: 100%;
  height: 2px;
  background: #111;
  transform: scaleX(0);
  transform-origin: left;
  transition: transform 0.3s ease;
}

.text-btn:hover {
  color: #000;
}

.text-btn:hover::after {
  transform: scaleX(1);
}

/* Glow on Hover Button */

.text-btn-glow {
  font-size: 1.2rem;
  font-weight: 600;
  color: #111;
  background: none;
  border: 2px solid #111;
  cursor: pointer;
  padding: 12px 24px;
  margin: 10px;
  position: relative;
  transition: all 0.3s ease;
}

/* Add fill background + glow effect on hover */
.text-btn-glow:hover {
  color: #fff;
  background: #111;
  text-shadow: 0 0 10px rgba(0, 0, 0, 0.2);
  transform: scale(1.05);
}

.button-wrapper {
  text-align: center;
  margin: 80px 0;
}

/* Curved Button Style */
.curved-btn {
  font-size: 1.2rem;
  font-weight: 600;
  color: #fff;
  background-color: #111; /* Dark background */
  border: 2px solid #111; /* Matching border color */
  padding: 12px 24px;
  border-radius: 30px; /* Make the button curved */
  cursor: pointer;
  transition: all 0.3s ease;
  text-transform: uppercase; /* Optional, to make text stand out */
}

/* Curved Button Hover Effect with Subtle Pulse */
.curved-btn:hover {
  color: #fff;
  background-color: #111; /* Keep the dark background on hover */
  border-color: #111; /* Keep border dark on hover */
  box-shadow: 0 4px 12px rgba(0, 0, 0, 0.1); /* Elegant shadow on hover */
  transform: scale(1.05); /* Subtle increase in size for slight emphasis */
}

/* Optionally, you can add an ease effect to soften the transformation */
.curved-btn:active {
  transform: scale(1); /* Button goes back to original size when clicked */
}


