/* Footer Styles - Joy Smash Burger */
:root {
    --pink-primary: #FFB3D9;
    --red-primary: #C41E3A;
    --red-dark: #8B0020;
    --white: #FFFFFF;
    --black: #1A1A1A;
    --gray: #666666;
    --cream: #FFF5F5;
}

/* Footer Base */
footer {
    background: var(--red-dark);
    color: var(--white);
    padding: 3rem;
}

.footer-content {
    display: grid;
    grid-template-columns: 2fr 1fr;
    gap: 4rem;
    /* max-width: 1200px; */
    margin: 0 auto 2rem;
}

.footer-section h3 {
    margin-bottom: 1.5rem;
    font-family: 'Bebas Neue', sans-serif;
    font-size: 2rem;
    letter-spacing: 0.05em;
}

.footer-section p {
    font-weight: 600;
    margin-bottom: 1rem;
}

.footer-section a {
    color: var(--pink-primary);
    text-decoration: none;
    display: block;
    margin-bottom: 0.5rem;
    font-weight: 800;
    text-transform: uppercase;
    font-size: 0.9rem;
    letter-spacing: 0.05em;
    transition: color 0.3s;
}

.footer-section a:hover {
    color: var(--white);
}

/* Social Links */
.social-links {
    display: flex;
    gap: 1.5rem;
    margin-top: 1.5rem;
}

.social-links a {
    width: 50px;
    height: 50px;
    background: var(--pink-primary);
    display: flex;
    align-items: center;
    justify-content: center;
    transition: all 0.3s;
    text-decoration: none;
    color: var(--red-dark);
    font-size: 1.5rem;
    font-weight: 900;
    border-radius: 10px;
}

.social-links a:hover {
    background: var(--white);
    transform: scale(1.1);
}

/* Footer Bottom */
.footer-bottom {
    text-align: center;
    padding-top: 2rem;
    border-top: 2px solid var(--pink-primary);
    font-weight: 600;
}

/* Responsive */
@media (max-width: 768px) {
    footer {
        padding: 2rem 1.5rem;
    }
    
    .footer-content {
        grid-template-columns: 1fr;
        gap: 2.5rem;
        text-align: center;
    }
    
    .footer-section h3 {
        font-size: 1.5rem;
        margin-bottom: 1rem;
    }
    
    .footer-section p {
        font-size: 0.9rem;
    }
    
    .footer-section a {
        font-size: 0.8rem;
        margin-bottom: 0.8rem;
    }
    
    .social-links {
        justify-content: center;
        margin-top: 1rem;
    }
    
    .social-links a {
        width: 45px;
        height: 45px;
        font-size: 1.2rem;
    }
    
    .footer-bottom {
        padding-top: 1.5rem;
        font-size: 0.85rem;
    }
}

/* Small mobile devices */
@media (max-width: 480px) {
    .footer-section h3 {
        font-size: 1.3rem;
    }
    
    .social-links a {
        width: 40px;
        height: 40px;
        font-size: 1rem;
    }
}


.social-links {
    display: flex;
    align-items: center;
    gap: 1rem;
}

.social-links a {
    display: flex;
    align-items: center;
    gap: 0.5rem;
    color: var(--white);
    text-decoration: none;
    font-weight: 600;
    padding: 0.5rem 1rem;
    border: 2px solid var(--white);
    border-radius: 25px;
    transition: all 0.3s ease;
}

.social-links a:hover {
    background: var(--white);
    color: var(--red-primary);
    transform: translateY(-2px);
}

.instagram-icon {
    width: 20px;
    height: 20px;
}

/* Mobile responsive */
@media (max-width: 768px) {
    .social-links a {
        padding: 0.4rem 0.8rem;
        font-size: 0.9rem;
    }
    
    .instagram-icon {
        width: 18px;
        height: 18px;
    }
}