/*
Theme Name: Rabbit Custom
Template: hello-elementor
Version: 2.1 (Perfect Navbar Alignment & Spacing)
*/

/* ==========================================================
   ✅ GLOBAL SETTINGS
========================================================== */

@import url('https://fonts.googleapis.com/css2?family=Montserrat:wght@300;400;500;600;700&display=swap');

* {
    box-sizing: border-box;
}

body {
    margin: 0 !important;
    padding-top: 64px !important;
    font-family: 'Montserrat', sans-serif !important;
    background-color: #000000;
    color: #fff;
}

img, video {
    max-width: 100%;
    height: auto;
}

/* ==========================================================
   ✅ NAVBAR (DESKTOP)
========================================================== */

.custom-navbar {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    background: #000;
    padding: 18px 0; /* ✅ Equal top and bottom padding */
    z-index: 99999;
    box-shadow: 0px 2px 10px rgba(255,255,255,0.08);
}

.nav-container {
    max-width: 1300px;
    margin: 0 auto;
    padding: 0 36px;
    display: flex;
    justify-content: space-between; /* ✅ logo left, menu right */
    align-items: center; /* ✅ vertical alignment perfect */
}

.nav-logo {
    width: 65px;
    display: flex;
    align-items: center;
}

/* Menu desktop */
.nav-menu {
    display: flex;
    align-items: center;
    gap: 45px; /* ✅ Even spacing between menu items */
    list-style: none;
    margin: 0;
    padding: 0;
}

.nav-menu li {
    position: relative;
}

.nav-menu li a {
    color: #ffffff !important;
    text-decoration: none;
    font-size: 18px;
    font-weight: 400;
    letter-spacing: 0.5px;
    display: flex;
    align-items: center;
    transition: color 0.3s ease;
}

/* ✅ Equal hover effect */
.nav-menu li a:hover {
    color: #32b448 !important;
}

/* Default dropdown arrow */
.menu-item-has-children > a::after {
    content: " ▾";
    font-size: 14px;
    margin-left: 4px;
}

/* ✅ Hide dropdown arrow only for profile icon */
.menu-user-icon > a::after {
    content: "" !important;
}
/* ✅ Hide mobile menu button on desktop */
.mobile-toggle {
    display: none !important;
}

/* ✅ Show desktop navbar styling */
.custom-navbar {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    background: #000;
    padding: 18px 0;
    z-index: 99999;
    box-shadow: 0px 2px 10px rgba(255,255,255,0.08);
}

/* ✅ Desktop menu visible */
@media (min-width: 992px) {
    .nav-menu {
        display: flex !important;
        transform: translateX(0) !important;
        position: static !important;
        background: transparent !important;
        width: auto !important;
        height: auto !important;
        padding: 0 !important;
        top: auto !important;
        left: auto !important;
        border-radius: 0 !important;
    }
}

/* ==========================================================
   ✅ SUB MENU (Dropdown)
========================================================== */

.sub-menu {
    display: none !important;
    position: absolute;
    top: 25px;
    left: 0;
    background: #000;
    min-width: 220px;
    padding: 0;
    border-radius: 5px;
    flex-direction: column;
    z-index: 100000;
}

.sub-menu.open {
    display: flex !important;
}

.sub-menu li a {
    padding: 12px 18px;
    font-size: 18px;
    white-space: nowrap;
}

.sub-menu li a:hover {
    background: #111;
    color: #32b448 !important;
}

/* ==========================================================
   ✅ MOBILE NAVIGATION
========================================================== */

