/* Berlin page scoped styles to avoid affecting other pages */
body.page-berlin {
  font-family: -apple-system, BlinkMacSystemFont, "Segoe UI", Roboto, Oxygen, Ubuntu, Cantarell, "Fira Sans", "Droid Sans", "Helvetica Neue", Arial, sans-serif;
  color: #222;
  line-height: 1.7;
  background-color: #fff;
}

/* Container spacing */
.page-berlin .section {
  padding: 64px 0;
}
.page-berlin .section-sm {
  padding: 36px 0;
}
.page-berlin .section .container {
  max-width: 1140px;
}

/* Accessible skip link */
.page-berlin .skip-link {
  position: absolute;
  left: -9999px;
  top: auto;
}
.page-berlin .skip-link:focus {
  left: 16px;
  top: 16px;
  background: #000;
  color: #fff;
  padding: 8px 12px;
  border-radius: 4px;
  z-index: 10000;
}

/* Navbar (pure CSS toggle) */
.page-berlin .navbar {
  position: sticky;
  top: 0;
  z-index: 1000;
  background: #111;
  color: #fff;
}
.page-berlin .navbar .container {
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 12px 16px;
}
.page-berlin .brand {
  display: flex;
  align-items: center;
  gap: 10px;
  color: #fff;
  text-decoration: none;
  font-weight: 700;
  letter-spacing: 0.2px;
}
.page-berlin .brand img {
  width: 36px;
  height: 36px;
  border-radius: 6px;
}
.page-berlin .menu-toggle {
  display: none;
}
.page-berlin .nav-links {
  display: flex;
  gap: 18px;
}
.page-berlin .nav-links a {
  color: #fff;
  text-decoration: none;
  font-weight: 500;
}
.page-berlin .nav-links a:hover {
  color: #e0b200;
}
.page-berlin .hamburger {
  display: none;
  cursor: pointer;
  width: 28px;
  height: 22px;
}
.page-berlin .hamburger span {
  display: block;
  height: 3px;
  background: #fff;
  margin: 4px 0;
  border-radius: 3px;
}
@media (max-width: 992px) {
  .page-berlin .hamburger { display: block; }
  .page-berlin .nav-links { display: none; position: absolute; left: 0; right: 0; top: 56px; background: #111; flex-direction: column; padding: 12px 16px; border-top: 1px solid #222; }
  .page-berlin .menu-toggle:checked ~ .nav-links { display: flex; }
}

/* Hero */
.page-berlin .hero {
  position: relative;
  min-height: 60vh;
  display: grid;
  place-items: center;
  text-align: center;
  color: #fff;
  overflow: hidden;
}
.page-berlin .hero::before {
  content: "";
  position: absolute;
  inset: 0;
  background: url('images/background1.jpg') center/cover no-repeat;
  filter: brightness(0.35);
}
.page-berlin .hero .content {
  position: relative;
  padding: 24px;
}
.page-berlin .hero h1 {
  font-size: clamp(28px, 4vw, 52px);
  margin-bottom: 12px;
}
.page-berlin .hero p {
  font-size: clamp(16px, 2.2vw, 22px);
  max-width: 800px;
  margin: 0 auto 24px;
}
.page-berlin .btn-primary {
  display: inline-block;
  background: #e0b200;
  color: #111;
  padding: 12px 20px;
  border-radius: 8px;
  font-weight: 700;
  text-decoration: none;
}
.page-berlin .btn-primary:hover { background: #f0c400; }

/* Section headings */
.page-berlin .section-title {
  font-size: clamp(22px, 3vw, 36px);
  margin-bottom: 12px;
}
.page-berlin .section-subtitle {
  color: #666;
  margin-bottom: 24px;
}

/* Responsive images */
.page-berlin .img-responsive {
  width: 100%;
  height: auto;
  border-radius: 10px;
}
.page-berlin .img-shadow { box-shadow: 0 8px 24px rgba(0,0,0,0.15); }

/* Icon grid */
.page-berlin .icon-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 20px;
}
@media (max-width: 992px) { .page-berlin .icon-grid { grid-template-columns: repeat(2, 1fr); } }
@media (max-width: 560px) { .page-berlin .icon-grid { grid-template-columns: 1fr; } }
.page-berlin .icon-card {
  background: #fafafa;
  border: 1px solid #eee;
  border-radius: 12px;
  padding: 20px;
}
.page-berlin .icon-card svg {
  width: 36px; height: 36px; color: #e0b200; margin-bottom: 10px;
}
.page-berlin .icon-card h3 { font-size: 18px; margin-bottom: 6px; }
.page-berlin .icon-card p { color: #555; }

/* Two-column layout */
.page-berlin .two-col {
  display: grid; grid-template-columns: 1.1fr 0.9fr; gap: 28px; align-items: center;
}
@media (max-width: 992px) { .page-berlin .two-col { grid-template-columns: 1fr; } }

/* CTA banner */
.page-berlin .cta {
  background: linear-gradient(135deg, #111 0%, #1c1c1c 100%);
  color: #fff; text-align: center; border-radius: 12px; padding: 28px;
}
.page-berlin .cta h2 { margin-bottom: 10px; }
.page-berlin .cta p { margin-bottom: 16px; }

/* Footer links */
.page-berlin .footer-links { display: flex; flex-wrap: wrap; gap: 12px; }
.page-berlin .footer-links a { color: #555; text-decoration: none; }
.page-berlin .footer-links a:hover { color: #000; }

/* Lists */
.page-berlin .check-list { list-style: none; padding: 0; margin: 0; }
.page-berlin .check-list li { margin: 8px 0; padding-left: 26px; position: relative; }
.page-berlin .check-list li::before {
  content: ""; position: absolute; left: 0; top: 8px; width: 16px; height: 16px; background: #e0b200; border-radius: 50%;
}

/* Quotes */
.page-berlin blockquote { border-left: 4px solid #e0b200; padding-left: 16px; color: #444; }

/* Small helpers */
.page-berlin .muted { color: #666; }
.page-berlin .mb-2 { margin-bottom: 8px; }
.page-berlin .mb-3 { margin-bottom: 16px; }
.page-berlin .mb-4 { margin-bottom: 24px; }
.page-berlin .mb-5 { margin-bottom: 36px; }
.page-berlin .mt-4 { margin-top: 24px; }