/* Footer Styles */
.site-footer {
    background-color: #7C170F;
    padding: 40px 0 20px;
    margin-top: auto;
    color: #ffffff;
    position: relative;
    border-top: 3px solid #D4AF37; /* Golden border at the top */
}

/* Golden line effect */
.site-footer::before {
    content: '';
    position: absolute;
    top: -2px; /* Position exactly at the top border */
    left: 0;
    right: 0;
    height: 2px;
    background: linear-gradient(90deg, 
        #D4AF37, /* Gold color */
        #FFD700, /* Brighter gold */
        #D4AF37, /* Back to original gold */
        #D4AF37 /* Original gold again */
    );
    background-size: 300% 100%;
    animation: goldShimmer 8s infinite linear;
    z-index: 1;
}

@keyframes goldShimmer {
    0% {
        background-position: 0% 0%;
    }
    100% {
        background-position: 300% 0%;
    }
}

/* Add a subtle glow to the golden border */
.site-footer::after {
    content: '';
    position: absolute;
    top: -2px;
    left: 0;
    right: 0;
    height: 6px;
    background: radial-gradient(ellipse at top, rgba(212, 175, 55, 0.4) 0%, rgba(212, 175, 55, 0) 70%);
    pointer-events: none;
    z-index: 0;
}

.footer-columns {
    display: flex;
    flex-wrap: wrap;
    justify-content: space-between;
    margin-bottom: 30px;
 
}

.footer-column {
    flex: 1;
    min-width: 180px;
    margin-bottom: 20px;
    padding: 0 15px;
}

.footer-column h3 {
    color: #ffffff;
    font-size: 18px;
    margin-bottom: 15px;
    font-weight: 500;
    position: relative;
    padding-bottom: 10px;
    display: inline-block;
}

/* Golden underline for headings */
.footer-column h3::after {
    content: '';
    position: absolute;
    left: 0;
    bottom: 0;
    width: 40px;
    height: 2px;
    background: linear-gradient(90deg, #D4AF37, rgba(212, 175, 55, 0.3));
    border-radius: 1px;
}

.footer-links {
    list-style: none;
    padding: 0;
    margin: 0;
}

.footer-links li {
    margin-bottom: 8px;
}

.footer-links a {
    color: #ccc;
    text-decoration: none;
    font-size: 14px;
    transition: color 0.3s;
}

.footer-links a:hover {
    color: #D4AF37;
}

.social-icons {
    display: flex;
    gap: 15px;
}

.social-icon {
    display: flex;
    align-items: center;
    justify-content: center;
    width: 40px;
    height: 40px;
    background-color: #fff;
    border-radius: 50%;
    text-decoration: none;
    transition: all 0.3s;
}

.social-icon i {
    font-size: 20px;
}

.instagram {
    color: #E1306C;
}

.youtube {
    color: #FF0000;
}

.facebook {
    color: #1877F2;
}

.social-icon:hover {
    transform: translateY(-3px);
    box-shadow: 0 5px 15px rgba(0, 0, 0, 0.3);
}

.footer-divider {
    height: 1px;
    background: linear-gradient(90deg, 
        rgba(255, 255, 255, 0.05) 0%, 
        rgba(212, 175, 55, 0.3) 50%, 
        rgba(255, 255, 255, 0.05) 100%);
    margin: 20px 0;
    width: 100%;
    position: relative;
}

/* Add a subtle gold dot at the center of divider */
.footer-divider::after {
    content: '';
    position: absolute;
    left: 50%;
    top: 50%;
    transform: translate(-50%, -50%);
    width: 5px;
    height: 5px;
    background-color: #D4AF37;
    border-radius: 50%;
    box-shadow: 0 0 8px rgba(212, 175, 55, 0.8);
}

.footer-bottom {
    display: flex;
    justify-content: center;
    align-items: center;
    flex-wrap: wrap;
}

.copyright {
    font-size: 14px;
    color: #aaa;
}

.contact-link a {
    color: #D4AF37;
    text-decoration: none;
    font-size: 14px;
    transition: color 0.3s;
}

.contact-link a:hover {
    text-decoration: underline;
}

/* Responsive Adjustments */
@media (max-width: 992px) {
    .footer-columns {
        justify-content: flex-start;
    }
    
    .footer-column {
        flex-basis: 33.33%;
    }
}

@media (max-width: 768px) {
    .footer-column {
        flex-basis: 50%;
    }
    
    .footer-bottom {
        flex-direction: column;
        text-align: center;
    }
    
    .copyright {
        margin-bottom: 10px;
    }
    
    /* Responsive styling for golden line */
    .footer-column h3::after {
        width: 30px;
    }
    
    .footer-divider::after {
        width: 4px;
        height: 4px;
    }
}

@media (max-width: 576px) {
    .footer-column {
        flex-basis: 100%;
    }
    
    .site-footer::before {
        animation: goldShimmer 5s infinite linear; /* Faster animation on mobile */
    }
    
    .footer-column h3 {
        font-size: 16px;
    }
    
    .footer-column h3::after {
        width: 25px;
    }
}
