
/* layout.css – Layout components shared across pages
   Includes topbar, logo, language selector, page-content area
*/

.topbar {
  width: 100%;
  height: 56px;
  background: var(--topbar-bg);
  display: flex;
  align-items: center;
  position: fixed;
  top: 0;
  left: 0;
  z-index: 40;
}

.hamburger {
  background: none;
  border: none;
  margin: 0 16px 0 12px;
  padding: 8px;
  cursor: pointer;
  height: 36px;
  width: 36px;
  display: flex;
  flex-direction: column;
  justify-content: center;
  gap: 5px;
  outline: none;
}

.hamburger .bar {
  display: block;
  width: 26px;
  height: 4px;
  background: var(--white);
  border-radius: 2px;
  transition: 0.2s;
}

.logo {
  height: 38px;
  margin-left: 16px;
  display: block;
}

.language-selector {
  position: absolute;
  top: 10px;
  right: 10px;
  display: flex;
  gap: 8px;
  z-index: 1000;
}

.lang-flag {
  width: 28px;
  height: 20px;
  cursor: pointer;
  opacity: 0.7;
  transition: opacity 0.2s;
}

.lang-flag:hover {
  opacity: 1;
}

.page-content {
  padding: 80px 20px 40px;
  max-width: 720px;
  margin: 0 auto;
  font-family: 'Montserrat', sans-serif;
  background: var(--gray);
  color: var(--accent);
}

.page-content h1 {
  font-size: 1.8rem;
  margin-bottom: 1.2rem;
  color: var(--accent);
}

.page-content p {
  font-size: 1.1rem;
  line-height: 1.6;
  margin-bottom: 1.2rem;
}
.back-btn {
  display: inline-block;
  margin: 2rem auto 0;
  padding: 0.6rem 1.6rem;
  font-size: 1rem;
  text-align: center;
  background: var(--primary);
  color: #fff;
  border-radius: 0.8rem;
  text-decoration: none;
  transition: background 0.2s ease;
}
.back-btn:hover {
  background: #e67e00;
}

