/* Global layout */
*,
*::before,
*::after {
  box-sizing: border-box;
}

body {
  margin: 0;
  font-family: system-ui, -apple-system, BlinkMacSystemFont, "Segoe UI",
    sans-serif;
  background: radial-gradient(circle at top center, #323232 0, #050608 60%, #010101 100%);
  color: #f5f1e6;
  min-height: 100vh;
}

.page {
  min-height: 100vh;
  display: flex;
  flex-direction: column;
  align-items: center;
}

/* Hero section */
.hero {
  margin-top: 0px;
  margin-bottom: 0px;
  padding: 10px 6px -10px; /* ↓ THIS is the important fix */
  width: 100%;
  max-width: 960px;
  text-align: center;
}

.logo {
  max-width: 100%;
  height: auto;
  display: block;
  margin: 0 auto 10px;
}

.tagline {  
  margin: 0 auto 18px;
  max-width: 600px;
  font-size: 1.1rem;
  color: #d7d2c3;
}

.cta-row {
  display: flex;
  flex-wrap: wrap;
  gap: 16px;
  justify-content: center;
}

/* Buttons */
.btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  padding: 12px 28px;
  border-radius: 999px;
  border: 1px solid transparent;
  text-decoration: none;
  font-weight: 600;
  letter-spacing: 0.03em;
  font-size: 0.95rem;
  cursor: pointer;
  transition: transform 0.15s ease, box-shadow 0.15s ease, background 0.15s ease,
    border-color 0.15s ease, color 0.15s ease;
}

.btn.primary {
  background: linear-gradient(135deg, #f2c148, #c49124);
  color: #1b1308;
  box-shadow: 0 10px 30px rgba(0, 0, 0, 0.6);
}

.btn.primary:hover {
  transform: translateY(-2px);
  box-shadow: 0 14px 40px rgba(0, 0, 0, 0.8);
}

.btn.secondary {
  background: transparent;
  border-color: #f2c148;
  color: #f2c148;
}

.btn.secondary:hover {
  background: rgba(242, 193, 72, 0.1);
  transform: translateY(-1px);
}

/* Follow section */
.follow {
  width: 100%;
  max-width: 960px;
  padding: 24px 16px 48px;
  text-align: center;
}

.follow h2 {
  margin: 0 0 8px;
  font-size: 1.4rem;
}

.follow-text {
  margin: 0 0 24px;
  color: #c4c4c4;
}

.social-row {
  display: flex;
  gap: 12px;
  justify-content: center;
}

.social-link {
  width: 48px;
  height: 48px;
  display: flex;
  justify-content: center;
  align-items: center;
  background: rgba(255, 255, 255, 0.05);
  border-radius: 8px;
}

.social-icon {
  width: 28px;       /* uniform size */
  height: 28px;
  object-fit: contain;
  display: block;
}

.social-link:hover {
  background: rgba(242, 193, 72, 0.08);
  border-color: #f2c148;
  transform: translateY(-1px);
}

/* Footer */
.footer {
  margin-top: auto;
  width: 100%;
  padding: 16px;
  text-align: center;
  font-size: 0.8rem;
  color: #a0a0a0;
  border-top: 1px solid #191919;
}

.lang-switch {
  margin-top: 20px;
  display: inline-flex;
  background: rgba(255, 255, 255, 0.08);
  border-radius: 20px;
  padding: 4px;
  gap: 4px;
}

.lang-switch button {
  background: transparent;
  border: none;
  padding: 6px 16px;
  color: #fff;
  font-size: 14px;
  border-radius: 14px;
  cursor: pointer;
  transition: background 0.25s, color 0.25s;
}

/* THIS is the missing golden highlight */
.lang-switch button.active {
  background: linear-gradient(180deg, #f1c66e, #d9a431);
  color: #000;
  font-weight: 600;
  box-shadow: 0 3px 8px rgba(0,0,0,0.35);
}

.share-btn {
  margin-top: 20px;
  margin-bottom: 156x; 
  display: inline-flex;
  align-items: center;
  gap: 8px;

  background: linear-gradient(180deg, #f1c66e, #d9a431);
  border: none;
  padding: 10px 22px;
  border-radius: 22px;

  font-size: 14px;
  font-weight: 600;
  color: #000;
  cursor: pointer;

  box-shadow: 0 3px 8px rgba(0, 0, 0, 0.35);
  transition: transform 0.25s, box-shadow 0.25s;
}

.share-btn:hover {
  transform: translateY(-2px);
  box-shadow: 0 6px 12px rgba(0, 0, 0, 0.4);
}

.share-btn svg path {
  stroke: #000; /* good contrast on gold background */
}


.lang-grid {
  margin-top: 20px;
  display: flex;
  flex-wrap: wrap;              /* 🔥 allow wrapping to new lines */
  justify-content: center;
  gap: 6px;
  padding: 6px 10px;
  background: #111;
  border-radius: 999px;
  max-width: 90vw;              /* fit inside viewport */
  margin-left: auto;
  margin-right: auto;
}


.lang-grid button {
  background: transparent;
  border: none;
  padding: 6px 12px;            /* a bit more horizontal padding */
  border-radius: 999px;
  color: #fff;
  font-size: 12px;
  cursor: pointer;
  transition: background 0.2s, color 0.2s;
}

/* active language */
.lang-grid button.active {
  background: linear-gradient(180deg, #f1c66e, #d9a431);
  color: #000;
  font-weight: 600;
}
body {
  overflow-x: hidden;
}
