:root {
  --bg: #000;
  --text: #ccd1bc;
  --accent: #89a37b;
}

* {
  box-sizing: border-box;
}

body {
  margin: 0;
  font-family: 'El Messiri', sans-serif;
  background: var(--bg);
  color: var(--text);
  min-height: 100vh;
}

.page {
  min-height: 100vh;
  display: flex;
  flex-direction: column;
  padding: 32px 24px 20px;
}

/* HEADER */

.site-header {
  display: flex;
  justify-content: center;
  align-items: center;
}

/* Logo + brand name */
.brand {
  display: inline-flex;
  align-items: center;
  gap: 12px;                       /* more space between logo and text */
  font-size: clamp(28px, 7vw, 42px); /* scales on small & large screens */
  letter-spacing: 0.12em;
  font-weight: 800;
  text-transform: uppercase;
  color: var(--text);
  min-height: 26vh;                /* slightly smaller than 40vh */
}

/* Text span “LOCALITES” */
.brand-name {
  display: inline-flex;
  align-items: center;
}

/* Logo image – keep aspect ratio, scale nicely */
.logo {
  height: clamp(120px, 50vw, 260px); /* responsive height */
  width: auto;
}

/* MAIN CONTENT */

.content {
  flex: 1;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  gap: 24px;
  text-align: center;
  padding: 48px 0;
  max-width: 960px;
  margin: 0 auto;
  color: var(--text);
}

.hero {
  display: grid;
  gap: 12px;
}

.content h1 {
  margin: 0;
  font-size: clamp(28px, 4vw, 42px);
  font-weight: 600;
  color: var(--text);
}

.subtitle {
  margin: 0;
  max-width: 720px;
  font-size: clamp(16px, 2vw, 20px);
  color: var(--text);
  line-height: 1.6;
}

/* SOCIAL ICONS */

.social-links {
  display: flex;
  gap: 18px;
  margin-top: 10px;
}

.icon-link {
  width: 52px;
  height: 52px;
  display: grid;
  place-items: center;
  border-radius: 50%;
  background: rgba(137, 163, 123, 0.1);
  border: 1px solid rgba(204, 209, 188, 0.3);
  transition: transform 0.2s ease, border-color 0.2s ease, box-shadow 0.2s ease;
}

.icon-link img {
  width: 26px;
  height: 26px;
}

.icon-link:focus-visible {
  outline: 2px solid var(--accent);
  outline-offset: 4px;
}

.icon-link:hover,
.icon-link:focus-visible {
  transform: translateY(-3px);
  border-color: var(--accent);
  box-shadow: 0 0 12px rgba(137, 163, 123, 0.25);
  outline: none;
}

/* FOOTER */

.footer {
  text-align: center;
  font-size: 14px;
  color: var(--text);
  padding-top: 12px;
  letter-spacing: 0.04em;
}

