@import url('https://fonts.googleapis.com/css2?family=Cairo:wght@400;600;700;800&family=Reem+Kufi:wght@500;600;700&display=swap');

* { box-sizing: border-box; }

body {
  margin: 0;
  min-height: 100vh;
  background: #202020;
  font-family: 'Cairo', Arial, sans-serif;
  color: #153f3b;
}

.page {
  min-height: 100vh;
  padding: 28px 14px;
  background:
    repeating-linear-gradient(
      to bottom,
      #f8f5eb 0px,
      #f8f5eb 88px,
      #e7e2d5 89px,
      #f8f5eb 91px
    );
}

.profile {
  width: min(100%, 760px);
  margin: 0 auto;
  padding: 45px 5.5% 55px;
  background: rgba(250, 248, 239, 0.97);
  border-radius: 42px;
  box-shadow: 0 10px 35px rgba(0,0,0,.15);
}

.logo-wrap {
  width: min(310px, 70vw);
  aspect-ratio: 1;
  margin: 0 auto 20px;
  border-radius: 50%;
  border: 8px solid #c9973d;
  overflow: hidden;
  background: #315853;
}

.logo-wrap img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

h1 {
  text-align: center;
  margin: 10px 0 24px;
  font-family: 'Reem Kufi', 'Cairo', sans-serif;
  font-size: clamp(32px, 7vw, 62px);
  font-weight: 700;
  color: #174a44;
}

.slogan {
  max-width: 650px;
  margin: 0 auto 38px;
  padding: 24px 20px;
  text-align: center;
  font-size: clamp(20px, 4vw, 32px);
  line-height: 1.8;
  font-weight: 700;
  background: #fff;
  border: 3px dashed #c9973d;
  border-radius: 28px;
}

.links {
  display: grid;
  gap: 20px;
}

.link-card {
  min-height: 120px;
  display: flex;
  align-items: center;
  gap: 20px;
  padding: 20px 26px;
  text-decoration: none;
  color: #153f3b;
  background: #fff;
  border: 3px solid #ddd7c8;
  border-radius: 30px;
  transition: transform .2s ease, box-shadow .2s ease;
}

.link-card:hover {
  transform: translateY(-3px);
  box-shadow: 0 8px 20px rgba(0,0,0,.12);
}

.icon {
  flex: 0 0 72px;
  width: 72px;
  height: 72px;
  display: grid;
  place-items: center;
  border-radius: 22px;
  color: white;
  font-size: 40px;
  font-weight: 700;
}

.text {
  display: flex;
  flex-direction: column;
  gap: 4px;
}

.text strong {
  font-size: clamp(22px, 4vw, 32px);
}

.text small {
  color: #777;
  font-size: clamp(14px, 2.5vw, 20px);
  direction: ltr;
  text-align: right;
}

.facebook .icon { background: #1877f2; }
.instagram .icon { background: linear-gradient(135deg, #f58529, #dd2a7b, #8134af); }
.tiktok .icon { background: #111; }
.youtube .icon { background: #ff0000; }
.whatsapp .icon { background: #25d366; }

@media (max-width: 520px) {
  .profile { padding: 32px 18px 40px; border-radius: 30px; }
  .link-card { min-height: 95px; padding: 14px 16px; gap: 14px; border-radius: 24px; }
  .icon { flex-basis: 58px; width: 58px; height: 58px; font-size: 30px; border-radius: 17px; }
}
