/* Footer Component Styles */

.footer {
    background: linear-gradient(
        90deg,
        #2a1f1a 0%,
        #3d2d25 20%,
        #57493f 50%,
        #3d2d25 80%,
        #2a1f1a 100%
    );
    color: var(--white);
    height: 153px;
    display: flex;
    align-items: center;
    justify-content: center;
    text-align: center;
    position: relative;
    overflow: hidden;
}

.footer::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: 
        radial-gradient(circle at 20% 50%, rgba(255,255,255,0.05) 0%, transparent 50%),
        radial-gradient(circle at 80% 50%, rgba(255,255,255,0.05) 0%, transparent 50%),
        repeating-linear-gradient(
            45deg,
            transparent,
            transparent 2px,
            rgba(0,0,0,0.1) 2px,
            rgba(0,0,0,0.1) 4px
        );
    pointer-events: none;
}

.footer-content {
    display: flex;
    justify-content: center;
    align-items: center;
    position: relative;
    z-index: 1;
}

.footer-copyright {
    font-family: var(--font-family);
    font-weight: 400;
    font-size: var(--font-size-base);
    color: var(--white);
    letter-spacing: 0.05em;
    margin: 0;
    text-align: center;
}

/* Responsive Design */
@media (max-width: 768px) {
    .footer {
        height: 120px;
    }
    
    .footer-copyright {
        font-size: 11px;
        letter-spacing: 0.2px;
    }
}

@media (max-width: 480px) {
    .footer {
        height: 100px;
    }
    
    .footer-copyright {
        font-size: 10px;
        letter-spacing: 0.18px;
    }
}
