/* Footer Styles */
.footer {
    background: linear-gradient(135deg, #1a1a1a 0%, #2d2d2d 100%);
    color: #ffffff;
    padding: 20px 0;
    margin-top: 50px;
    border-top: 3px solid #c5a47e;
    position: relative;
    overflow: hidden;
}

.footer::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    height: 2px;
    background: linear-gradient(90deg, #c5a47e, #e6c88c, #c5a47e);
    animation: shimmer 2s infinite;
}

@keyframes shimmer {
    0% { transform: translateX(-100%); }
    100% { transform: translateX(100%); }
}

.footer-content {
    max-width: 1200px;
    margin: 0 auto;
    text-align: center;
    position: relative;
    z-index: 1;
}

.footer-brand {
    font-size: 1.2rem;
    font-weight: 700;
    margin-bottom: 10px;
    color: #c5a47e;
    text-shadow: 0 2px 4px rgba(0,0,0,0.3);
}

.footer-email {
    font-size: 1rem;
    margin-bottom: 15px;
}

.footer-email a {
    color: #e6c88c;
    text-decoration: none;
    transition: all 0.3s ease;
    padding: 5px 10px;
    border-radius: 20px;
    background: rgba(197, 164, 126, 0.1);
}

.footer-email a:hover {
    color: #ffffff;
    background: rgba(197, 164, 126, 0.3);
    transform: translateY(-2px);
    box-shadow: 0 4px 8px rgba(0,0,0,0.2);
}

.footer-copyright {
    font-size: 0.9rem;
    color: #cccccc;
  opacity: 0.8;
}

/* Responsive Design */
@media (max-width: 768px) {
    .footer {
        padding: 15px 0;
        margin-top: 30px;
    }
    
    .footer-brand {
        font-size: 1rem;
    }
    
    .footer-email {
        font-size: 0.9rem;
    }
    
    .footer-copyright {
        font-size: 0.8rem;
    }
}

/* Animation for brand name */
.footer-brand span {
    display: inline-block;
    animation: brandGlow 3s ease-in-out infinite;
}

@keyframes brandGlow {
    0%, 100% { text-shadow: 0 2px 4px rgba(197, 164, 126, 0.3); }
    50% { text-shadow: 0 2px 8px rgba(197, 164, 126, 0.6), 0 0 20px rgba(197, 164, 126, 0.3); }
} 