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

.social-icons {
  display: flex;
  gap: 18px;
  justify-content: center;
  align-items: center;
  margin-top: -20px; /* pulls closer to logo nicely */
}

.insta::before {
  content: "";
  display: block;
  width: 18px;
  height: 18px;
  opacity: 0.7;
  transition: opacity 0.2s ease, transform 0.2s ease;
  background: url('/insta_light.png') no-repeat center / contain;
}

[data-theme="dark"] .insta::before {
  background: url('/insta_dark.png') no-repeat center / contain;
}

.email::before {
  content: "";
  display: block;
  width: 18px;
  height: 18px;
  opacity: 0.7;
  transition: opacity 0.2s ease, transform 0.2s ease;
  background: url('/phone_light.png') no-repeat center / contain;
}

[data-theme="dark"] .email::before {
  background: url('/phone_dark.png') no-repeat center / contain;
}

.tiktok::before {
  content: "";
  display: block;
  width: 18px;
  height: 18px;
  opacity: 0.7;
  transition: opacity 0.2s ease, transform 0.2s ease;
  background: url('/tiktok_light.png') no-repeat center / contain;
}

[data-theme="dark"] .tiktok::before {
  background: url('/tiktok_dark.png') no-repeat center / contain;
}

.social-icons a:hover {
  opacity: 1;
  transform: translateY(-1px);
}

.logo::before {
  content: "";
  display: block;
  width: 100%;
  aspect-ratio: 3 / 1; /* adjust to your logo */

  background: url('/amani_logo_2.png') no-repeat center / contain;
}

[data-theme="dark"] .logo::before {
  background: url('/amani_logo_dark_2.png') no-repeat center / contain;
}

:root {
  --bg: #f3e4cd;
  --text-primary: #2f2a26;
  --text-secondary: #6b625b;
  --accent: #d8cfc3;
}

[data-theme="dark"] {
  --bg: #6b3328;
  --text-primary: #f5f5f5;
  --text-secondary: #b8b8b8;
  --accent: #2a2a2a;
}

body {
  position: relative;
  min-height: 100vh;
  background-color: var(--bg); /* 👈 change this */
  font-family: 'Inter', sans-serif;
  color: var(--text-primary);
  display: flex;
  align-items: center;
  justify-content: center;
  padding: 24px;
}

.container {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 40px;
  max-width: 520px;
  width: 100%;
  text-align: center;
  animation: fadeIn 1.2s ease;
}

.logo {
  width: clamp(200px, 50vw, 600px);
  height: auto;
}

.content {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 18px;
}

.eyebrow {
  font-size: 11px;
  letter-spacing: 3px;
  text-transform: uppercase;
  color: var(--text-secondary);
}

.divider {
  width: 40px;
  height: 1px;
  background: var(--text-secondary);
  opacity: 0.3;
}

h1 {
  font-family: 'Playfair Display', serif;
  font-size: clamp(20px, 3vw, 26px);
  font-weight: 400;
  line-height: 1.5;
  max-width: 420px;
}

.story {
  max-width: 520px;
  display: flex;
  flex-direction: column;
  gap: 14px;
  margin-top: 10px;
}

.story p {
  font-size: 13px;
  line-height: 1.7;
  color: var(--text-secondary);
}

.story .emphasis {
  font-family: 'Playfair Display', serif;
  font-size: 15px;
  color: var(--text-primary);
}

.story {
  text-align: justify;
}

#theme-toggle {
  position: absolute;
  top: 20px;
  right: 20px;
  background: transparent;
  border: none;
  font-size: 14px;
  cursor: pointer;
  color: var(--text-secondary);
}

@keyframes fadeIn {
  from {
    opacity: 0;
    transform: translateY(8px);
  }
  to {
    opacity: 1;
    transform: translateY(0);
  }
}

@media (max-width: 480px) {
  .container {
    gap: 28px;
  }
}
