/* Restaurant Nani - Country Selector (restaurant-nani.com) - rekonstruiert */
:root {
  --bg-black: #0a0a0a;
  --bg-darker: #060606;
  --accent-copper: #c9773f;
  --accent-copper-light: #e0925c;
  --accent-blue: #6b8fb8;
  --text-white: #ffffff;
  --text-light: #e0e0e0;
  --text-muted: #a0a0a0;
  --text-faint: #888888;
  --serif: Georgia, 'Times New Roman', serif;
  --script: 'Brush Script MT', cursive;
}

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

body {
  background-color: var(--bg-black);
  background-image: linear-gradient(rgba(6,6,6,0.88), rgba(6,6,6,0.94)), url('images/hero-bg.webp');
  background-size: cover;
  background-position: center;
  background-attachment: fixed;
  color: var(--text-white);
  font-family: var(--serif);
  min-height: 100vh;
  display: flex;
  align-items: center;
  justify-content: center;
  padding: 24px;
  line-height: 1.6;
}

a { text-decoration: none; }

.wrap { text-align: center; max-width: 760px; width: 100%; }

.main-logo {
  display: block;
  margin: 0 auto 20px;
}

.script-title {
  font-family: var(--script);
  font-size: 2.6em;
  color: var(--accent-copper-light);
  font-style: italic;
  letter-spacing: 1px;
  margin-bottom: 56px;
}

.countries {
  display: flex;
  justify-content: center;
  gap: 32px;
  flex-wrap: wrap;
}

.country-card {
  background: rgba(255,255,255,0.03);
  border: 1px solid rgba(255,255,255,0.1);
  border-radius: 10px;
  padding: 38px 48px;
  color: var(--text-white);
  transition: all 0.3s ease;
  min-width: 220px;
  flex: 1 1 220px;
  max-width: 260px;
}

.country-card:hover {
  border-color: var(--accent-copper-light);
  background: rgba(201,119,63,0.08);
  transform: translateY(-4px);
}

.flag { font-size: 2.6em; margin-bottom: 14px; display: block; }

.country-name {
  font-size: 1.2em;
  letter-spacing: 2px;
  text-transform: uppercase;
  margin-bottom: 6px;
  color: var(--text-white);
  white-space: nowrap;
}

.country-name.long-name {
  font-size: 0.85em;
  letter-spacing: 1px;
}

.country-sub { font-size: 0.88em; color: var(--text-faint); }

footer {
  margin-top: 64px;
  color: var(--text-faint);
  font-size: 0.85em;
  display: flex;
  justify-content: center;
  align-items: center;
  gap: 18px;
  flex-wrap: wrap;
}

footer .footer-credit { opacity: 0.6; }
footer .footer-credit a { color: var(--text-faint); text-decoration: underline; text-decoration-color: rgba(255,255,255,0.15); }
footer .footer-credit a:hover { color: var(--accent-copper-light); opacity: 1; }

@media (max-width: 600px) {
  .countries { flex-direction: column; align-items: center; }
  .script-title { font-size: 2em; }
  .country-card { max-width: 320px; width: 100%; }
}
