/*
 * Enhanced Footer and Template Styles
 * A Stone Tech Theme Additional CSS
 */

/* ==========================================================================
   ENHANCED FOOTER STYLES (4 Columns with White Headings)
   ========================================================================== */
.site-footer {
    background: linear-gradient(135deg, #1a1a2e 0%, #16213e 100%);
    color: rgba(255, 255, 255, 0.9);
    padding: 4rem 2rem 1rem;
    position: relative;
    overflow: hidden;
}

.site-footer::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 2px;
    background: linear-gradient(90deg, var(--color-primary), var(--color-accent), var(--color-secondary));
}

.footer-content {
    max-width: var(--max-width);
    margin: 0 auto;
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 3rem;
    margin-bottom: 3rem;
}

.footer-widget {
    animation: fadeInUp 0.6s ease-out;
}

.footer-heading,
.footer-widget h3,
.footer-widget h4 {
    color: #ffffff !important;
    font-size: 1.25rem;
    font-weight: 700;
    margin-bottom: 1.5rem;
    text-transform: uppercase;
    letter-spacing: 1px;
    position: relative;
    padding-bottom: 0.75rem;
}

.footer-heading::after,
.footer-widget h3::after {
    content: '';
    position: absolute;
    bottom: 0;
    left: 0;
    width: 50px;
    height: 3px;
    background: linear-gradient(90deg, var(--color-primary), var(--color-accent));
    border-radius: 2px;
}

.footer-logo {
    max-width: 180px;
    margin-bottom: 1.5rem;
    filter: brightness(1.2);
}

.footer-description {
    color: rgba(255, 255, 255, 0.85);
    line-height: 1.7;
    margin-bottom: 1.5rem;
}

.footer-contact-info {
    margin-top: 1.5rem;
}

.footer-contact-item {
    display: flex;
    align-items: center;
    margin-bottom: 0.75rem;
    color: rgba(255, 255, 255, 0.9);
    transition: all 0.3s;
}

.footer-contact-item:hover {
    color: var(--color-primary);
    transform: translateX(5px);
}

.footer-icon {
    font-size: 1.2rem;
    margin-right: 0.75rem;
}

.footer-menu {
    list-style: none;
}

.footer-menu a {
    color: rgba(255, 255, 255, 0.85);
    transition: all 0.3s;
    position: relative;
    padding-left: 0;
}

.footer-menu a:hover {
    color: #ffffff;
    padding-left: 10px;
}

.footer-social-links {
    display: flex;
    gap: 1rem;
    flex-wrap: wrap;
}

.footer-social-link {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    width: 45px;
    height: 45px;
    background: rgba(255, 255, 255, 0.1);
    border-radius: 50%;
    transition: all 0.3s;
}

.footer-social-link:hover {
    background: var(--color-primary);
    transform: translateY(-5px) rotate(360deg);
}

.footer-bottom-content {
    max-width: var(--max-width);
    margin: 0 auto;
    display: flex;
    justify-content: space-between;
    align-items: center;
    flex-wrap: wrap;
}

/* Page Templates */
.page-hero {
    position: relative;
    padding: 100px 2rem 80px;
    background: linear-gradient(135deg, var(--color-primary) 0%, var(--color-accent) 100%);
    color: #fff;
    text-align: center;
}

.page-title {
    font-size: 3rem;
    margin-bottom: 1rem;
    color: #fff;
}

.breadcrumbs {
    margin-bottom: 1.5rem;
    font-size: 0.9rem;
}

/* Landing Page */
.landing-hero {
    min-height: 100vh;
    display: flex;
    align-items: center;
    justify-content: center;
    position: relative;
}

.landing-title {
    font-size: 4rem;
    font-weight: 800;
}

.trust-item {
    background: rgba(255, 255, 255, 0.2);
    padding: 0.75rem 1.5rem;
    border-radius: 50px;
}

.feature-card {
    background: #fff;
    padding: 2.5rem;
    border-radius: 15px;
    transition: all 0.3s;
}

.feature-card:hover {
    transform: translateY(-10px);
}

.scroll-to-top {
    position: fixed;
    bottom: 90px;
    right: 30px;
    width: 50px;
    height: 50px;
    background: var(--color-dark);
    color: #fff;
    border: none;
    border-radius: 50%;
    opacity: 0;
    transition: all 0.3s;
    z-index: 998;
}

.scroll-to-top.visible {
    opacity: 1;
}

/* Responsive */
@media (max-width: 1024px) {
    .footer-content {
        grid-template-columns: repeat(2, 1fr);
    }
}

@media (max-width: 768px) {
    .footer-content {
        grid-template-columns: 1fr;
    }
    
    .landing-title {
        font-size: 2.5rem;
    }
}
"/* Hide unwanted excerpts */ .page-template-front-page .entry-summary { display: none; } .home .card .entry-summary { display: none; }" 
