/* Import component styles - MUST be at the very top */
@import 'components.css';

/* Base styles */
body {
  font-family: 'Montserrat', Arial, sans-serif;
  background: #fffbff;
  color: #222;
  line-height: 1.6;
  margin: 0;
  padding: 0;
  overflow-x: hidden;
}

/* Global responsive fixes */
* {
  box-sizing: border-box;
}

html, body {
  overflow-x: hidden;
  max-width: 100%;
}

img {
  max-width: 100%;
  height: auto;
}

header {
  background: #000077;
  color: white;
  padding: 15px 0;
  box-shadow: 0 2px 5px rgba(0,0,0,0.1);
  position: fixed;
  top: 0;
  width: 100%;
  z-index: 1000;
}

header .container {
  display: flex;
  align-items: center;
  justify-content: space-between;
}

header .logo img {
  height: 60px;
  margin-left: 15px;
}

nav ul {
  list-style: none;
  display: flex;
  gap: 25px;
  margin: 0;
  padding: 0;
}

nav ul li a {
  color: white;
  font-weight: 600;
  text-transform: uppercase;
  transition: color 0.3s ease;
}

nav ul li a:hover,
nav ul li a.active {
  color: #b21117;
}

.lang-switcher a {
  color: white;
  font-weight: 600;
  margin-left: 10px;
  text-decoration: none;
  display: none;
  cursor: pointer;
}

@media (min-width: 769px) {
  .lang-switcher a {
    display: inline;
  }
}

.menu-toggle {
  display: none;
  font-size: 28px;
  color: white;
  cursor: pointer;
  user-select: none;
  margin-right: 15px;
}

@media (max-width: 768px) {
  nav ul {
    display: none;
    flex-direction: column;
    background-color: #000077;
    position: absolute;
    top: 60px;
    left: 0;
    width: 100%;
    padding: 0;
    margin: 0;
    z-index: 1001;
  }
  nav ul.active {
    display: flex;
  }
  nav ul li {
    border-bottom: 1px solid #b21117;
  }
  nav ul li a {
    padding: 15px 20px;
    display: block;
  }
  .menu-toggle {
    display: block;
  }
}

.lang-switcher a.active {
  color: #b21117;
}

main.container {
  max-width: 1200px;
  margin: 40px auto;
  padding: 0 20px;
}
