/* ========================================================
   KONTEXT — Global Stylesheet
   Font: Plus Jakarta Sans
   ======================================================== */

/* ── VARIABLES ── */
:root {
  --yellow:      #FFC107;
  --yellow-dark: #E5AC00;
  --black:       #1A1A1A;
  --dark:        #2C2C2C;
  --white:       #FFFFFF;
  --gray-light:  #F9F9F9;
  --gray-mid:    #EEEEEE;
  --gray-text:   #666666;
  --green:       #2E7D32;
  --font:        'Plus Jakarta Sans', sans-serif;
}

/* ── RESET ── */
*, *::before, *::after { box-sizing: border-box; margin: 0; padding: 0; }
html { scroll-behavior: smooth; }
body { font-family: var(--font); color: var(--black); background: var(--white); overflow-x: hidden; }
a { text-decoration: none; color: inherit; }
img { max-width: 100%; display: block; }
.container { max-width: 1200px; margin: 0 auto; padding: 0 40px; }

/* ── BUTTONS ── */
.btn-yellow {
  background: var(--yellow); color: var(--black);
  font-family: var(--font); font-size: 12px; font-weight: 700;
  padding: 10px 20px; border-radius: 4px;
  letter-spacing: 0.05em; text-transform: uppercase;
  border: none; cursor: pointer; display: inline-block;
  transition: background .2s;
}
.btn-yellow:hover { background: var(--yellow-dark); }

