/**
 * Footer Block Styles
 * Standalone CSS for modern compact footer
 */

/* Footer Container */
.peak-footer {
    background-color: #374151;
    color: #d1d5db;
}

.peak-footer-content {
    padding-top: 2rem;
    padding-bottom: 2rem;
    border-top: 1px solid #4b5563;
}

/* Footer Grid */
.peak-footer-grid {
    display: grid;
    grid-template-columns: repeat(2, minmax(0, 1fr));
    gap: 1.5rem;
}

@media (min-width: 1024px) {
    .peak-footer-grid {
        grid-template-columns: repeat(4, minmax(0, 1fr));
        gap: 2rem;
    }
}

/* About Column */
.peak-footer-about {
    grid-column: span 2 / span 2;
}

@media (min-width: 1024px) {
    .peak-footer-about {
        grid-column: span 1 / span 1;
    }
}

.peak-footer-logo {
    height: 2.5rem;
    width: auto;
    margin-bottom: 0.5rem;
}

.peak-footer-description {
    font-size: 0.75rem;
    line-height: 1.5;
    color: #9ca3af;
    margin-bottom: 0.75rem;
}

.peak-footer-badges {
    display: flex;
    flex-wrap: wrap;
    gap: 0.25rem;
}

.peak-footer-badge {
    background-color: rgba(55, 65, 81, 0.5);
    padding: 0.125rem 0.5rem;
    border-radius: 0.25rem;
    font-size: 0.75rem;
    color: #d1d5db;
}

/* Column Headers */
.peak-footer-heading {
    font-size: 0.75rem;
    font-weight: 700;
    color: #ffffff;
    text-transform: uppercase;
    letter-spacing: 0.05em;
    margin-bottom: 0.75rem;
}

/* Links Column */
.peak-footer-menu {
    list-style: none;
    padding: 0;
    margin: 0;
}

.peak-footer-menu li {
    margin-bottom: 0.5rem;
}

.peak-footer-menu a {
    font-size: 0.75rem;
    color: #9ca3af;
    transition: color 0.2s;
}

.peak-footer-menu a:hover {
    color: #ffffff;
}

/* Contact Column */
.peak-footer-contact {
    font-size: 0.75rem;
}

.peak-footer-contact > div {
    margin-bottom: 0.5rem;
}

.peak-footer-phone {
    color: #60a5fa;
    font-weight: 600;
    transition: color 0.2s;
}

.peak-footer-phone:hover {
    color: #93c5fd;
}

.peak-footer-email {
    color: #9ca3af;
    word-break: break-all;
    transition: color 0.2s;
}

.peak-footer-email:hover {
    color: #ffffff;
}

.peak-footer-address {
    color: #9ca3af;
}

/* Social Icons */
.peak-footer-social {
    display: flex;
    gap: 0.5rem;
    margin-top: 1rem;
}

.peak-footer-social-icon {
    width: 1.75rem;
    height: 1.75rem;
    border: 1px solid #4b5563;
    border-radius: 9999px;
    display: flex;
    align-items: center;
    justify-content: center;
    color: #9ca3af;
    transition: all 0.2s;
}

.peak-footer-social-icon:hover {
    background-color: #2563eb;
    color: #ffffff;
    border-color: #2563eb;
}

.peak-footer-social-icon svg {
    width: 0.75rem;
    height: 0.75rem;
}

/* Info Column */
.peak-footer-info {
    font-size: 0.75rem;
}

.peak-footer-copyright {
    color: #9ca3af;
    margin-bottom: 0.75rem;
}

.peak-footer-serving {
    color: #9ca3af;
    margin-bottom: 0.75rem;
}

.peak-footer-serving-title {
    font-weight: 600;
    margin-bottom: 0.25rem;
}

.peak-footer-legal {
    list-style: none;
    padding: 0;
    margin: 0;
}

.peak-footer-legal li {
    margin-bottom: 0.25rem;
}

.peak-footer-legal a {
    color: #9ca3af;
    transition: color 0.2s;
}

.peak-footer-legal a:hover {
    color: #ffffff;
}

/* Bottom Bar (Legacy support) */
.peak-footer-bottom-bar {
    margin-top: 4rem;
    padding-top: 2rem;
    padding-bottom: 2rem;
    border-top: 1px solid #4b5563;
}

.peak-footer-bottom-bar .text-center {
    text-align: center;
}

.peak-footer-bottom-bar .text-sm {
    font-size: 0.875rem;
}

.peak-footer-bottom-bar .text-xs {
    font-size: 0.75rem;
}
