/**
 * @file
 * SZOM Coin Theme - style.css
 *
 * Fő stíluslap - Umami-inspirált, Bootstrap Barrio 5.5.20 szubtéma
 * Main stylesheet - Umami-inspired, Bootstrap Barrio 5.5.20 subtheme
 *
 * Betűtípusok / Fonts: Scope One (fejlécek), Source Sans Pro (szöveg)
 * Színpaletta / Color palette: meleg fehér háttér, zöld/piros akcentus
 */

/* =========================================================
   CSS VÁLTOZÓK / CSS VARIABLES
   ========================================================= */
:root {
  /* Elsődleges színek / Primary colors */
  --color-primary: #d4401a;
  --color-primary-dark: #a8300f;
  --color-primary-light: #e8693f;

  /* Másodlagos / Secondary */
  --color-secondary: #008068;
  --color-secondary-dark: #005c4c;
  --color-secondary-light: #00a882;

  /* Semleges / Neutral */
  --color-white: #ffffff;
  --color-off-white: #fbf5ee;
  --color-light: #f4f2e9;
  --color-light-gray: #e8e0d8;
  --color-medium-gray: #9e9585;
  --color-dark-gray: #5c5446;
  --color-dark: #1a1a1a;
  --color-text: #464646;

  /* Webáruház / Shop */
  --color-shop-bg: #f9f6f2;
  --color-shop-sidebar: #f0ece5;
  --color-shop-border: #ddd5c8;
  --color-price: #d4401a;
  --color-btn-cart: #008068;
  --color-btn-cart-hover: #005c4c;

  /* Tipográfia / Typography */
  --font-heading: 'Scope One', Georgia, serif;
  --font-body: 'Source Sans Pro', Verdana, sans-serif;
  --font-size-base: 1rem;
  --line-height-base: 1.5rem;

  /* Layout */
  --container-max: 1200px;
  --sidebar-width: 260px;
  --border-radius: 4px;
  --transition: all 0.2s ease;
}

/* =========================================================
   GOOGLE FONTS BETÖLTÉS / GOOGLE FONTS IMPORT
   ========================================================= */
@import url('https://fonts.googleapis.com/css2?family=Scope+One&family=Source+Sans+Pro:ital,wght@0,400;0,700;1,400;1,700&display=swap');

/* =========================================================
   ALAP STÍLUSOK / BASE STYLES
   ========================================================= */
*,
*::before,
*::after {
  box-sizing: border-box;
  margin-top: 0;
}

*:focus {
  outline: 1px dotted var(--color-secondary);
  outline-offset: 2px;
}

html {
  box-sizing: border-box;
  scroll-behavior: smooth;
}

body {
  margin: 0;
  color: var(--color-text);
  background: var(--color-off-white);
  font-family: var(--font-body);
  font-size: var(--font-size-base);
  line-height: var(--line-height-base);
}

/* Fejlécek / Headings */
h1, h2, h3, h4, h5, h6 {
  font-family: var(--font-heading);
  font-weight: 400;
  line-height: 1.2;
}

h1 { font-size: 1.424rem; margin: 0 0 1.07rem; }
h2 { font-size: 1.266rem; margin: 0 0 0.7rem; }
h3 { font-size: 1.125rem; margin: 0 0 0.96rem; }
h4 { font-size: 1rem; margin: 0 0 0.7rem; }

@media (min-width: 960px) {
  h1 { font-size: 2.369rem; }
  h2 { font-size: 1.77rem; }
  h3 { font-size: 1.424rem; }
}

/* Linkek / Links */
a {
  color: var(--color-secondary);
  text-decoration: underline;
  transition: var(--transition);
}
a:hover,
a:focus {
  color: var(--color-primary);
  background-color: #e6eee0;
}

/* Képek / Images */
img {
  max-width: 100%;
  height: auto;
}

/* Paragrafusok / Paragraphs */
p {
  margin: 0 0 1rem;
}

/* =========================================================
   LANGUAGE BAR - Nyelvválasztó sáv
   ========================================================= */
#language-bar {
  background-color: #1a1a1a;
  border-bottom: 1px solid #333;
  padding: 4px 0;
  position: relative;
  z-index: 1000;
}

