@import url('https://fonts.googleapis.com/css2?family=Cinzel:wght@600&family=Tajawal:wght@400;500&display=swap');

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

html, body {
  width: 100%;
  height: 100%;
  background: #070707;
  color: #fff;
  font-family: 'Tajawal', sans-serif;
}

main.center {
  width: 100%;
  height: 100%;
  display: flex;
  align-items: center;
  justify-content: center;
}

.buttons-row {
  display: flex;
  gap: 24px;
}

/* Base Button */
.btn {
  position: relative;
  width: 180px;
  height: 70px;
  border-radius: 14px;
  background: #111;
  border: 1px solid rgba(255,255,255,0.06);
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  text-decoration: none;
  color: #fff;
  transition: 
    transform 0.35s ease,
    border-color 0.35s ease,
    background 0.35s ease,
    box-shadow 0.35s ease;
}

/* Hover Effect — احترافي وهادئ */
.btn:hover {
  transform: translateY(-6px);
  border-color: rgba(255,255,255,0.15);
  background: #151515;
  box-shadow: 0 12px 30px rgba(0,0,0,0.6);
}

/* Arabic */
.btn .ar {
  font-size: 1rem;
  font-weight: 500;
  margin-bottom: 4px;
}

/* English */
.btn .en {
  font-family: 'Cinzel', serif;
  font-size: 0.7rem;
  letter-spacing: 0.18em;
  opacity: 0.5;
}

/* Accent Borders (خط سفلي بسيط بدل التوهج) */
.btn::after {
  content: "";
  position: absolute;
  bottom: 0;
  left: 50%;
  transform: translateX(-50%);
  width: 40%;
  height: 2px;
  border-radius: 2px;
  transition: width 0.3s ease;
}

.btn:hover::after {
  width: 70%;
}

/* I AM */
.btn-iam::after {
  background: #8b0000;
}

/* DOKNOM */
.btn-doknom::after {
  background: #4b3cff;
}

/* Services */
.btn-service::after {
  background: #d4af37;
}

@media (max-width: 500px) {
  .buttons-row {
    flex-direction: column;
    gap: 16px;
  }
}