/**
 * Theme Name:     Hello Elementor Child
 * Author:         Elementor Team
 * Template:       hello-elementor
 * Text Domain:	   hello-elementor-child
 * Description:    Hello Elementor is a lightweight and minimalist WordPress theme that was built specifically to work seamlessly with the Elementor site builder plugin. The theme is free, open-source, and designed for users who want a flexible, easy-to-use, and customizable website. The theme, which is optimized for performance, provides a solid foundation for users to build their own unique designs using the Elementor drag-and-drop site builder. Its simplicity and flexibility make it a great choice for both beginners and experienced Web Creators.
 */
/* ==========================================================================
   AS CREATIONS
   ========================================================================== */

.asc-footer {
    background-color: #000000 !important;
    color: #ffffff !important;
    padding: 80px 24px 40px 24px;
    font-family: inherit;
    width: 100%;
    box-sizing: border-box;
    display: block;
    clear: both;
}

.asc-footer * {
    box-sizing: border-box;
    margin: 0;
    padding: 0;
}

.asc-footer__inner {
    max-width: 1200px;
    margin: 0 auto;
    width: 100%;
}

/* Grid System Split */
.asc-footer__grid {
    display: grid;
    grid-template-columns: 1.5fr 1fr 1fr 1.2fr;
    gap: 40px;
    padding-bottom: 60px;
}

/* Logo & Fallback Elements */
.asc-footer__logo {
    text-decoration: none;
    display: inline-block;
    margin-bottom: 20px;
}

.asc-footer__logo-fallback {
    display: flex;
    align-items: center;
    gap: 12px;
}

.asc-footer__logo-mark {
    width: 36px;
    height: 36px;
    display: flex;
    align-items: center;
    justify-content: center;
}

.asc-footer__logo-name {
    font-size: 24px;
    font-weight: 700;
    color: #ffffff;
    letter-spacing: -0.5px;
}

.asc-footer__logo-name sup {
    font-size: 11px;
    top: -8px;
    font-weight: 400;
}

/* Brand Descriptions */
.asc-footer__tagline {
    font-size: 15px;
    line-height: 1.5;
    color: #999999;
    margin-bottom: 25px;
    max-width: 300px;
}

/* Rounded Border Social Link Assemblies */
.asc-footer__socials {
    display: flex;
    gap: 12px;
}

.asc-footer__social-btn {
    width: 40px;
    height: 40px;
    border: 1px solid #262626;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    color: #ffffff;
    text-decoration: none;
    transition: all 0.25s ease;
}

.asc-footer__social-btn svg {
    width: 16px;
    height: 16px;
    fill: currentColor;
}

/* Border highlighting matching the prototype on hover */
.asc-footer__social-btn:hover {
    border-color: #ffffff;
    background-color: #111111;
    transform: translateY(-2px);
}

/* Column Headings */
.asc-footer__col-heading {
    font-size: 16px;
    font-weight: 600;
    color: #ffffff;
    margin-bottom: 24px;
    letter-spacing: 0.2px;
}

/* Vertical Generic Link Menus */
.asc-footer__links {
    list-style: none;
}

.asc-footer__links li {
    margin-bottom: 14px;
}

.asc-footer__links a {
    color: #999999;
    text-decoration: none;
    font-size: 15px;
    transition: color 0.2s ease;
}

.asc-footer__links a:hover {
    color: #ffffff;
}

/* Contact Info Column Panel */
.asc-footer__contact-list {
    list-style: none;
}

.asc-footer__contact-list li {
    display: flex;
    align-items: center;
    gap: 12px;
    margin-bottom: 16px;
    color: #999999;
    font-size: 15px;
}

.asc-footer__contact-list a {
    color: #999999;
    text-decoration: none;
    transition: color 0.2s ease;
}

.asc-footer__contact-list a:hover {
    color: #ffffff;
}

.asc-footer__contact-icon {
    display: flex;
    align-items: center;
    justify-content: center;
    flex-shrink: 0;
}

.asc-footer__contact-icon svg {
    width: 16px;
    height: 16px;
    fill: #999999;
    display: block;
}

/* Handle line outlines for mixed structure SVGs safely */
.asc-footer__contact-list li:nth-child(2) .asc-footer__contact-icon svg {
    fill: none;
    stroke: #999999;
    stroke-width: 2;
}
.asc-footer__contact-list li:nth-child(4) .asc-footer__contact-icon svg {
    fill: none;
    stroke: #999999;
    stroke-width: 1.75;
}

.asc-footer__contact-list li:hover .asc-footer__contact-icon svg {
    fill: #ffffff;
}
.asc-footer__contact-list li:hover:nth-child(2) .asc-footer__contact-icon svg,
.asc-footer__contact-list li:hover:nth-child(4) .asc-footer__contact-icon svg {
    fill: none;
    stroke: #ffffff;
}

/* Bottom Bar Separators & Muted Accents */
.asc-footer__bottom {
    border-top: 1px solid #1a1a1a;
    padding-top: 30px;
    text-align: center;
}

.asc-footer__copy {
    font-size: 14px;
    color: #666666;
    letter-spacing: 0.3px;
    line-height: 1.6;
}

.asc-footer__accent-green {
    
    font-weight: 500;
}

/* Responsive Fluid Columns Layout */
@media (max-width: 992px) {
    .asc-footer__grid {
        grid-template-columns: 1fr 1fr;
        gap: 40px;
    }
    .asc-footer {
        padding: 60px 24px 30px 24px;
    }
}

@media (max-width: 576px) {
    .asc-footer__grid {
        grid-template-columns: 1fr;
        gap: 35px;
    }
    .asc-footer__tagline {
        max-width: 100%;
    }
    .asc-footer__col-heading {
        margin-bottom: 16px;
    }
}