/*
 * Footer Component Styles
 * 
 * Styles for the footer section
 * 
 * @package Sweet_Delights
 */

.sd-footer {
    background: var(--sd-secondary);
    color: var(--sd-text-inverse);
    margin-top: auto;
    padding: var(--sd-space-xxl) 0;
}

.sd-footer__content {
    /* Container styles inherited from .sd-container */
}

.sd-footer__grid {
    display: grid;
    grid-template-columns: 1fr;
    gap: var(--sd-space-xl);
    margin-bottom: var(--sd-space-xxl);
}

@media (min-width: 768px) {
    .sd-footer__grid {
        grid-template-columns: repeat(2, 1fr);
    }
}

@media (min-width: 1024px) {
    .sd-footer__grid {
        grid-template-columns: repeat(4, 1fr);
    }
}

.sd-footer__col {
    /* Column styles */
}

/* Brand in Footer */
.sd-brand--footer {
    margin-bottom: var(--sd-space-md);
}

.sd-brand--footer .sd-brand__icon {
    background: var(--sd-primary);
}

.sd-brand--footer .sd-brand__text {
    color: var(--sd-text-inverse);
}

.sd-footer__desc {
    font-size: var(--sd-text-sm);
    line-height: 1.6;
    color: rgba(255, 255, 255, 0.8);
}

/* Footer Sections */
.sd-footer__title {
    font-size: var(--sd-text-body-lg);
    font-weight: 600;
    margin-bottom: var(--sd-space-md);
    color: white;
}

/* Footer Navigation */
.sd-footer__nav {
    /* Nav wrapper */
}

.sd-footer__menu {
    display: flex;
    flex-direction: column;
    gap: var(--sd-space-sm);
    margin: 0;
    padding: 0;
    list-style: none;
}

.sd-footer__menu a {
    font-size: var(--sd-text-sm);
    color: rgba(255, 255, 255, 0.8);
    text-decoration: none;
    transition: color var(--sd-transition-fast);
}

.sd-footer__menu a:hover {
    color: var(--sd-accent);
}

/* Contact Info */
.sd-footer__contact {
    display: flex;
    flex-direction: column;
    gap: var(--sd-space-md);
    font-style: normal;
}

.sd-contact-item {
    display: flex;
    align-items: flex-start;
    gap: var(--sd-space-sm);
    font-size: var(--sd-text-sm);
    color: rgba(255, 255, 255, 0.8);
}

.sd-contact-icon {
    flex-shrink: 0;
    margin-top: 2px;
    color: var(--sd-accent);
}

.sd-contact-item a {
    color: inherit;
    text-decoration: none;
    transition: color var(--sd-transition-fast);
}

.sd-contact-item a:hover {
    color: var(--sd-accent);
}

/* Business Hours */
.sd-footer__hours {
    font-size: var(--sd-text-sm);
    color: rgba(255, 255, 255, 0.8);
    line-height: 1.8;
}

.sd-footer__hours p {
    margin: 0 0 var(--sd-space-xs) 0;
}

/* Social Media */
.sd-footer__social {
    margin-top: var(--sd-space-lg);
}

.sd-footer__social-title {
    font-size: var(--sd-text-sm);
    font-weight: 600;
    margin-bottom: var(--sd-space-sm);
}

.sd-social-icons {
    display: flex;
    gap: var(--sd-space-sm);
}

.sd-social-icon {
    display: flex;
    align-items: center;
    justify-content: center;
    width: 36px;
    height: 36px;
    border-radius: var(--sd-radius-full);
    background: rgba(255, 255, 255, 0.1);
    color: white;
    text-decoration: none;
    transition: all var(--sd-transition-fast);
}

.sd-social-icon:hover {
    background: var(--sd-primary);
    transform: translateY(-2px);
}

/* Footer Bottom */
.sd-footer__bottom {
    padding-top: var(--sd-space-lg);
    border-top: 1px solid rgba(255, 255, 255, 0.2);
    text-align: center;
}

.sd-footer__copyright {
    font-size: var(--sd-text-sm);
    color: rgba(255, 255, 255, 0.6);
    margin: 0;
}