/* ==========================================================================
   MY Otel Danışmanlık - Theme Override
   --------------------------------------------------------------------------
   This file is loaded LAST (after style.css / responsive.css) so it re-skins
   the purchased template to the brand palette without forking the vendor CSS.
   If you later send me the original style.css, I can fold these rules into it
   for a cleaner single-source-of-truth instead of an override layer.

   Brand palette:
     --mo-gold     #d7b46a  -> primary accent (buttons, icons, highlights)
     --mo-charcoal #343a40  -> dark surfaces, headings, footer
     --mo-light    #ededed  -> light section backgrounds
   ========================================================================== */

:root {
    --mo-gold: #d7b46a;
    --mo-gold-dark: #c39f52;   /* hover / pressed state for gold */
    --mo-charcoal: #343a40;
    --mo-charcoal-2: #2b3035;  /* slightly darker charcoal for layering */
    --mo-light: #ededed;
    --mo-white: #ffffff;
    --mo-text: #4a4f54;        /* readable body text on light backgrounds */
}

/* --------------------------------------------------------------------------
   1) PRIMARY BUTTONS
   Covers the template's main CTA button and the slider button.
   -------------------------------------------------------------------------- */
.witr_btn,
.witr_btn_style .witr_btn,
.slider_btn .witr_btn,
.dtbtn,
.donate-btn-header .dtbtn,
.cs_call_area button[type="submit"],
.mc4wp-form button[type="submit"] {
    background-color: var(--mo-gold) !important;
    border-color: var(--mo-gold) !important;
    color: var(--mo-charcoal) !important;
}

.witr_btn:hover,
.slider_btn .witr_btn:hover,
.dtbtn:hover,
.donate-btn-header .dtbtn:hover,
.cs_call_area button[type="submit"]:hover,
.mc4wp-form button[type="submit"]:hover {
    background-color: var(--mo-charcoal) !important;
    border-color: var(--mo-charcoal) !important;
    color: var(--mo-gold) !important;
}

/* --------------------------------------------------------------------------
   2) SECTION TITLES
   The small label above each heading (h2) is the brand-accent text.
   -------------------------------------------------------------------------- */
.witr_section_title_inner h2 {
    color: var(--mo-gold) !important;
}

.witr_section_title_inner h1,
.witr_section_title_inner h3 span,
.ab_cont .witr_section_title_inner h3 span {
    color: var(--mo-gold) !important;
}

.witr_section_title_inner h3 {
    color: var(--mo-charcoal) !important;
}

/* --------------------------------------------------------------------------
   3) ICONS (services, features, counters, circles)
   Force every accent icon onto the gold tone.
   -------------------------------------------------------------------------- */
.all_icon_color i,
.em-service-icon i,
.witr_counter_icon i,
.service_top_text i,
.footer-sociala-icon i,
.creative_header_icon i {
    color: var(--mo-gold) !important;
}

/* Service / feature card hover accent */
.em-service2:hover .em-service-title h3 a,
.em-service-title h3 a:hover {
    color: var(--mo-gold) !important;
}

/* --------------------------------------------------------------------------
   4) NAVBAR
   Charcoal nav surface with gold hover/active for links.
   -------------------------------------------------------------------------- */
.consultionit_nav_area {
    background-color: var(--mo-charcoal) !important;
}

.consultionit_menu > ul > li > a {
    color: var(--mo-white) !important;
}

.consultionit_menu > ul > li > a:hover,
.consultionit_menu > ul > li.active > a,
.consultionit_menu ul.sub-menu li a:hover {
    color: var(--mo-gold) !important;
}

/* Search icon + its accents in the menu bar */
.em-quearys-menu .t-quearys,
.top-quearys-style {
    color: var(--mo-gold) !important;
}

/* Mobile mean-menu accent (overrides leftover #f47e1e from plugin_theme_css) */
.mean-container .mean-nav ul li a:hover,
.mean-container .mean-nav ul li.mean-last a:hover {
    color: var(--mo-gold) !important;
}
.mean-container .mean-bar,
.mean-container .mean-nav {
    background: var(--mo-charcoal) !important;
}
.mean-container a.meanmenu-reveal span {
    background: var(--mo-gold) !important;
}

/* --------------------------------------------------------------------------
   5) HEADER TOP (contact strip)
   -------------------------------------------------------------------------- */
.creative_header_address_text h3 {
    color: var(--mo-gold) !important;
}

/* --------------------------------------------------------------------------
   6) FOOTER
   Charcoal footer with gold widget titles and gold link hovers.
   -------------------------------------------------------------------------- */