.btn-dark-outline {
  background: var(--black); color: var(--white);
  font-family: var(--font); font-size: 12px; font-weight: 700;
  padding: 10px 20px; border-radius: 4px;
  letter-spacing: 0.05em; text-transform: uppercase;
  border: none; cursor: pointer; display: inline-block;
  transition: background .2s;
}
.btn-dark-outline:hover { background: #333; }

.btn-hero-dark {
  background: var(--black); color: var(--white);
  font-family: var(--font); font-size: 13px; font-weight: 700;
  padding: 13px 26px; border-radius: 4px;
  letter-spacing: 0.05em; text-transform: uppercase;
  display: inline-block; transition: background .2s;
}
.btn-hero-dark:hover { background: #333; }

.btn-hero-outline {
  background: transparent; color: var(--black);
  font-family: var(--font); font-size: 13px; font-weight: 700;
  padding: 12px 26px; border-radius: 4px;
  letter-spacing: 0.05em; text-transform: uppercase;
  border: 2px solid var(--black); display: inline-block;
  transition: background .2s, color .2s;
}
.btn-hero-outline:hover { background: var(--black); color: var(--yellow); }

.btn-outline-nav {
  background: transparent; color: var(--black);
  font-family: var(--font); font-size: 12px; font-weight: 700;
  padding: 9px 18px; border-radius: 4px;
  letter-spacing: 0.05em; text-transform: uppercase;
  border: 2px solid var(--black); display: inline-block;
  transition: background .2s, color .2s;
}
.btn-outline-nav:hover { background: var(--black); color: var(--white); }

/* ── NAVBAR ── */
.navbar {
  position: sticky; top: 0; z-index: 1000;
  background: var(--white);
  border-bottom: 1px solid var(--gray-mid);
  padding: 0 40px;
  display: flex; align-items: center; justify-content: space-between;
  height: 68px;
}
.nav-logo { display: flex; align-items: center; gap: 10px; }
.nav-logo img { height: 48px; width: auto; }
.nav-logo-name { font-family: var(--font); font-size: 20px; font-weight: 900; color: var(--black); letter-spacing: 1px; line-height: 1; }
.nav-logo-sub  { font-size: 9px; color: var(--gray-text); letter-spacing: 0.04em; }

.nav-links { display: flex; align-items: center; gap: 2px; }
.nav-links a {
  color: var(--black); font-size: 12px; font-weight: 700;
  padding: 8px 11px; border-radius: 4px;
  letter-spacing: 0.05em; text-transform: uppercase;
  transition: color .2s, background .2s; white-space: nowrap;
}
.nav-links a:hover { color: var(--yellow-dark); }

.has-dropdown { position: relative; }
.has-dropdown > a::after { content: ' ▾'; font-size: 9px; opacity: 0.6; }
.dropdown {
  display: none; position: absolute; top: 100%; left: 0;
  background: var(--white); min-width: 210px;
  border-top: 3px solid var(--yellow);
  border-radius: 0 0 6px 6px;
  box-shadow: 0 8px 24px rgba(0,0,0,0.1);
  overflow: hidden; z-index: 100;
}
.has-dropdown:hover .dropdown { display: block; }
.dropdown a {
  display: block; padding: 10px 16px;
  font-size: 12px; color: var(--black);
  text-transform: none; letter-spacing: 0;
  border-bottom: 1px solid var(--gray-mid); font-weight: 500;
}
.dropdown a:last-child { border-bottom: none; }
.dropdown a:hover { background: #FFFBF0; color: var(--yellow-dark); }

.nav-ctas { display: flex; gap: 8px; align-items: center; }

/* ── LANGUAGE SWITCHER ── */
.lang-switcher {
  position: relative; margin-left: 6px;
}
.lang-switcher-btn {
  display: flex; align-items: center; gap: 4px;
  color: var(--black); font-size: 12px; font-weight: 600;
  cursor: pointer; white-space: nowrap;
  text-transform: uppercase; letter-spacing: 0.05em;
  padding: 6px 8px; border-radius: 4px;
  transition: color .2s, background .2s;
  user-select: none;
}
.lang-switcher-btn:hover { color: var(--yellow-dark); }
.lang-switcher-btn .icon-flat { width: 16px; height: 16px; object-fit: contain; }
.lang-dropdown {
  display: none; position: absolute; top: 100%; right: 0;
  background: var(--white); min-width: 130px;
  border-top: 3px solid var(--yellow);
  border-radius: 0 0 6px 6px;
  box-shadow: 0 8px 24px rgba(0,0,0,0.1);
  overflow: hidden; z-index: 100;
}
.lang-switcher:hover .lang-dropdown { display: block; }
.lang-dropdown a {
  display: flex; align-items: center; gap: 8px;
  padding: 10px 14px;
  font-size: 12px; font-weight: 600; color: var(--black);
  text-transform: uppercase; letter-spacing: 0.05em;
  border-bottom: 1px solid var(--gray-mid);
  transition: background .2s, color .2s;
}
.lang-dropdown a:last-child { border-bottom: none; }
.lang-dropdown a:hover { background: #FFFBF0; color: var(--yellow-dark); }
.lang-dropdown a img { width: 16px; height: 16px; object-fit: contain; }
.hamburger { display: none; flex-direction: column; gap: 5px; cursor: pointer; padding: 4px; }
.hamburger span { width: 22px; height: 2px; background: var(--black); border-radius: 2px; }

/* ── MOBILE MENU ── */
.mobile-menu {
  display: none; position: fixed;
  top: 68px; left: 0; right: 0; bottom: 0;
  background: var(--white); z-index: 999;
  padding: 16px; overflow-y: auto;
  border-top: 3px solid var(--yellow);
}
.mobile-menu.open { display: flex; flex-direction: column; gap: 2px; }
.mobile-menu a {
  color: var(--black); font-size: 15px; font-weight: 600;
  padding: 13px 14px; border-radius: 6px;
  text-transform: uppercase; letter-spacing: 0.04em;
  border-bottom: 1px solid var(--gray-mid);
}
.mobile-menu a:hover { background: #FFFBF0; color: var(--yellow-dark); }
.mobile-menu-ctas { display: flex; flex-direction: column; gap: 10px; margin-top: 16px; }

/* ── FOOTER ── */
footer { background: var(--dark); padding: 52px 60px 28px; }
.footer-top { display: grid; grid-template-columns: 1.8fr 1fr 1fr 1fr; gap: 44px; margin-bottom: 40px; }
.footer-logo { height: 54px; margin-bottom: 14px; filter: brightness(0) invert(1); }
.footer-desc { font-size: 12px; color: rgba(255,255,255,0.38); line-height: 1.8; margin-bottom: 16px; }
.footer-contact { font-size: 12px; color: rgba(255,255,255,0.45); line-height: 2.1; }
.footer-contact a { color: var(--yellow); }
.footer-contact div {  display: flex; align-items: center; gap: 8px; }
.footer-col-title { font-size: 10px; font-weight: 700; letter-spacing: 0.1em; text-transform: uppercase; color: var(--yellow); margin-bottom: 14px; }
.footer-col a { display: block; font-size: 12px; color: rgba(255,255,255,0.45); margin-bottom: 9px; transition: color .2s; }
.footer-col a:hover { color: var(--white); }
.footer-bottom {
  border-top: 1px solid rgba(255,255,255,0.07); padding-top: 20px;
  display: flex; align-items: center; justify-content: space-between; flex-wrap: wrap; gap: 10px;
}
.footer-copy { font-size: 11px; color: rgba(255,255,255,0.25); }
.footer-social { display: flex; gap: 10px; }
.footer-social a {
  width: 30px; height: 30px; border-radius: 50%;
  border: 1px solid rgba(255,255,255,0.15);
  display: flex; align-items: center; justify-content: center;
  font-size: 11px; color: rgba(255,255,255,0.45);
  transition: border-color .2s, color .2s;
}
.footer-social a:hover { border-color: var(--yellow); color: var(--yellow); }

/* ── RESPONSIVE ── */
@media (max-width: 1100px) {
  .nav-links a { padding: 8px 8px; font-size: 11px; }
}
@media (max-width: 900px) {
  .navbar { padding: 0 20px; }
  .nav-links, .nav-lang { display: none; }
  .nav-ctas { display: none; }
  .hamburger { display: flex; }
  footer { padding: 40px 24px 24px; }
  .footer-top { grid-template-columns: 1fr 1fr; gap: 28px; }
}
@media (max-width: 540px) {
  .footer-top { grid-template-columns: 1fr; }
}


/* CUSTOM CSS */

img.icon-flat {
  width: 18px;
  object-fit: contain; 
  flex-shrink: 0;
}

.mobile-language-switch img{
  width:18px;
  display:inline-block;
  align-items: center;
  margin-right: 2px;
}