/* master-style.css */

/* === CSS RESET === */
*,
*::before,
*::after {
  box-sizing: border-box;
  margin: 0;
  padding: 0;
}
body,
html {
  height: 100%;
  scroll-behavior: smooth;
}

/* === ROOT VARIABLES === */
:root {
  --clr-primary: #1e6edb;
  --clr-primary-light: #4f8ff0;
  --clr-gray: #f3f3f3;
  --clr-dark: #1a1a1a;
  --clr-white: #ffffff;

  --radius: 8px;
  --shadow: 0 4px 12px rgba(0, 0, 0, 0.05);
  --space: 1rem;
}

/* === TYPOGRAPHY === */
body {
  font-family: "Inter", sans-serif;
  font-size: clamp(0.8125rem, 0.8024rem + 0.0462vw, 1.0625rem);
  line-height: 1.6;
  background-color: var(--clr-white);
  color: var(--clr-dark);
}

#lang-switch {
  position: absolute;
  top: 5px;
  left: 5px;
}

/* === UTILITY CLASSES === */
.container {
  width: 100%;
  max-width: 900px;
  margin-inline: auto;
  padding-inline: var(--space);
}
.flex {
  display: flex;
}
.flex-center {
  display: flex;
  justify-content: center;
  align-items: center;
}
.text-center {
  text-align: center;
}
.hidden {
  display: none !important;
}
img {
  max-width: 100%;
  height: auto;
  display: block;
}
.logo img {
  max-width: 140px;
  object-fit: contain;
}
a {
  text-decoration: none;
  color: inherit;
}
ul {
  list-style: none;
}

/* === RESPONSIVE HELPERS === */
@media (max-width: 500px) {
  .hide-mobile {
    display: none !important;
  }
}