.witrfm_area,
.footer-middle {
    background-color: var(--mo-charcoal) !important;
}
.footer-bottom {
    background-color: var(--mo-charcoal-2) !important;
}
.widget-title,
.witrfm_area .widget-title {
    color: var(--mo-gold) !important;
}
.witrfm_area a:hover,
.footer-menu ul li a:hover,
.menu-quick-links-container .menu li a:hover,
.recent-post-text h4 a:hover {
    color: var(--mo-gold) !important;
}

/* --------------------------------------------------------------------------
   7) MISC ACCENTS
   Counter top border, circle progress text, project category, blog tags.
   -------------------------------------------------------------------------- */
.witr_cir_text { color: var(--mo-gold) !important; }
.witr_content_pslide p { color: var(--mo-gold) !important; }
.witr_post_meta15 span a { color: var(--mo-gold) !important; }
.learn_btn:hover { color: var(--mo-gold) !important; }

/* ==========================================================================
   8) LANGUAGE SWITCHER (TR / EN)
   Visual-only toggle placed in the navbar. No language logic is wired up;
   this is a static mock for the draft. Clicking only toggles the active
   highlight (see my-otel-lang.js).
   ========================================================================== */
.mo-lang-switch {
    display: inline-flex;
    align-items: center;
    gap: 6px;
    margin-left: 18px;
    vertical-align: middle;
}

.mo-lang-btn {
    display: inline-flex;
    align-items: center;
    gap: 6px;
    padding: 5px 10px;
    border: 1px solid rgba(215, 180, 106, 0.35);
    border-radius: 4px;
    background: transparent;
    color: #ffffff;
    font-size: 13px;
    line-height: 1;
    cursor: pointer;
    transition: all 0.25s ease;
}

.mo-lang-btn img {
    width: 18px;
    height: 12px;
    object-fit: cover;
    border-radius: 1px;
    display: block;
}

.mo-lang-btn:hover {
    border-color: var(--mo-gold);
    color: var(--mo-gold);
}

/* Active language gets the solid gold pill */
.mo-lang-btn.is-active {
    background: var(--mo-gold);
    border-color: var(--mo-gold);
    color: var(--mo-charcoal);
    font-weight: 600;
}

/* ==========================================================================
   9) NAVBAR HAMBURGER (desktop "more" menu: Projeler / Haberler / Blog)
   A self-contained toggle button + dropdown panel. Reuses no vendor JS.
   On small screens the template's mean-menu already lists every link, so
   this desktop toggle is hidden there.
   ========================================================================== */
.mo-more {
    position: relative;
    display: inline-block;
    margin-left: 6px;
    vertical-align: middle;
}

.mo-more-toggle {
    display: inline-flex;
    flex-direction: column;
    justify-content: center;
    gap: 4px;
    width: 38px;
    height: 38px;
    padding: 0 9px;
    border: 1px solid rgba(215, 180, 106, 0.35);
    border-radius: 4px;
    background: transparent;
    cursor: pointer;
    transition: border-color 0.25s ease;
}
.mo-more-toggle:hover,
.mo-more.is-open .mo-more-toggle {
    border-color: var(--mo-gold);
}

/* The three hamburger bars */
.mo-more-toggle span {
    display: block;
    height: 2px;
    width: 100%;
    background: var(--mo-gold);
    transition: transform 0.25s ease, opacity 0.25s ease;
}

/* Dropdown panel */
.mo-more-panel {
    position: absolute;
    top: calc(100% + 10px);
    right: 0;
    min-width: 190px;
    background: var(--mo-white);
    border-radius: 6px;
    box-shadow: 0 12px 30px rgba(52, 58, 64, 0.18);
    padding: 8px 0;
    opacity: 0;
    visibility: hidden;
    transform: translateY(-8px);
    transition: all 0.22s ease;
    z-index: 999;
}

.mo-more.is-open .mo-more-panel {
    opacity: 1;
    visibility: visible;
    transform: translateY(0);
}

.mo-more-panel a {
    display: block;
    padding: 9px 18px;
    color: var(--mo-charcoal) !important;
    font-size: 14px;
    transition: background 0.2s ease, color 0.2s ease;
}

.mo-more-panel a:hover {
    background: var(--mo-light);
    color: var(--mo-gold) !important;
}

/* Hide the desktop hamburger on tablet/mobile (mean-menu takes over) */
@media (max-width: 991px) {
    .mo-more,
    .mo-lang-switch {
        display: none;
    }
}
