/* Maltepe 2000 — Kurumsal: #F20022, #FFFFFF */

.maltepe-page {
  --brand: #f20022;
  --brand-hover: #d9001e;
  --bg: #ffffff;
  --text: #1a1a1a;
  --muted: #5c5c5c;
  --border: rgba(242, 0, 34, 0.18);
  --shadow: 0 8px 28px rgba(242, 0, 34, 0.12);
  --radius: 12px;
  --font: "Segoe UI", system-ui, -apple-system, sans-serif;
}

.maltepe-page,
.maltepe-page * {
  box-sizing: border-box;
}

.maltepe-page {
  margin: 0;
  min-height: 100dvh;
  font-family: var(--font);
  color: var(--text);
  background: var(--bg);
  line-height: 1.5;
}

.maltepe-page .page {
  max-width: 420px;
  margin: 0 auto;
  padding: 1.5rem 1.25rem 2.5rem;
}

.lang-switch {
  display: flex;
  justify-content: flex-end;
  gap: 0.35rem;
  margin-bottom: 1rem;
}

.lang-switch button {
  padding: 0.35rem 0.75rem;
  border: 1px solid var(--border);
  border-radius: 999px;
  background: transparent;
  color: var(--muted);
  font-size: 0.8rem;
  font-weight: 600;
  cursor: pointer;
  transition: background 0.2s, color 0.2s, border-color 0.2s;
}

.lang-switch button.is-active {
  background: var(--brand);
  border-color: var(--brand);
  color: #fff;
}

.hotel-header {
  text-align: center;
  margin-bottom: 1.75rem;
}

.logo-img {
  display: block;
  width: min(200px, 72vw);
  height: auto;
  margin: 0 auto 1rem;
  object-fit: contain;
}

.hotel-name {
  margin: 0 0 0.25rem;
  font-size: 1.35rem;
  font-weight: 700;
  color: var(--brand);
  letter-spacing: -0.02em;
}

.hotel-tagline {
  margin: 0;
  font-size: 0.9rem;
  color: var(--muted);
  font-weight: 500;
}

.links {
  display: flex;
  flex-direction: column;
  gap: 0.65rem;
}

.link-btn {
  display: flex;
  align-items: center;
  justify-content: center;
  padding: 0.95rem 1.25rem;
  border-radius: var(--radius);
  background: #fff;
  border: 2px solid var(--brand);
  color: var(--brand);
  text-decoration: none;
  font-size: 0.95rem;
  font-weight: 700;
  text-align: center;
  transition: background 0.2s, color 0.2s, transform 0.15s;
  box-shadow: var(--shadow);
}

.link-btn:hover {
  background: var(--brand);
  color: #fff;
  transform: translateY(-1px);
}

.link-btn--primary {
  background: var(--brand);
  color: #fff;
}

.link-btn--primary:hover {
  background: var(--brand-hover);
  border-color: var(--brand-hover);
}

.section-label {
  margin: 1.25rem 0 0.5rem;
  font-size: 0.75rem;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 0.06em;
  color: var(--muted);
  text-align: center;
}

.social-row {
  display: flex;
  justify-content: center;
  flex-wrap: wrap;
  gap: 0.65rem;
}

.social-btn {
  display: grid;
  place-items: center;
  width: 52px;
  height: 52px;
  border-radius: 50%;
  border: 2px solid var(--brand);
  color: var(--brand);
  background: #fff;
  text-decoration: none;
  transition: background 0.2s, color 0.2s, transform 0.15s;
}

.social-btn:hover {
  background: var(--brand);
  color: #fff;
  transform: translateY(-2px);
}

.social-btn svg {
  width: 22px;
  height: 22px;
  fill: currentColor;
}

.footer {
  margin-top: 2rem;
  text-align: center;
  font-size: 0.75rem;
  color: var(--muted);
}

.footer a {
  color: var(--brand);
  text-decoration: none;
  font-weight: 600;
}

.footer a:hover {
  text-decoration: underline;
}
