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

/* ========================================================= */
/* HEADER                                                     */
/* ========================================================= */
.hdr-mobcon {
    display: none;
    background: var(--secondary);
    color: #fff;
    text-align: center;
    padding: 8px 15px;
    font-size: 14px;
    font-weight: 600;
    letter-spacing: .4px;
}
.hdr-mobcon a { color: #fff; text-decoration: none; }

.hdr-main {
    background: #fff;
    box-shadow: 0 2px 10px rgba(0,0,0,.09);
    position: sticky;
    top: 0;
    z-index: 1000;
}
.hdr-nav { width: 100%; }

/* Outer wrapper: LEFT logo | RIGHT panel */
.hdr-wrapper {
    display: flex;
    align-items: stretch;
    max-width: 1280px;
    margin: 0 auto;
    padding: 0 20px;
}

/* ---- LEFT: logo ---- */
.hdr-left {
    display: flex;
    align-items: center;
    padding: 10px 20px 10px 0;
    flex-shrink: 0;
}
.hdr-logo-link {
    display: flex;
    align-items: center;
    text-decoration: none;
}
.hdr-logo-img-tag {
    height: 90px;
    width: auto;
    object-fit: contain;
    display: block;
}

/* ---- RIGHT panel ---- */
.hdr-right {
    flex: 1;
    display: flex;
    flex-direction: column;
    min-width: 0;
    padding-left: 16px;
}

/* TOP row */
.hdr-top {
    display: flex;
    align-items: center;
    gap: 20px;
    padding: 8px 0;
    border-bottom: 1px solid #f0f0f0;
}

/* Heart + Register */
.hdr-register {
    display: flex;
    align-items: center;
    gap: 8px;
    flex-shrink: 0;
}
.hdr-register-icon {
    width: 44px;
    height: 44px;
    background: var(--primary-light);
    border-radius: 50% 50% 50% 0;
    display: flex;
    align-items: center;
    justify-content: center;
    flex-shrink: 0;
    transform: rotate(5deg);
}
.hdr-register-icon img {
    width: 18px;
    height: 18px;
    object-fit: contain;
    transform: rotate(-5deg);
}
.hdr-register-link {
    font-family: 'Caveat', cursive;
    font-size: 1.8rem;
    font-weight: 700;
    color: var(--secondary);
    text-decoration: none;
    line-height: 1.1;
    display: inline-block;
}
.hdr-register-link span {
    color: var(--primary);
    text-decoration: underline;
    margin-left: 3px;
}

/* Contact list */
.hdr-contact-list {
    list-style: none;
    padding: 0;
    margin: 0;
    display: flex;
    gap: 18px;
    flex: 1;
}
.hdr-contact-list li {
    display: flex;
    align-items: center;
    gap: 10px;
}
.hdr-ci {
    width: 44px;
    height: 44px;
    border-radius: 50%;
    border: 1.5px solid var(--primary-light);
    display: flex;
    align-items: center;
    justify-content: center;
    background: #fff;
    color: var(--primary);
    flex-shrink: 0;
}
.hdr-ct p {
    font-size: .7rem;
    color: var(--text-muted);
    margin: 0;
    line-height: 1.2;
}
.hdr-ct h5 {
    font-size: .78rem;
    font-weight: 700;
    color: #222;
    margin: 0;
    line-height: 1.3;
}
.hdr-ct h5 a { color: #222; text-decoration: none; }
.hdr-ct h5 a:hover { color: var(--primary); }

/* Social icons */
.hdr-social {
    display: flex;
    gap: 5px;
    flex-shrink: 0;
}
.hdr-social a {
    width: 28px;
    height: 28px;
    border-radius: 50%;
    background: var(--primary);
    color: #fff;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: .75rem;
    text-decoration: none;
    font-weight: 700;
    transition: background .2s;
}
.hdr-social a:hover { background: var(--primary-dark); }

/* BOTTOM row */
.hdr-bottom {
    background: #dc2626;
    border-radius: 35px;
    overflow: visible;
    position: relative;
    z-index: 1000;
    display: flex;
    align-items: stretch;
    justify-content: space-between;
    padding: 0 0 0 20px;
    margin-top: 5px;
}

/* Nav menu */
.hdr-menu {
    list-style: none;
    padding: 0;
    margin: 0;
    display: flex;
    align-items: stretch;
    gap: 0;
}
.hdr-menu > li {
    display: flex;
    align-items: stretch;
    position: relative;
}
.hdr-menu > li > a,
.hdr-menu > li > button {
    display: flex;
    align-items: center;
    padding: 15px 8px;
    font-size: .78rem;
    font-weight: 700;
    color: #fff;
    text-decoration: none;
    white-space: nowrap;
    transition: color .2s;
    background: none;
    border: none;
    cursor: pointer;
    font-family: 'Manrope', sans-serif;
}
.hdr-menu > li > a:hover,
.hdr-menu > li > button:hover { color: #fef08a; }

/* Dropdown */
.hdr-has-child { position: relative; }
.hdr-has-child > a::after { content: " ▾"; font-size: .62rem; margin-left: 4px; }
.hdr-submenu {
    display: none;
    position: absolute;
    top: 100%;
    left: 0;
    background: #fff;
    min-width: 230px;
    list-style: none;
    padding: 8px 0;
    margin: 0;
    box-shadow: 0 10px 25px rgba(0,0,0,.25);
    border-top: 3px solid #dc2626;
    border-radius: 0 0 8px 8px;
    z-index: 99999;
}
.hdr-has-child:hover > .hdr-submenu,
.hdr-has-child:focus-within > .hdr-submenu {
    display: block !important;
}
.hdr-submenu li a {
    display: block;
    padding: 10px 20px;
    font-size: .82rem;
    font-weight: 600;
    color: var(--text-main);
    text-decoration: none;
    transition: background .15s, color .15s;
    text-align: left;
}
.hdr-submenu li a:hover { background: #fee2e2; color: #dc2626; }

/* Actions area: Login + Hamburger */
.hdr-actions {
    display: flex;
    align-items: stretch;
    gap: 0;
    flex-shrink: 0;
}
.hdr-donate-btn {
    background: #dc2626;
    color: #fff !important;
    padding: 0 20px;
    display: flex;
    align-items: center;
    font-size: .85rem;
    font-weight: 800;
    text-decoration: none;
    white-space: nowrap;
    transition: background .2s;
    font-family: 'Manrope', sans-serif;
    border-left: 1px solid rgba(255,255,255,0.2);
}
.hdr-donate-btn:hover { background: #b91c1c; color: #fff !important; }

.hdr-login-btn {
    background: #dc2626;
    color: #fff !important;
    padding: 0 25px;
    display: flex;
    align-items: center;
    font-size: .88rem;
    font-weight: 800;
    text-decoration: none;
    white-space: nowrap;
    transition: background .2s, color .2s;
    font-family: 'Manrope', sans-serif;
    border-top-right-radius: 35px;
    border-bottom-right-radius: 35px;
    border-left: 1px solid rgba(255,255,255,0.2);
}
.hdr-login-btn:hover { background: #b91c1c; color: #fff !important; }

.hdr-hamburger {
    display: none;
    flex-direction: column;
    gap: 5px;
    background: none;
    border: none;
    cursor: pointer;
    padding: 6px;
}
.hdr-hamburger span {
    display: block;
    width: 24px;
    height: 3px;
    background: var(--primary, #c45a28);
    border-radius: 2px;
    transition: all .3s;
}

.hdr-mobile-only { display: none !important; }

/* ========================================================= */
/* MOBILE DRAWER                                              */
/* ========================================================= */
.hdr-overlay {
    display: none;
    position: fixed;
    inset: 0;
    background: rgba(0,0,0,.5);
    z-index: 1100;
}
.hdr-drawer {
    position: fixed;
    top: 0;
    left: -100%;
    width: 285px;
    height: 100%;
    background: #fff;
    z-index: 1200;
    overflow-y: auto;
    transition: left .3s ease;
    padding: 1.2rem;
    box-shadow: 4px 0 20px rgba(0,0,0,.15);
}
.hdr-drawer-head {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding-bottom: .75rem;
    margin-bottom: .75rem;
    border-bottom: 1px solid #eee;
    font-size: .92rem;
}
.hdr-drawer-close {
    background: none;
    border: none;
    font-size: 1.6rem;
    cursor: pointer;
    color: #666;
    line-height: 1;
    padding: 0;
}
.hdr-drawer-contact {
    font-size: .78rem;
    color: #777;
    margin-bottom: .9rem;
    line-height: 1.9;
}
.hdr-drawer-contact a { color: var(--primary, #c45a28); font-weight: 600; text-decoration: none; }

.hdr-drawer-nav { display: flex; flex-direction: column; }
.hdr-dl {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: .58rem .25rem;
    font-size: .87rem;
    font-weight: 600;
    color: #333;
    text-decoration: none;
    border-bottom: 1px solid #f2f2f2;
    background: none;
    border-left: none;
    border-right: none;
    border-top: none;
    width: 100%;
    text-align: left;
    cursor: pointer;
    font-family: inherit;
    transition: color .2s;
}
.hdr-dl:hover { color: var(--primary, #c45a28); }

.hdr-dacc-panel {
    display: none;
    flex-direction: column;
    padding-left: .8rem;
}
.hdr-ds {
    display: block;
    padding: .42rem .25rem;
    font-size: .81rem;
    color: #666;
    text-decoration: none;
    border-bottom: 1px solid #f8f8f8;
    transition: color .15s;
}
.hdr-ds:hover { color: var(--primary, #c45a28); }

/* ========================================================= */
/* RESPONSIVE                                                 */
/* ========================================================= */
@media (max-width: 991px) {
    .hdr-top         { display: none; }
    .hdr-menu        { display: none; }
    .hdr-desktop-only{ display: none !important; }
    .hdr-hamburger   { display: flex !important; }
    .hdr-mobile-show { display: flex !important; }
    .hdr-mobcon      { display: block; }
    .hdr-bottom      { background: transparent; border-radius: 0; padding: 0; margin-top: 0; display: flex; align-items: center; justify-content: flex-end; }
    .hdr-hamburger span { background: var(--primary); }
    .hdr-wrapper {
        justify-content: space-between;
        align-items: center;
        height: 70px;
        padding: 0 15px;
        width: 100%;
        box-sizing: border-box;
    }
    .hdr-left {
        padding: 0;
    }
    .hdr-logo-img-tag {
        height: 50px;
    }
    .hdr-right {
        flex: 1;
        padding-left: 0;
        display: flex;
        flex-direction: row;
        align-items: center;
        justify-content: flex-end;
    }
    .hdr-actions {
        display: flex;
        align-items: center;
        justify-content: flex-end;
    }
    .hdr-hamburger {
        display: flex !important;
        align-items: center;
        justify-content: center;
        padding: 10px;
    }
}
@media (min-width: 992px) {
    .hdr-mobile-show { display: none !important; }
    .hdr-mobcon      { display: none !important; }
}
@media (min-width: 992px) and (max-width: 1300px) {
    .hdr-menu > li > a,
    .hdr-menu > li > button {
        padding: 15px 5px;
        font-size: .73rem;
    }
    .hdr-login-btn {
        padding: 0 15px;
        font-size: .8rem;
    }
}
@media (max-width: 1200px) {
    .hdr-contact-list li:last-child { display: none; }
}
@media (max-width: 1050px) {
    .hdr-contact-list li:nth-child(2) { display: none; }
}

/* Style Google Translate dropdown */
#google_translate_element select.goog-te-combo {
    background: var(--secondary);
    color: #fff;
    border: 1px solid var(--primary);
    padding: 4px 10px;
    border-radius: 6px;
    font-size: 0.8rem;
    font-weight: 600;
    outline: none;
    cursor: pointer;
    font-family: 'Inter', sans-serif;
    transition: all 0.25s ease;
}
#google_translate_element select.goog-te-combo:hover {
    border-color: var(--primary-light);
    background: var(--secondary-light);
    box-shadow: 0 0 10px rgba(234, 88, 12, 0.2);
}
.goog-logo-link, .goog-te-gadget span {
    display: none !important;
}
.goog-te-gadget {
    color: transparent !important;
    font-size: 0px !important;
}
.goog-te-banner-frame.skiptranslate,
.goog-te-gadget-icon,
.goog-te-gadget-simple img,
#goog-gt-tt,
.goog-te-balloon-frame {
    display: none !important;
}
body {
    top: 0px !important;
}

.hdr-lang-selector {
    margin-left: 15px;
    display: inline-flex;
    align-items: center;
    vertical-align: middle;
}
.simple-lang-dropdown {
    background: #ffffff;
    border: 1px solid var(--border-light);
    color: var(--text-main);
    padding: 5px 12px;
    border-radius: 20px;
    font-size: 0.8rem;
    font-weight: 600;
    cursor: pointer;
    outline: none;
    transition: var(--transition);
    box-shadow: var(--shadow-sm);
}
.simple-lang-dropdown:hover {
    border-color: var(--primary);
    color: var(--primary-dark);
}
.hdr-drawer-actions {
    margin-top: 1rem;
    display: flex;
    flex-direction: column;
    gap: .6rem;
}
.hdr-drawer-btn {
    text-align: center;
    border-radius: 4px;
    padding: .7rem;
}
