/* =====================================================
   GO CORE — SHARED ACROSS ALL LANDINGS
   Neutral • Structural • Non-opinionated
===================================================== */

html,
body { 
    font-family: "Lato", sans-serif;
}

.hn-header-container{margin: 10px auto;}

/* -----------------------------------------------------
   Layout primitives
----------------------------------------------------- */

/* Consistent hero offset for sticky header */
.hn-hero {
    padding-top: 110px;
}

/* Reading width optimized for ads */
.hn-container {
    max-width: 1080px;
}


/* -----------------------------------------------------
   Header actions (shared)
----------------------------------------------------- */

.hn-logo-box{padding: 5px; width:40px; height: 40px;}

.hn-logo-box img {
        width: 40px;
    height: 40px;
}

.hn-header-actions {
    display: flex;
    align-items: center;
    gap: 14px;
}

.hn-header-icon {
    width: 40px;
    height: 40px;
    border-radius: 50%;
    background: rgba(0,0,0,0.04);
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 18px;
    border: 1px solid var(--hn-border-soft);
    transition: background 0.2s ease, transform 0.15s ease;
}

.hn-header-icon:hover {
    background: rgba(0,0,0,0.08);
    transform: translateY(-1px);
}

.hn-header-icon .fa-whatsapp,
.hn-header-icon .fa-phone-alt {
    color: var(--hn-primary);
}

/* -----------------------------------------------------
   Mobile helpers
----------------------------------------------------- */

.hn-hide-mobile {
    display: flex;
}

.hn-show-mobile {
    display: none;
}

@media (max-width: 768px) {
    .hn-hide-mobile {
        display: none;
    }
    .hn-show-mobile {
        display: block;
    }
}

/* -----------------------------------------------------
   Mobile menu
----------------------------------------------------- */

.hn-menu-toggle {
    background: none;
    border: none;
    font-size: 20px;
    cursor: pointer;
}

.hn-mobile-menu {
    display: none;
    background: #fff;
    border-top: 1px solid var(--hn-border-soft);
}

.hn-mobile-menu.open {
    display: block;
}

.hn-mobile-menu-item {
    display: flex;
    align-items: center;
    gap: 12px;
    padding: 16px;
    font-size: 15px;
    border-bottom: 1px solid var(--hn-border-soft);
    color: var(--hn-text-main);
}

.hn-mobile-menu-item i {
    font-size: 18px;
}