#language-bar .block-language h2,
#language-bar .block__title {
  display: none;
}

/* Eredeti lista elrejtése - JS dropdown váltja fel */
#language-bar ul.links {
  display: none !important;
}

/* Dropdown wrapper */
.language-dropdown-wrapper {
  display: flex;
  justify-content: flex-end;
  align-items: center;
  padding: 2px 0;
}

/* Dropdown gomb */
.language-dropdown-wrapper .dropdown-toggle,
.language-dropdown-wrapper .language-dropdown-toggle {
  background-color: transparent;
  border: 1px solid #555;
  border-radius: var(--border-radius);
  color: #ccc;
  font-family: var(--font-body);
  font-size: 13px;
  padding: 4px 10px;
  cursor: pointer;
  display: flex;
  align-items: center;
  gap: 6px;
  transition: var(--transition);
  white-space: nowrap;
}

.language-dropdown-wrapper .dropdown-toggle:hover,
.language-dropdown-wrapper .dropdown-toggle:focus,
.language-dropdown-wrapper .language-dropdown-toggle:hover,
.language-dropdown-wrapper .language-dropdown-toggle:focus {
  background-color: #333;
  border-color: #888;
  color: #fff;
  outline: none;
}

/* Dropdown menü */
.language-dropdown-wrapper .dropdown-menu {
  background-color: #222;
  border: 1px solid #444;
  border-radius: var(--border-radius);
  box-shadow: 0 4px 12px rgba(0,0,0,0.4);
  min-width: 200px;
  max-height: 60vh;
  overflow-y: auto;
  padding: 4px 0;
  right: 0;
  left: auto;
}

/* Dropdown elemek */
.language-dropdown-wrapper .dropdown-item {
  color: #ccc;
  font-family: var(--font-body);
  font-size: 13px;
  padding: 7px 16px;
  display: block;
  text-decoration: none;
  transition: background-color 0.15s ease;
  white-space: nowrap;
}

.language-dropdown-wrapper .dropdown-item:hover,
.language-dropdown-wrapper .dropdown-item:focus {
  background-color: #333;
  color: #fff;
  text-decoration: none;
}

.language-dropdown-wrapper .dropdown-item.active {
  background-color: #444;
  color: #fff;
  font-weight: 700;
}

/* =========================================================
   FEJLÉC / HEADER
   ========================================================= */
#header,
.layout-header {
  background: var(--color-white);
  padding: 0;
  box-shadow: 0 1px 4px rgba(0,0,0,0.08);
}

/* Logo */
.navbar-brand img,
.site-logo img {
  max-height: 80px;
  width: auto;
}

/* Navigáció */
.navbar {
  padding: 0.5rem 1rem;
}

.nav-link {
  color: var(--color-text) !important;
  font-family: var(--font-body);
  font-size: 0.95rem;
  font-weight: 400;
  padding: 0.5rem 0.75rem !important;
  transition: var(--transition);
}

.nav-link:hover,
.nav-link:focus,
.nav-link.active {
  color: var(--color-primary) !important;
}

/* Hamburger menü */
.navbar-toggler {
  border: 1px solid var(--color-light-gray);
}

/* =========================================================
   RESZPONZÍV / RESPONSIVE
   ========================================================= */
@media (max-width: 576px) {
  .language-dropdown-wrapper {
    justify-content: flex-end;
    padding-right: 8px;
  }

  .language-dropdown-wrapper .dropdown-menu {
    max-height: 50vh;
    min-width: 180px;
  }

  h1 { font-size: 1.6rem; }
  h2 { font-size: 1.3rem; }
}

/* =========================================================
   SEGÉDOSZTÁLYOK / UTILITY CLASSES
   ========================================================= */
.visually-hidden {
  position: absolute;
  width: 1px;
  height: 1px;
  padding: 0;
  margin: -1px;
  overflow: hidden;
  clip: rect(0, 0, 0, 0);
  white-space: nowrap;
  border: 0;
}

.container {
  max-width: var(--container-max);
  margin: 0 auto;
  padding: 0 1rem;
}
