/*
Theme Name: Sandy Hello Elementor Child
Theme URI: https://www.sandyelchaar.com/
Description: Child theme for Sandy ElChaar, based on Hello Elementor.
Author: Sandy ElChaar
Template: hello-elementor
Version: 1.2.0
Text Domain: sandy-hello-elementor-child
*/

/* Sandy global header */
.sandy-header,
.sandy-header *{
    box-sizing:border-box;
}

.sandy-header{
    position:sticky;
    top:0;
    z-index:1000;
    background:rgba(255,255,255,.94);
    backdrop-filter:blur(14px);
    -webkit-backdrop-filter:blur(14px);
    border-bottom:1px solid #ECEFEE;
    font-family:'Heebo',sans-serif;
}

.sandy-header-inner{
    max-width:1180px;
    margin:auto;
    padding:18px 28px;
    display:flex;
    align-items:center;
    justify-content:space-between;
    gap:30px;
}

.sandy-logo{
    display:flex;
    align-items:center;
    text-decoration:none;
}

.sandy-logo img{
    width:230px;
    height:auto;
    display:block;
}

.sandy-nav{
    display:flex;
    align-items:center;
    gap:30px;
}

.sandy-nav-link{
    color:#2F5D50;
    text-decoration:none;
    font-size:16px;
    font-weight:600;
    transition:.25s ease;
    white-space:nowrap;
}

.sandy-nav-link:hover{
    color:#4F88A8;
}

.sandy-button{
    display:inline-flex;
    align-items:center;
    justify-content:center;
    padding:14px 24px;
    border-radius:14px;
    background:#2F5D50;
    color:#fff;
    text-decoration:none;
    font-size:15px;
    font-weight:700;
    transition:.25s ease;
    white-space:nowrap;
}

.sandy-button:hover{
    background:#477766;
    transform:translateY(-2px);
}

@media(max-width:900px){
    .sandy-header-inner{
        flex-direction:column;
        gap:22px;
        padding:18px 20px;
    }

    .sandy-logo img{
        width:190px;
    }

    .sandy-nav{
        flex-wrap:wrap;
        justify-content:center;
        gap:18px;
    }

    .sandy-button{
        width:100%;
        max-width:320px;
    }
}

@media(max-width:600px){
    .sandy-nav{
        flex-direction:column;
        width:100%;
    }

    .sandy-nav-link,
    .sandy-button{
        width:100%;
        text-align:center;
        justify-content:center;
    }
}


/* Sandy global footer */
.sandy-footer{
    background:#FBFCFA;
    border-top:1px solid #E5ECE8;
    padding:70px 24px 30px;
    font-family:'Heebo',sans-serif;
}

.footer-container{
    max-width:1200px;
    margin:0 auto;
    display:flex;
    justify-content:space-between;
    align-items:flex-start;
    gap:80px;
    flex-wrap:wrap;
}

.footer-brand{
    flex:1;
    min-width:300px;
}

.footer-logo{
    width:240px;
    max-width:100%;
    display:block;
    margin-bottom:22px;
}

.footer-description{
    margin:0;
    max-width:430px;
    color:#5C6868;
    font-size:16px;
    line-height:1.8;
}

.footer-links{
    display:flex;
    gap:80px;
    flex-wrap:wrap;
}

.footer-column h4{
    margin:0 0 18px;
    color:#2B3936;
    font-size:18px;
    font-weight:700;
}

.footer-column a{
    display:block;
    margin-bottom:14px;
    color:#5C6868;
    text-decoration:none;
    font-size:15px;
    transition:all .25s ease;
}

.footer-column a:hover{
    color:#2F5D50;
    transform:translateX(3px);
}

.footer-bottom{
    max-width:1200px;
    margin:60px auto 0;
    padding-top:24px;
    border-top:1px solid #E9EFEC;
    text-align:center;
}

.footer-bottom p{
    margin:0;
    color:#7A8685;
    font-size:14px;
    line-height:1.7;
}

@media (max-width:900px){
    .footer-container{
        flex-direction:column;
        gap:50px;
    }

    .footer-links{
        gap:50px;
    }

    .footer-brand,
    .footer-description{
        max-width:100%;
    }
}

@media (max-width:600px){
    .sandy-footer{
        padding:55px 24px 24px;
    }

    .footer-links{
        flex-direction:column;
        gap:35px;
    }

    .footer-logo{
        width:210px;
    }

    .footer-bottom{
        margin-top:45px;
    }

    .footer-bottom p{
        font-size:13px;
    }
}