@media (max-width: 991px) {
    .custom-navbar {
        padding: 10px 10px !important;
        background: #181818;
        border-radius: 30px;
        box-shadow: none;
        position: fixed;
        top: 2px;
        left: 7px;
        right: 7px;
        width: calc(100% - 14px);
        height: auto;
    }

    .nav-container {
        padding: 0 !important;
        display: flex;
        justify-content: space-between;
        align-items: center;
        max-width: none;
        margin: 0;
        gap: 10px;
    }

    .nav-logo {
        width: auto;
        display: flex;
        align-items: center;
        min-width: 50px;
        padding: 0;
        margin: 0;
        background: transparent;
        border: none;
    }

    .logo {
        display: flex;
        align-items: center;
        background: transparent;
        border: none;
        padding: 0;
        margin: 0;
    }

    .nav-logo img {
        height: 45px;
        width: 45px;
        background: transparent;
        border: none;
        box-shadow: none;
        padding: 0;
        margin: 0;
    }

    .mobile-toggle {
        display: flex !important;
        position: relative;
        right: auto;
        top: auto;
        transform: none;
        z-index: 100000;
        background: #000;
        padding: 12px 16px;
        border-radius: 30px;
        gap: 6px;
        cursor: pointer;
        color: #fff;
        user-select: none;
        align-items: center;
        justify-content: center;
        white-space: nowrap;
    }

    .menu-text {
        display: inline-block;
        font-size: 12px;
        font-weight: 600;
        color: #fff;
    }

    .menu-icon {
        display: inline-block;
        font-size: 12px;
        color: #fff;
        line-height: 1.3;
    }

    .nav-menu {
        display: flex;
        flex-direction: column;
        width: calc(100% - 14px);
        background: #1a1a1a;
        position: fixed;
        left: 7px;
        top: 74px;
        padding: 15px 15px;
        gap: 0 !important;
        z-index: 9999;
        align-items: flex-start;
        transform: translateX(-102%);
        transition: transform 0.3s ease;
        height: 50vh;
        overflow-y: auto;
        border-radius: 30px;
      }

    .nav-menu.open {
        transform: translateX(0);
    }

    .nav-menu li a {
        text-align: left;
        justify-content: flex-start;
        padding-left: 10px;
        margin: 15px 0 !important;
    }

    .nav-menu li {
        gap: 0 !important;
        margin: 0 !important;
        width: 100%;
    }

    .menu-item-has-children > a {
        position: relative;
        padding-right: 40px;
    }
	

    .menu-item-has-children > a::after {
        content: "▼";
        position: absolute;
        right: 15px;
        top: 50%;
        transform: translateY(-50%);
        font-size: 18px;
    }

    .sub-menu {
        position: relative;
        background: transparent;
        padding-left: 5px;
        padding-top: 0 !important;
        padding-bottom: 0 !important;
        margin: 0 !important;
        margin-bottom: 40px !important;
        margin-top: -10px !important;
        display: none !important;
        align-items: flex-start;
        list-style: none;
    }

    .sub-menu li {
        margin: 0 !important;
        padding: 0 !important;
        list-style: none !important;
    }

     .sub-menu li a {
        text-align: left;
        justify-content: flex-start;
        padding-left: 0px;
        padding-top: 0 !important;
        padding-bottom: 0 !important;
        margin: 0 !important;
        display: block !important;
        line-height: 1.5;
    }

    .sub-menu.open {
        display: block !important;
    }
	    /* 🔥 Mobile submenu wrapper */
    .mobile-submenu {
        margin-top: 0 !important;
        padding-top: 4px !important;
    }

    .mobile-submenu li a {
        padding: 6px 0 !important;
        line-height: 1.2 !important;
    }
}
}

/* ==========================================================
   ✅ FOOTER
========================================================== */

/* ===============================
   FORCE FOOTER BLACK BACKGROUND
================================ */

/* Elementor footer wrapper */
.elementor-location-footer,
.elementor-location-footer * {
    background-color: #000 !important;
}

/* Hello Elementor footer */
.site-footer,
.site-footer * {
    background-color: #000 !important;
}

/* Your custom footer */
.custom-footer {
    background-color: #000 !important;
}

.custom-footer {
    
    background-color: #000 !important;
    padding: 60px 0;
    text-align: center;
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
}


.footer-menu {
    display: flex;
    justify-content: center;
    align-items: center;
    margin-bottom: 40px;
    width: 100%;
}

.footer-links {
    list-style: none;
    display: flex;
    justify-content: center;
    gap: 50px;
    padding: 0;
    margin: 0;
}

.footer-links li a {
    color: #fff !important;
    font-size: 18px;
    font-weight: 500;
    text-transform: uppercase;
    text-decoration: none;
    transition: 0.3s ease-in-out;
}

.footer-links li a:hover {
    color: #32b448 !important;
}

.footer-company {
    font-size: 22px;
    font-weight: 500;
    margin-top: 10px;
    color: #9e9b9b;
    text-align: center;
    width: 100%;
}

.footer-company p {
    margin: 5px 0;
}

.footer-address {
    font-size: 16px;
    margin-top: 5px;
    color: #9e9b9b;
    text-align: center;
    width: 100%;
}



/* ==========================================================
   ✅ FOOTER (Mobile)
========================================================== */

@media (max-width: 768px) {
    .footer-links {
        flex-direction: column;
        align-items: center;
        gap: 12px;
		
    }


    .footer-menu {
        margin-bottom: 25px;
    }

    .footer-company {
        margin-top: 15px;
        font-size: 16px;
    }

    .footer-address {
        font-size: 12px;
    }
}
    
/* ==========================================================
   ✅ PAGE BACKGROUND OVERRIDES
========================================================== */

body.page-id-109,
body.page-id-106,
body.page-id-322,
body.page-id-324,
body.page-id-519,
body.page-id-511 {
    background-color: #000 !important;
}

/* ==========================================================
   ✅ BUTTON + LINK CLEANUP (NO UNDERLINE ANYWHERE)
========================================================== */

.elementor-button,
.elementor-button *,
.elementor-button:hover,
.elementor-button:focus,
a.elementor-button-link {
    text-decoration: none !important;
}

a {
    text-decoration: none !important;
}






