﻿@import url("https://fonts.googleapis.com/css2?family=Fraunces:wght@400;600;700&family=Plus+Jakarta+Sans:wght@400;500;600;700&display=swap");

:root {
  --bg: #f5f0ea;
  --bg-2: #f0e2c7;
  --ink: #1c1b18;
  --muted: #5d564d;
  --accent: #ea8b2a;
  --accent-2: #2c7c6d;
  --card: #fff6e8;
  --chip: rgba(234, 139, 42, 0.15);
}

* {
  box-sizing: border-box;
  margin: 0;
  padding: 0;
}

body {
  font-family: "Plus Jakarta Sans", system-ui, sans-serif;
  color: var(--ink);
  min-height: 100vh;
  background:
    radial-gradient(circle at 5% 10%, rgba(234, 139, 42, 0.25), transparent 40%),
    radial-gradient(circle at 90% 20%, rgba(44, 124, 109, 0.2), transparent 45%),
    linear-gradient(140deg, var(--bg), var(--bg-2));
  display: flex;
  align-items: center;
  justify-content: center;
  padding: 40px 24px 60px;
}

.page {
  width: min(1100px, 100%);
  display: flex;
  flex-direction: column;
  gap: 48px;
}

.hero {
  display: grid;
  grid-template-columns: minmax(0, 1fr) minmax(0, 1.2fr);
  gap: 36px;
  align-items: center;
  background: rgba(255, 255, 255, 0.8);
  border-radius: 28px;
  padding: 36px 40px;
  box-shadow: 0 24px 60px rgba(28, 27, 24, 0.12);
  position: relative;
  overflow: hidden;
}

.hero::before,
.hero::after {
  content: "";
  position: absolute;
  width: 180px;
  height: 180px;
  border-radius: 999px;
  filter: blur(2px);
  opacity: 0.35;
  z-index: 0;
}

.hero::before {
  top: -60px;
  left: -40px;
  background: var(--accent);
}

.hero::after {
  bottom: -70px;
  right: -30px;
  background: var(--accent-2);
}

.lang-switch {
  position: absolute;
  top: 20px;
  right: 24px;
  display: flex;
  gap: 6px;
  padding: 6px;
  border-radius: 999px;
  background: rgba(255, 255, 255, 0.75);
  border: 1px solid rgba(28, 27, 24, 0.1);
  backdrop-filter: blur(8px);
  z-index: 2;
}

.lang-button {
  border: none;
  background: transparent;
  color: var(--muted);
  padding: 6px 14px;
  border-radius: 999px;
  font-weight: 600;
  font-size: 0.85rem;
  cursor: pointer;
  transition: background 0.2s ease, color 0.2s ease, box-shadow 0.2s ease;
}

.lang-button:hover {
  color: var(--ink);
}

.lang-button.is-active {
  background: #fff;
  color: var(--ink);
  box-shadow: 0 6px 16px rgba(28, 27, 24, 0.12);
}

.logo-block {
  display: flex;
  align-items: center;
  justify-content: center;
  padding: 24px;
  background: var(--card);
  border-radius: 22px;
  border: 1px solid rgba(28, 27, 24, 0.08);
  position: relative;
  z-index: 1;
}

.logo-block img {
  max-width: 100%;
  height: auto;
  max-height: 240px;
  object-fit: contain;
}

.copy {
  display: flex;
  flex-direction: column;
  gap: 18px;
  position: relative;
  z-index: 1;
}

.tag {
  text-transform: uppercase;
  letter-spacing: 0.18em;
  font-size: 0.72rem;
  color: var(--muted);
}

h1 {
  font-family: "Fraunces", "Times New Roman", serif;
  font-size: clamp(2.4rem, 4vw, 4rem);
  line-height: 1.05;
}

.lead {
  font-size: 1.05rem;
  color: var(--muted);
  line-height: 1.6;
}

.cta-row {
  display: flex;
  flex-wrap: wrap;
  gap: 12px;
}

.chip {
  background: var(--chip);
  border: 1px solid rgba(234, 139, 42, 0.3);
  color: var(--ink);
  padding: 10px 16px;
  border-radius: 999px;
  font-weight: 600;
  font-size: 0.9rem;
}

.highlights {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(220px, 1fr));
  gap: 20px;
}

.card {
  background: rgba(255, 255, 255, 0.85);
  padding: 22px 24px;
  border-radius: 20px;
  border: 1px solid rgba(28, 27, 24, 0.08);
  box-shadow: 0 12px 30px rgba(28, 27, 24, 0.08);
}

.card h2 {
  font-family: "Fraunces", "Times New Roman", serif;
  font-size: 1.2rem;
  margin-bottom: 10px;
}

.card p {
  color: var(--muted);
  line-height: 1.55;
  font-size: 0.95rem;
}

.footer {
  display: flex;
  flex-wrap: wrap;
  gap: 10px;
  justify-content: center;
  color: var(--muted);
  font-size: 0.9rem;
}

.footer .dot {
  color: var(--accent);
}

html[dir="rtl"] .copy {
  text-align: right;
}

html[dir="rtl"] .logo-block {
  order: 2;
}

html[dir="rtl"] .copy {
  order: 1;
}

html[dir="rtl"] .lang-switch {
  left: 24px;
  right: auto;
}

@media (max-width: 900px) {
  .hero {
    grid-template-columns: 1fr;
    padding: 28px;
  }

  .logo-block img {
    max-height: 200px;
  }
}

@media (max-width: 600px) {
  body {
    padding: 28px 18px 44px;
  }

  .hero {
    padding: 24px;
  }

  .tag {
    letter-spacing: 0.12em;
  }

  .chip {
    width: 100%;
    justify-content: center;
  }

  .lang-switch {
    top: 16px;
    right: 16px;
  }

  html[dir="rtl"] .lang-switch {
    left: 16px;
    right: auto;
  }
}
