/* Standardized Button Styles */

/* General button styles for all buttons */
.btn {
  display: inline-block;
  padding: 12px 30px;
  border-radius: var(--border-radius);
  text-decoration: none;
  font-weight: 600;
  transition: all 0.3s ease;
  cursor: pointer;
  text-align: center;
  background: var(--accent-gradient); /* Green gradient background */
  color: white !important; /* White text for all buttons */
  border: none;
  box-shadow: 0 4px 15px rgba(46, 204, 113, 0.3);
  position: relative;
  overflow: hidden;
  font-size: 1.1rem;
}

/* Hover effect for all buttons */
.btn:hover {
  transform: translateY(-3px);
  box-shadow: 0 8px 20px rgba(46, 204, 113, 0.4);
  color: white !important; /* Ensure text stays white on hover */
}

/* Add shine effect on hover for all buttons */
.btn::before {
  content: '';
  position: absolute;
  top: 0;
  left: -100%;
  width: 100%;
  height: 100%;
  background: linear-gradient(90deg, transparent, rgba(255, 255, 255, 0.2), transparent);
  transition: 0.5s;
}

.btn:hover::before {
  left: 100%;
}

/* Specific button variations */
.hero-btn {
  margin-top: 30px;
  font-size: 1.2rem;
  padding: 14px 32px;
}

.book-btn {
  margin-top: 20px;
}

/* Contact form submit button */
input[type="submit"], 
button[type="submit"] {
  background: var(--accent-gradient);
  color: white;
  font-weight: 600;
  padding: 12px 30px;
  border: none;
  border-radius: var(--border-radius);
  cursor: pointer;
  transition: all 0.3s ease;
  box-shadow: 0 4px 15px rgba(46, 204, 113, 0.3);
}

input[type="submit"]:hover,
button[type="submit"]:hover {
  transform: translateY(-3px);
  box-shadow: 0 8px 20px rgba(46, 204, 113, 0.4);
}

/* Remove orange highlight button style */
.highlight-btn {
  background: var(--accent-gradient); /* Change to green gradient */
  box-shadow: 0 4px 15px rgba(46, 204, 113, 0.3);
}

.highlight-btn:hover {
  box-shadow: 0 8px 20px rgba(46, 204, 113, 0.4);
}
