/* Shared site-wide styles */

#footer {
    background: rgba(0,0,0,0.2) !important;
    border-top: 1px solid rgba(255,255,255,0.1);
}

#footer .text-muted { color: rgba(255,255,255,0.8) !important; }

/* Animated home button used on all feature pages */
.btn-home-bottom {
    display: inline-block;
    background: rgba(255,255,255,0.1);
    border: 2px solid rgba(255,215,0,0.3);
    border-radius: 25px;
    padding: 12px 28px;
    color: rgba(255,255,255,0.8);
    font-family: 'Cinzel Decorative', serif;
    font-size: 1rem;
    text-decoration: none;
    transition: all 0.3s ease;
    position: relative;
    overflow: hidden;
}

.btn-home-bottom::before {
    content: '';
    position: absolute;
    top: 50%;
    left: 50%;
    width: 0;
    height: 0;
    border-radius: 50%;
    background: rgba(255,215,0,0.2);
    transform: translate(-50%,-50%);
    transition: width 0.4s ease, height 0.4s ease;
}

.btn-home-bottom:hover::before {
    width: 300px;
    height: 300px;
}

.btn-home-bottom:hover {
    background: rgba(255,215,0,0.15);
    border-color: #ffd700;
    color: #ffd700;
    transform: translateY(-2px);
    box-shadow: 0 0 15px rgba(255,215,0,0.3);
    text-decoration: none;
}

.btn-home-bottom:active {
    transform: translateY(0);
    box-shadow: 0 0 10px rgba(255,215,0,0.2);
}
