/*
 Theme Name: Hello Elementor Child
 Theme URI: https://elementor.com/
 Description: Child theme for Hello Elementor
 Author: Your Name
 Template: hello-elementor
 Version: 1.0
*/


.custom-header {
    width: 100%;
    background: #ffffff;
    position: sticky;
    top: 0;
    z-index: 9999;
    border-bottom: 1px solid #eee;
}

.header-container {
    max-width: 1200px;
    margin: 0 auto;
    padding: 12px 20px;
    display: flex;
    align-items: center;
    justify-content: space-between;
}

/* Logo */
.site-logo img {
    height: 55px;
}

/* Desktop Menu */
.main-menu .menu-items {
    display: flex;
    gap: 28px;
    list-style: none;
    margin: 0;
}

.main-menu .menu-items li a {
    text-decoration: none;
    color: #333;
    font-weight: 600;
    padding: 8px 0;
    transition: 0.2s;
}

.main-menu .menu-items li a:hover {
    color: #e0a300;
}

/* Mobile Button */
.mobile-menu-btn {
    display: none;
    font-size: 28px;
    cursor: pointer;
}

/* Mobile Menu */
.mobile-menu {
    display: none;
    background: white;
    border-top: 1px solid #eee;
}

.mobile-menu.active {
    display: block;
}

.mobile-menu-items {
    list-style: none;
    padding: 10px 20px;
}

.mobile-menu-items li {
    border-bottom: 1px solid #f1f1f1;
}

.mobile-menu-items li a {
    display: block;
    padding: 12px 0;
    text-decoration: none;
    color: #333;
    font-weight: 600;
}

.mobile-menu-items li a:hover {
    color: #e0a300;
}

/* Responsive */
@media (max-width: 900px) {
    .main-menu { display: none; }
    .mobile-menu-btn { display: block; }
    .site-logo{
    margin-left: -50px;
}
}


/* =============================
   CUSTOM FOOTER
============================= */

.custom-footer {
    background: #111;
    color: #eee;
    padding: 50px 20px 20px 20px;
}

.footer-container {
    max-width: 1200px;
    margin: auto;
    display: flex;
    gap: 40px;
    justify-content: space-between;
    flex-wrap: wrap;
}

/* Columns */
.footer-col {
    flex: 1 1 250px;
}

.footer-col h3 {
    font-size: 20px;
    margin-bottom: 15px;
    color: #ffffff !important;
}

/* Logo + About */
.footer-about p {
    margin-top: 10px;
    line-height: 1.5;
}

.footer-logo {
    width: 140px;
    margin-bottom: 10px;
}

/* Menu */
.footer-menu {
    list-style: none;
    margin: 0;
    padding: 0;
}

.footer-menu li {
    margin-bottom: 10px;
}

.footer-menu li a {
    text-decoration: none;
    color: #eee;
    transition: 0.2s;
}

.footer-menu li a:hover {
    color: #ffc107;
}

/* Contact Info */
.footer-contact {
    list-style: none;
    padding: 0;
}

.footer-contact li {
    margin-bottom: 10px;
}

/* Bottom Bar */
.footer-bottom {
    text-align: center;
    padding: 15px 0;
    margin-top: 30px;
    border-top: 1px solid #333;
    font-size: 14px;
    color: #bbb;
}


/* Responsive */
@media (max-width: 768px) {
    .footer-container {
        flex-direction: column;
        text-align: center;
    }
    .footer-menu{
        margin-top: 0px;
    }
}
