/* Common Button Styles */
.button, .btn {
    background-color: #008DBB;
    color: white;
    padding: 10px 20px;
    border-radius: 5px;
    text-decoration: none;
    transition: background-color 0.3s ease;
}

.button:hover, .btn:hover {
    background-color: #005f80;
    color: white;
}

/* Bio Toggle Button */
.toggle-bio {
    background: #008DBB;
    color: white;
    border: none;
    padding: 8px 16px;
    border-radius: 5px;
    cursor: pointer;
    transition: background-color 0.3s ease;
}

.toggle-bio:hover {
    background: #005f80;
}

/* Scroll Buttons */
.scroll-btn {
    position: absolute;
    top: 50%;
    transform: translateY(-50%);
    background: rgba(95, 7, 179, 0.8);
    color: white;
    border: none;
    width: 40px;
    height: 40px;
    border-radius: 50%;
    display: flex;
    justify-content: center;
    align-items: center;
}

/* Responsive Adjustments */
@media (max-width: 768px) {
    body.has-dense-content .floating-donate-button {
        display: none;
    }
}

@media (min-width: 600px) {
    .hero-float-btn {
        padding: 10px 20px;
        font-size: 1em;
        bottom: 20px;
        right: 20px;
    }
}

/* Hero Button Container */
.hero-btn-container {
    margin-top:5px;
    bottom: 15px;
    left: 0;
    right: 0;
    display: flex;
    justify-content: center;
}

/* Hero Float Button */
.hero-float-btn {
    position: static;
    margin-bottom: 0;
    padding: .5rem 1rem;
    background: #008DBB; /* Changed to match site's primary blue color */
    color: white;
    border: none;
    border-radius: 2rem;
    font-size: 1.2rem;
    text-decoration: none;
    box-shadow: 0 2px 8px rgba(0,0,0,0.2);
    cursor: pointer;
    z-index: 2;
    transition: background 0.2s;
}

.hero-float-btn:hover {
    background: #006d91; /* Changed to match other button hover colors */
    color: white;
}

@media (max-width: 600px) {
  .hero-float-btn {
    padding: 0.3rem 0.5rem;
    font-size: 0.85em;
    border-radius: 1rem;
  }
  .hero-float-btn i {
    font-size: 1em;
    margin-right: 4px;
  }
} 