:root {
  --sg-bg: #ffffff;
  --sg-text: #222222;
  --sg-primary: #dc0023;
  --sg-primary-light: #305f9f;
  --sg-accent: #dc0023;
  --sg-border: #e3e6ec;
}

*,
*::before,
*::after {
  box-sizing: border-box;
}

html,
body {
  height: 100%;
}

body {
  margin: 0;
  padding: 0;
  font-family: 'Sora', system-ui, -apple-system, BlinkMacSystemFont, 'Segoe UI', sans-serif;
  background-color: var(--sg-bg);
  color: var(--sg-text);
}

/* Navbar / header */

.main-header .navbar {

}

.logo-img {
height: 65px;
  width: auto;
}

.logo-text {
  font-family: 'Sora', system-ui, -apple-system, BlinkMacSystemFont, 'Segoe UI', sans-serif;
  font-weight: 600;
  font-size: 1.1rem;
  letter-spacing: 0.03em;
  text-transform: uppercase;
}

.navbar-nav .nav-link {
    font-size: 1.15rem;
    font-weight: bold;
  padding-right: 1rem;
  padding-left: 1rem;
}

.navbar-nav .nav-link:hover,
.navbar-nav .nav-link:focus {
  color: var(--sg-primary);
}

.dropdown-menu {
  border-radius: 0.5rem;
  border-color: var(--sg-border);
}

/* Language switch */

.lang-switch,
.mobile-lang-switch {
  font-size: 0.9rem;
  font-weight: 500;
}

.lang-link {
  text-decoration: none;
  color: white;
}

.lang-link.active {
  color: rgb(255, 131, 131);
}

.lang-link:hover {
  color: white;
}

.lang-divider {
  margin: 0 0.25rem;
}

/* Body spacing (fixed header offset) */

.site-main {
  padding-top: 1px; /* space for fixed-top navbar */
}

/* Hero section with video background */

.hero-section {
  position: relative;
  overflow: hidden;
  background-color: #8f8f8f;
}

.hero-video {
  position: absolute;
  inset: 0;
  z-index: 0;
}

.hero-video video {
  width: 100%;
  height: 100%;
  object-fit: cover;
  pointer-events: none;
}


.hero-overlay {
  position: relative;
  z-index: 2;
  inset: 0;
  display: flex;
  align-items: center;
  padding: 4rem 0;
  background: linear-gradient(120deg, rgba(0,0,0,0.6), rgba(0,0,0,0.35));
}

.hero-content {
  max-width: 540px;
  color: #ffffff;
}

.hero-content h1 {
  font-family: 'Sora', system-ui, -apple-system, BlinkMacSystemFont, 'Segoe UI', sans-serif;
  font-size: clamp(2.2rem, 3vw + 1rem, 3.2rem);
  font-weight: 600;
  margin-bottom: 1rem;
}

.hero-content p {
  font-size: 1.05rem;
  margin-bottom: 1.75rem;
}

.hero-content .btn-primary {
background-color: rgb(220 0 35);
  font-weight: 600;
  padding: 0.75rem 1.75rem;
  border-radius: none;
  border: none;
}

/* Intro section */

.section-title {
  font-family: 'Sora', system-ui, -apple-system, BlinkMacSystemFont, 'Segoe UI', sans-serif;
  font-weight: 600;
  margin-bottom: 1rem;
}

.intro-highlight-box {
  border-radius: 1rem;
  border: 1px solid var(--sg-border);
  padding: 1.5rem 1.75rem;
  background: #f7f8fb;
}

.intro-list {
  padding-left: 1.1rem;
  margin: 0;
}

.intro-list li + li {
  margin-top: 0.5rem;
}

/* Page headers */

.page-header-section {
  border-bottom: 1px solid var(--sg-border);
}

.page-title {
  font-family: 'Sora', system-ui, -apple-system, BlinkMacSystemFont, 'Segoe UI', sans-serif;
  font-weight: 600;
  margin-bottom: 0.5rem;
}

.page-lead {
  max-width: 640px;
  margin-bottom: 0;
}

/* Footer */

.site-footer {
  border-top: 1px solid var(--sg-border);
  background-color: #ffffff;
}

/* Mobile full-screen menu */

.mobile-menu-overlay {
  position: fixed;
  inset: 0;
  background: rgba(0, 0, 0, 0.92);
  z-index: 1050;
  display: none;
  align-items: center;
  justify-content: center;
  padding: 2rem;
    backdrop-filter: blur(12px);
  -webkit-backdrop-filter: blur(12px);
      background: rgb(204 9 9 / 68%);
}

.mobile-menu-overlay.open {
  display: flex;
}

.mobile-menu-inner {
  text-align: center;
  width: 100%;
  max-width: 420px;
  color: #ffffff;
  position: relative;
}

.mobile-menu-close {
  position: absolute;
  top: 0;
  right: 0;
  background: transparent;
  border: none;
  font-size: 2.25rem;
  line-height: 1;
  color: #ffffff;
  cursor: pointer;
}

.mobile-menu-nav {
  list-style: none;
  padding: 0;
  margin: 0 0 2rem 0;
}

.mobile-menu-nav li {
  margin: 0.4rem 0;
}

.mobile-menu-nav a {
  color: #ffffff;
  text-decoration: none;
  font-size: 1.2rem;
  font-weight: 500;
}

.mobile-menu-nav a:hover {
  text-decoration: underline;
}

.mobile-menu-separator {
  margin-top: 1.2rem;
  margin-bottom: 0.4rem;
  font-size: 0.85rem;
  letter-spacing: 0.14em;
  text-transform: uppercase;
  opacity: 0.6;
  font-weight: bold;
    font-size: 32px;
}

.mobile-lang-switch {
  font-size: 1rem;
}

body.menu-open {
  overflow: hidden;
}

/* Responsive tweaks */
